diff --git a/java/kafka-avro/README.md b/java/kafka-avro/README.md new file mode 100644 index 0000000..8aeb72a --- /dev/null +++ b/java/kafka-avro/README.md @@ -0,0 +1,69 @@ + +## Environment Setup + +Clone the whylogs-examples repo from GitHub and work in the java/kafka-avro/ subdirectory + +Use docker-compose to bring up a basic Kafka cluster and control dashboard. +``` +% docker-compose up -d +Creating network "kafka-avro_default" with the default driver +Creating zookeeper ... done +Creating kafka-tools ... done +Creating broker ... done +Creating schema-registry ... done +Creating control-center ... done +``` + +Visit http://127.0.0.1:9021 to see the kafka health dashboard. From the dashboard you can see assess the health f the kefka cluster and see any active topics. + +## Schema Definition + +These java examples are built using `gradle`. +If you already have your Java environment set up, you should not need to install anything more to build these examples. + +``` +./gradlew build +``` + +## If you get an error... + +`Could not initialize class org.codehaus.groovy.reflection.ReflectionCache` + +Try upgrading your gradle installation. +``` +gradle wrapper --gradle-version 6.3 +``` +I upgraded from 6.1 to 6.3. IntelliJ warns me that Gradle 6.3 is incompatible with +amazon-corretto-15.jdk but I have not seen ill-effects yet. + +## Run the demos + +There are two separate demos that carry out the duties of a Kafka Producer and Consumer. +The Producer and Consumer demos can be run sequentially in the same window as the events written are persistent in Kafka. + +``` +% gradle producer + +> Task :producer +opening lending_club_1000.csv +Sent event... +Sent event... +Sent event... +Sent event... +``` + +``` +% gradle consumer + +> Task :consumer +Read 500 records +Read 444 records +Read 56 records +Read 0 records +Received 1000 events +Writing profile to profile_2021.bin +``` + + + + diff --git a/java/kafka-avro/build.gradle.kts b/java/kafka-avro/build.gradle.kts new file mode 100644 index 0000000..c5b4c4d --- /dev/null +++ b/java/kafka-avro/build.gradle.kts @@ -0,0 +1,60 @@ +plugins { + java + application + id("com.github.davidmc24.gradle.plugin.avro") version "1.0.0" +} + +application { + mainClassName = "com.whylogs.examples.ConsumerDemo" +} + +group = "com.whylogs.example" +version = "1.0-SNAPSHOT" + +repositories { + mavenCentral() + maven(url = "https://packages.confluent.io/maven/") +} + +dependencies { + implementation("ai.whylabs:whylogs-core:0.0.2b3") + implementation("org.apache.commons:commons-csv:1.8") + implementation("org.apache.avro:avro:1.8.2") + implementation("org.apache.kafka:kafka-clients:2.7.0") + implementation("io.confluent:kafka-avro-serializer:6.1.0") + implementation("joda-time:joda-time:2.10.10") +} + +// configuration of avro class generation plugin +avro { + isCreateSetters.set(false) + isCreateOptionalGetters.set(false) + isGettersReturnOptional.set(false) + isOptionalGettersForNullableFieldsOnly.set(false) + fieldVisibility.set("PUBLIC_DEPRECATED") + outputCharacterEncoding.set("UTF-8") + stringType.set("String") + templateDirectory.set(null as String?) + isEnableDecimalLogicalType.set(true) +} + +task("consumer") { + dependsOn("build") + // description("Run the whylogs consumer class with ExecTask") + commandLine( "java", "-classpath", sourceSets["main"].runtimeClasspath.getAsPath(), "com.whylogs.examples.ConsumerDemo") +} + + +tasks.withType().configureEach { + // warn about deprecated code. + options.setDeprecation(true) + // Sets any additional arguments to be passed to the compiler. + options.setCompilerArgs(listOf("-Xlint:unchecked")) +} + +task("producer") { + dependsOn("build") + // description("Run the whylogs producer class with ExecTask") + commandLine( "java", "-classpath", sourceSets["main"].runtimeClasspath.getAsPath(), "com.whylogs.examples.ProducerDemo") +} + diff --git a/java/kafka-avro/docker-compose.yml b/java/kafka-avro/docker-compose.yml new file mode 100644 index 0000000..069fb18 --- /dev/null +++ b/java/kafka-avro/docker-compose.yml @@ -0,0 +1,76 @@ + +version: "3" + +services: + zookeeper: + image: confluentinc/cp-zookeeper:5.4.0 + hostname: zookeeper + container_name: zookeeper + ports: + - "2181:2181" + environment: + ZOOKEEPER_CLIENT_PORT: 2181 + ZOOKEEPER_TICK_TIME: 2000 + + broker: + image: confluentinc/cp-server:5.4.0 + hostname: broker + container_name: broker + depends_on: + - zookeeper + ports: + - "9092:9092" + environment: + KAFKA_BROKER_ID: 1 + KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181" + KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT + KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092 + KAFKA_METRIC_REPORTERS: io.confluent.metrics.reporter.ConfluentMetricsReporter + KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 + KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0 + KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1 + CONFLUENT_METRICS_REPORTER_BOOTSTRAP_SERVERS: broker:29092 + CONFLUENT_METRICS_REPORTER_ZOOKEEPER_CONNECT: zookeeper:2181 + CONFLUENT_METRICS_REPORTER_TOPIC_REPLICAS: 1 + CONFLUENT_METRICS_ENABLE: "true" + CONFLUENT_SUPPORT_CUSTOMER_ID: "anonymous" + + kafka-tools: + image: confluentinc/cp-kafka:5.4.0 + hostname: kafka-tools + container_name: kafka-tools + command: ["tail", "-f", "/dev/null"] + network_mode: "host" + + schema-registry: + image: confluentinc/cp-schema-registry:5.4.0 + hostname: schema-registry + container_name: schema-registry + depends_on: + - zookeeper + - broker + ports: + - "8081:8081" + environment: + SCHEMA_REGISTRY_HOST_NAME: schema-registry + SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: "zookeeper:2181" + + control-center: + image: confluentinc/cp-enterprise-control-center:5.4.0 + hostname: control-center + container_name: control-center + depends_on: + - zookeeper + - broker + - schema-registry + ports: + - "9021:9021" + environment: + CONTROL_CENTER_BOOTSTRAP_SERVERS: 'broker:29092' + CONTROL_CENTER_ZOOKEEPER_CONNECT: 'zookeeper:2181' + CONTROL_CENTER_SCHEMA_REGISTRY_URL: "http://schema-registry:8081" + CONTROL_CENTER_REPLICATION_FACTOR: 1 + CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS: 1 + CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS: 1 + CONFLUENT_METRICS_TOPIC_REPLICATION: 1 + PORT: 9021 diff --git a/java/kafka-avro/gradlew.bat b/java/kafka-avro/gradlew.bat new file mode 100644 index 0000000..ac1b06f --- /dev/null +++ b/java/kafka-avro/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/java/kafka-avro/settings.gradle b/java/kafka-avro/settings.gradle new file mode 100644 index 0000000..f70c19a --- /dev/null +++ b/java/kafka-avro/settings.gradle @@ -0,0 +1,9 @@ +pluginManagement { + repositories { + gradlePluginPortal() + mavenCentral() + } +} + +rootProject.name = 'kafka-avro' + diff --git a/java/kafka-avro/src/main/avro/LendingClubRow.avsc b/java/kafka-avro/src/main/avro/LendingClubRow.avsc new file mode 100644 index 0000000..0c00107 --- /dev/null +++ b/java/kafka-avro/src/main/avro/LendingClubRow.avsc @@ -0,0 +1,1065 @@ +{ + "type": "record", + "namespace": "com.whylogs", + "name": "LendingClubRow", + "doc": "", + "fields": [ + { + "name": "id", + "type": [ + "null", + "string" + ] + }, + { + "name": "member_id", + "type": [ + "null", + "double" + ] + }, + { + "name": "loan_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "funded_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "funded_amnt_inv", + "type": [ + "null", + "double" + ] + }, + { + "name": "term", + "type": [ + "null", + "string" + ] + }, + { + "name": "int_rate", + "type": [ + "null", + "double" + ] + }, + { + "name": "installment", + "type": [ + "null", + "double" + ] + }, + { + "name": "grade", + "type": [ + "null", + "string" + ] + }, + { + "name": "sub_grade", + "type": [ + "null", + "string" + ] + }, + { + "name": "emp_title", + "type": [ + "null", + "string" + ] + }, + { + "name": "emp_length", + "type": [ + "null", + "string" + ] + }, + { + "name": "home_ownership", + "type": [ + "null", + "string" + ] + }, + { + "name": "annual_inc", + "type": [ + "null", + "double" + ] + }, + { + "name": "verification_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "issue_d", + "type": [ + "null", + "string" + ] + }, + { + "name": "loan_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "pymnt_plan", + "type": [ + "null", + "string" + ] + }, + { + "name": "url", + "type": [ + "null", + "string" + ] + }, + { + "name": "desc", + "type": [ + "null", + "double" + ] + }, + { + "name": "purpose", + "type": [ + "null", + "string" + ] + }, + { + "name": "title", + "type": [ + "null", + "string" + ] + }, + { + "name": "zip_code", + "type": [ + "null", + "string" + ] + }, + { + "name": "addr_state", + "type": [ + "null", + "string" + ] + }, + { + "name": "dti", + "type": [ + "null", + "double" + ] + }, + { + "name": "delinq_2yrs", + "type": [ + "null", + "double" + ] + }, + { + "name": "earliest_cr_line", + "type": [ + "null", + "string" + ] + }, + { + "name": "fico_range_low", + "type": [ + "null", + "double" + ] + }, + { + "name": "fico_range_high", + "type": [ + "null", + "double" + ] + }, + { + "name": "inq_last_6mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_last_delinq", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_last_record", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "pub_rec", + "type": [ + "null", + "double" + ] + }, + { + "name": "revol_bal", + "type": [ + "null", + "double" + ] + }, + { + "name": "revol_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "initial_list_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "out_prncp", + "type": [ + "null", + "double" + ] + }, + { + "name": "out_prncp_inv", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_pymnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_pymnt_inv", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rec_prncp", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rec_int", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rec_late_fee", + "type": [ + "null", + "double" + ] + }, + { + "name": "recoveries", + "type": [ + "null", + "double" + ] + }, + { + "name": "collection_recovery_fee", + "type": [ + "null", + "double" + ] + }, + { + "name": "last_pymnt_d", + "type": [ + "null", + "string" + ] + }, + { + "name": "last_pymnt_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "next_pymnt_d", + "type": [ + "null", + "string" + ] + }, + { + "name": "last_credit_pull_d", + "type": [ + "null", + "string" + ] + }, + { + "name": "last_fico_range_high", + "type": [ + "null", + "double" + ] + }, + { + "name": "last_fico_range_low", + "type": [ + "null", + "double" + ] + }, + { + "name": "collections_12_mths_ex_med", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_last_major_derog", + "type": [ + "null", + "double" + ] + }, + { + "name": "policy_code", + "type": [ + "null", + "double" + ] + }, + { + "name": "application_type", + "type": [ + "null", + "string" + ] + }, + { + "name": "annual_inc_joint", + "type": [ + "null", + "double" + ] + }, + { + "name": "dti_joint", + "type": [ + "null", + "double" + ] + }, + { + "name": "verification_status_joint", + "type": [ + "null", + "string" + ] + }, + { + "name": "acc_now_delinq", + "type": [ + "null", + "double" + ] + }, + { + "name": "tot_coll_amt", + "type": [ + "null", + "double" + ] + }, + { + "name": "tot_cur_bal", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_acc_6m", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_act_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_il_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_il_24m", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_rcnt_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_bal_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "il_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_rv_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_rv_24m", + "type": [ + "null", + "double" + ] + }, + { + "name": "max_bal_bc", + "type": [ + "null", + "double" + ] + }, + { + "name": "all_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rev_hi_lim", + "type": [ + "null", + "double" + ] + }, + { + "name": "inq_fi", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_cu_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "inq_last_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "acc_open_past_24mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "avg_cur_bal", + "type": [ + "null", + "double" + ] + }, + { + "name": "bc_open_to_buy", + "type": [ + "null", + "double" + ] + }, + { + "name": "bc_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "chargeoff_within_12_mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "delinq_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_old_il_acct", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_old_rev_tl_op", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_rcnt_rev_tl_op", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_rcnt_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "mort_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_bc", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_bc_dlq", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_inq", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_revol_delinq", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_accts_ever_120_pd", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_actv_bc_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_actv_rev_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_bc_sats", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_bc_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_il_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_op_rev_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_rev_accts", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_rev_tl_bal_gt_0", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_sats", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_120dpd_2m", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_30dpd", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_90g_dpd_24m", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_op_past_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "pct_tl_nvr_dlq", + "type": [ + "null", + "double" + ] + }, + { + "name": "percent_bc_gt_75", + "type": [ + "null", + "double" + ] + }, + { + "name": "pub_rec_bankruptcies", + "type": [ + "null", + "double" + ] + }, + { + "name": "tax_liens", + "type": [ + "null", + "double" + ] + }, + { + "name": "tot_hi_cred_lim", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_bal_ex_mort", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_bc_limit", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_il_high_credit_limit", + "type": [ + "null", + "double" + ] + }, + { + "name": "revol_bal_joint", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_fico_range_low", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_fico_range_high", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_earliest_cr_line", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_inq_last_6mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_mort_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_open_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_revol_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_open_act_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_num_rev_accts", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_chargeoff_within_12_mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_collections_12_mths_ex_med", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_mths_since_last_major_derog", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_flag", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_type", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_reason", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "deferral_term", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_start_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_end_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "payment_plan_start_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_length", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_dpd", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_loan_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "orig_projected_additional_accrued_interest", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_payoff_balance_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_last_payment_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "disbursement_method", + "type": [ + "null", + "string" + ] + }, + { + "name": "debt_settlement_flag", + "type": [ + "null", + "string" + ] + }, + { + "name": "debt_settlement_flag_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "settlement_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "settlement_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "settlement_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "settlement_percentage", + "type": [ + "null", + "double" + ] + }, + { + "name": "settlement_term", + "type": [ + "null", + "double" + ] + } + ] +} \ No newline at end of file diff --git a/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java new file mode 100644 index 0000000..ad5886d --- /dev/null +++ b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java @@ -0,0 +1,480 @@ +package com.datamelt.csv.avro; + +import org.apache.avro.LogicalType; +import org.apache.avro.LogicalTypes; +import org.apache.avro.Schema; +import org.apache.avro.file.CodecFactory; +import org.apache.avro.file.DataFileWriter; +import org.apache.avro.generic.GenericData; +import org.apache.avro.generic.GenericDatumWriter; +import org.apache.avro.generic.GenericRecord; +import org.apache.avro.io.DatumWriter; + +import java.io.File; +import java.text.SimpleDateFormat; +import java.util.*; + +import org.joda.time.DateTime; + +public class CsvToAvroGenericWriter { + // constants which define the type of separator used in the csv file + // to separate the individual columns + public static final String SEPARATOR_TAB = "\t"; + public static final String SEPARATOR_SEMICOLON = ";"; + public static final String SEPARATOR_COMMA = ","; + public static final String SEPARATOR_AT = "@"; + public static final String SEPARATOR_AT_AT = "@@"; + public static final String SEPARATOR_PIPE = "|"; + + // we can write to a new file respectively overwrite an existing one + // or append to an existing one + public static final int MODE_WRITE = 0; + public static final int MODE_APPEND = 1; + + // the default mode is write + private static int mode = MODE_WRITE; + + // default compression factor + public static final int DEFAULT_COMPRESSION = 6; + private static Schema NULL_SCHEMA = Schema.create(Schema.Type.NULL); + private Schema avroSchema = null; + private String[] csvHeaderFields = null; + private Map fieldMap = null; + private String separator = SEPARATOR_SEMICOLON; + + private String csvDateTimeFormat; + private String csvDateFormat; + + /** + * Constructor to accept the Avro schema file and the output file name + * to write the avro data to. Default compression of 6 will be used. + *

+ * Pass the Avro schema and the path and name of the output file and the + * mode (write or append). + *

+ * An Avro DataFileWriter object will be created for the given output file, + * using the default compression. + * + * @param schema avro schema to use + * @throws Exception + */ + public CsvToAvroGenericWriter(Schema schema) throws Exception { + this.avroSchema = schema; + this.populateFieldMap(); + } + + + /** + * add all fields and their positions from the Avro schema to a map + * for easy retrieval + */ + private void populateFieldMap() { + // populate the map of avro field names and positions + fieldMap = new HashMap(); + List avroFields = avroSchema.getFields(); + for (int i = 0; i < avroFields.size(); i++) { + Schema.Field avroField = avroFields.get(i); + fieldMap.put(avroField.name(), avroField.pos()); + } + } + + + /** + * sets the format of datetime fields as it is used in the CSV file. + *

+ * if the relevant field is defined as "long" with a logical type "timestamp-millis" this + * format will be used to parse the csv value and convert it to milliseconds from the unix epoch + * + * @param format + */ + public void setCsvDateTimeFormat(String format) { + this.csvDateTimeFormat = format; + } + + + public String getCsvDateTimeFormat() { + return csvDateTimeFormat; + } + + /** + * sets the format of date fields as it is used in the CSV file. + *

+ * if the relevant field is defined as "int" with a logical type "date" this + * format will be used to parse the csv value and convert it to days from the unix epoch + * + * @param format + */ + public void setCsvDateFormat(String format) { + this.csvDateFormat = format; + } + + + public String getCsvDateFormat() { + return csvDateFormat; + } + + /** + * sets the header row taken from the csv file.The given + * separatorCharacter is used to divide the header into individual fields. + *

+ * if the header row is defined, the append() method will + * correctly add the correct values from the CSV file to the + * Avro record, even if the CSV files has a different sequence + * of fields. + * + * @param header + * @param separatorCharacter + */ + public void setCsvHeader(String header, String separatorCharacter) { + this.csvHeaderFields = header.split(separatorCharacter); + } + + public void setCsvHeader(String[] fields) { + this.csvHeaderFields = fields; + } + + /** + * sets the header row taken from the csv file. The default + * separator is used to divide the header into individual fields. + *

+ * if the header row is defined, the append() method will + * correctly add the correct values from the CSV file to the + * Avro record, even if the CSV files has a different sequence + * of fields. + * + * @param header + */ + public void setCsvHeader(String header) { + setCsvHeader(header, separator); + } + + + /** + * returns a list of fields that can be null based on + * the Avro schema. + * + * @param record + * @return + */ + private ArrayList getInvalidNullFields(GenericRecord record) { + List avroFields = avroSchema.getFields(); + ArrayList nullFields = new ArrayList(); + for (int i = 0; i < avroFields.size(); i++) { + Schema.Field field = avroFields.get(i); + Object value = record.get(field.pos()); + + if (value == null && !getFieldAllowsNull(field)) { + nullFields.add(field); + } + } + return nullFields; + } + + private String[] getSplitLine(String line, String separatorCharacter) { + return line.split(separatorCharacter); + } + + /** + * populates an Avro Generic record with the values from a row of CSV data. + *

+ * If the header row of the CSV is undefined, then it is assumed that the fields + * in the CSV file are present in the same sequence as they are defined in the + * Avro schema, + *

+ * If the header row is defined, then this method will locate the corresponding Avro + * field with the same name in the schema. In this case the sequence of fields in the + * CSV file is not relevant - the method will update the correct Avro field. + * + * @param fields a line/row of data from a CSV file as an array of Strings + * @return a record with the data of a line from the CSV file + */ + public GenericRecord populate(String[] fields) throws Exception { + return this.populate(Arrays.asList(fields).iterator()); + } + + public GenericRecord populate(Iterator fields) throws Exception { + + GenericRecord record = new GenericData.Record(avroSchema); + // if the names of the fields are defined (header row was specified) + if (csvHeaderFields != null) { + int i = 0; + // loop of the header fields + while (fields.hasNext()) { + // name of the csv field as defined in the header + String csvFieldName = csvHeaderFields[i]; + + // if the field name from the CSV file is present in the Avro schema. + // if the equivalent field is not found in the avro schema, then we + // ignore it + if (fieldMap.containsKey(csvFieldName)) { + // get the position of the field with the same name + // in the avro schema + int avroPosition = fieldMap.get(csvFieldName); + + // retrieve the field + Schema.Field field = avroSchema.getField(csvFieldName); + + // retrieve a field from the Avro SpecificRecord + Object object = getObject(field, fields.next()); + // add the object to the corresponding field + record.put(avroPosition, object); + } + i++; + } + } else { + List avroFields = avroSchema.getFields(); + int i = 0; + while (fields.hasNext()) { + Schema.Field field = avroFields.get(i); + // retrieve a field from the Avro SpecificRecord + String csf = fields.next(); + Object object = getObject(field, csf); + // add the object to the corresponding field + record.put(i, object); + i++; + } + } + return record; + } + + /** + * converts the String value from the CSV file into the correct + * object (type) according to the Avro schema definition. + *

+ * if the value is null and null is allowed per schema definition then + * null is returned + *

+ * if the string value can not be converted to the appropriate type in + * the schema, an exception is thrown. + *

+ * if the value is an empty string, 0 respectively 0.0 is returned for fields + * of type Integer, Long, Float or Double. + * + * @param field a field from the Avro record + * @param value the value from a CSV + * @return the correct object according to the schema + */ + private Object getObject(Schema.Field field, String value) throws Exception { + // retrieve the field type + Schema.Type fieldType = getFieldType(field); + + // retrieve the logical type of the field. relevant for some date and time types + // read the documentation at: avro.apache.org + LogicalType logicalFieldType = getFieldLogicalType(field); + + boolean nullAllowed = getFieldAllowsNull(field); + + if (value != null && !value.equals("")) { + if (fieldType == Schema.Type.INT) { + try { + if (logicalFieldType != null && logicalFieldType.getClass() == LogicalTypes.Date.class) { + return convertToDays(value); + } else { + return Integer.parseInt(value); + } + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] could not be converted to an integer"); + } + } else if (fieldType == Schema.Type.LONG) { + try { + if (logicalFieldType != null && logicalFieldType.getClass() == LogicalTypes.TimestampMillis.class) { + return convertToTimestampMilliseconds(value); + } else { + return Long.parseLong(value); + } + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] could not be converted to a long"); + } + } else if (fieldType == Schema.Type.FLOAT) { + try { + return Float.parseFloat(value); + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] could not be converted to a float"); + } + } else if (fieldType == Schema.Type.DOUBLE) { + try { + return Double.parseDouble(value); + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] can not be converted to a double"); + } + } else if (fieldType == Schema.Type.BOOLEAN) { + try { + return Boolean.parseBoolean(value); + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] can not be converted to a boolean"); + } + } else if (fieldType == Schema.Type.STRING) { + return value; + } else { + throw new Exception("type [" + fieldType + "] not supported. field: [" + field.name() + "]"); + } + } + // the value is either null or an empty string + else { + if (value != null && value.equals("")) { + if (fieldType == Schema.Type.STRING) { + return value; + } else if (fieldType == Schema.Type.INT) { + return 0; + } else if (fieldType == Schema.Type.LONG) { + return (long) 0; + } else if (fieldType == Schema.Type.DOUBLE) { + return (double) 0; + } else if (fieldType == Schema.Type.FLOAT) { + return (float) 0; + } else if (fieldType == Schema.Type.BOOLEAN) { + return Boolean.FALSE; + } else { + throw new Exception("empty field value is not defined in the schema for field: [" + field.name() + "]"); + } + + } + // must be null if we arrive here + else { + if (nullAllowed) { + return null; + } else { + throw new Exception("field value of [null] is not defined in the schema for field: [" + field.name() + "]"); + } + } + } + } + + /** + * converts the given value to milliseconds from the unix epoch using the + * defined format. + *

+ * Note: datetime in an avro schema is defined in number of days + * from the unix epoche + * + * @param value the value to convert + * @throws Exception when the value can not be parsed to a long + * @return milliseconds from the unix epoch as a long value + */ + private long convertToTimestampMilliseconds(String value) throws Exception { + SimpleDateFormat sdf = new SimpleDateFormat(csvDateTimeFormat); + try { + Date date = sdf.parse(value); + return new DateTime(date.getTime()).getMillis(); + } catch (Exception ex) { + throw new Exception("the value [" + value + "] cannot be converted to milliseconds from the unix epoch using the specified format [" + csvDateTimeFormat + "]"); + } + } + + /** + * converts the given value to days from the unix epoch using the + * defined format. + *

+ * Note: dates in an avro schema are defined in number of days + * from the unix epoche + * + * @param value the value to convert + * @throws Exception when the value can not be parsed to a long + * @return milliseconds from the unix epoch as a long value + */ + private int convertToDays(String value) throws Exception { + SimpleDateFormat sdf = new SimpleDateFormat(csvDateFormat); + try { + Date date = sdf.parse(value); + + long currentMilli = date.getTime(); + long seconds = currentMilli / 1000; + long minutes = seconds / 60; + long hours = minutes / 60; + long days = hours / 24; + return (int) days; + } catch (Exception ex) { + throw new Exception("the value [" + value + "] cannot be converted to days from the unix epoch using the specified format [" + csvDateFormat + "]"); + } + } + + + /** + * returns the type of the avro schema field + * + * @param field the avro schema field + * @return the type that is defined for the field + */ + private Schema.Type getFieldType(Schema.Field field) { + Schema.Type fieldType = field.schema().getType(); + + Schema.Type type = null; + + // if the field is of type union, we must loop to get the correct type + // if not then there is only one definition + if (fieldType == Schema.Type.UNION) { + List types = field.schema().getTypes(); + + for (int i = 0; i < types.size(); i++) { + // get the type that does NOT define null as the + // possible type + if (!types.get(i).equals(NULL_SCHEMA)) { + type = types.get(i).getType(); + break; + } + } + return type; + } else { + return fieldType; + } + } + + /** + * returns the logical field type of an avro schema field + *

+ * logical type definitions can help to further define which type + * of field is used in the schema. e.g. a date or time field. + *

+ * Note: there is a bug in avro 1.8.2. and datetime fields. + * it is not clear when that will be fixed. + * + * @param field the avro schema field + * @return a logical type definition if one was specified in the avro schema + */ + private LogicalType getFieldLogicalType(Schema.Field field) { + Schema.Type type = field.schema().getType(); + + LogicalType logicalFieldType = null; + + if (type == Schema.Type.UNION) { + List types = field.schema().getTypes(); + + if (types.get(0).equals(NULL_SCHEMA)) { + logicalFieldType = types.get(1).getLogicalType(); + } else { + logicalFieldType = types.get(0).getLogicalType(); + } + return logicalFieldType; + } else { + return logicalFieldType; + } + } + + /** + * determines if the definition of the field allows null as value + * + * @param field and avro schema field + * @return if the specified field allows null + */ + private boolean getFieldAllowsNull(Schema.Field field) { + Schema.Type type = field.schema().getType(); + + boolean nullAllowed = false; + + // the null is allowed we have two fields (maybe more): one for + // the field type and one defining null + if (type == Schema.Type.UNION) { + List types = field.schema().getTypes(); + + for (int i = 0; i < types.size(); i++) { + if (types.get(i).equals(NULL_SCHEMA)) { + nullAllowed = true; + break; + } + } + return nullAllowed; + } else { + return nullAllowed; + } + } +} diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java new file mode 100644 index 0000000..99b8d26 --- /dev/null +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java @@ -0,0 +1,122 @@ +package com.whylogs.examples; + +import com.whylogs.LendingClubRow; +import com.whylogs.core.DatasetProfile; +import io.confluent.kafka.serializers.AbstractKafkaSchemaSerDeConfig; +import io.confluent.kafka.serializers.KafkaAvroDeserializer; +import io.confluent.kafka.serializers.KafkaAvroDeserializerConfig; +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; +import org.apache.kafka.clients.consumer.ConsumerConfig; +import org.apache.kafka.clients.consumer.ConsumerRecord; +import org.apache.kafka.clients.consumer.ConsumerRecords; +import org.apache.kafka.clients.consumer.KafkaConsumer; +import org.apache.kafka.common.serialization.StringDeserializer; + +import java.io.*; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.nio.file.StandardOpenOption; +import java.time.*; +import java.time.format.DateTimeFormatter; +import java.util.*; + +import static java.time.Instant.now; + +/** + * An example of processing a CSV dataset. + * + * Here we demonstrate how you can extract data from a CSV file and track it with WhyLogs. We group + * the data by year here and run profiling for each year. + * + * In practice, if the data is sorted by date, you can write the data to disk as soon as you see the timestamp + * increase (in this case, you see the value of the following year in the dataset). In that way you can + * guarantee constant memory usage. + */ +public class ConsumerDemo { + public static final String DATE_COLUMN = "Call Date"; + public static final CSVFormat CSV_FORMAT = CSVFormat.DEFAULT + .withFirstRecordAsHeader() + .withNullString("") + .withDelimiter(','); + public static final DateTimeFormatter DATE_TIME_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy"); + + private static final String TOPIC = "whylogs-events"; + //private static final String TOPIC = "transactions"; + + private static final Properties props = new Properties(); + private static String configFile; + + public static void main(String[] args) throws Exception { + if (args.length < 1) { + // Backwards compatibility, assume localhost + props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092"); + props.put(AbstractKafkaSchemaSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, "http://localhost:8081"); + } else { + // Load properties from a local configuration file + // Create the configuration file (e.g. at '$HOME/.confluent/java.config') with configuration parameters + // to connect to your Kafka cluster, which can be on your local host, Confluent Cloud, or any other cluster. + // Documentation at https://docs.confluent.io/platform/current/tutorials/examples/clients/docs/java.html + configFile = args[0]; + if (!Files.exists(Paths.get(configFile))) { + throw new IOException(configFile + " not found."); + } else { + try (InputStream inputStream = new FileInputStream(configFile)) { + props.load(inputStream); + } + } + } + + props.put(ConsumerConfig.GROUP_ID_CONFIG, "ctest-payments"); + props.put(ConsumerConfig.ENABLE_AUTO_COMMIT_CONFIG, "false"); + props.put(ConsumerConfig.AUTO_COMMIT_INTERVAL_MS_CONFIG, "1000"); + props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest"); + props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class); + props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, KafkaAvroDeserializer.class); + props.put(KafkaAvroDeserializerConfig.SPECIFIC_AVRO_READER_CONFIG, true); + + final String sessionId = UUID.randomUUID().toString(); + final Instant now = now(); + final DatasetProfile profile = new DatasetProfile(sessionId, now, null, Collections.emptyMap(), Collections.emptyMap()); + + try (final KafkaConsumer consumer = new KafkaConsumer<>(props)) { + consumer.subscribe(Collections.singletonList(TOPIC)); + int count = 0; + while (true) { + final ConsumerRecords records = consumer.poll(Duration.ofMillis(1000)); + System.out.format("Read %d records\n", records.count()); + count += records.count(); + for (final ConsumerRecord record : records) { + final String key = record.key(); + final LendingClubRow value = record.value(); + Map map = new HashMap<>(); + value.getClassSchema().getFields().forEach(field -> + map.put(field.name(), value.get(field.name()))); + + // track multiple features + profile.track(map); + } + if (records.count() == 0) + break; + } + System.out.format("Received %d events\n", count); + } + + // write to a folder called "output" + final Path output = Paths.get("output"); + Files.createDirectories(output); + + // associate the year with filename + final String fileName = String.format("profile_%s.bin", Instant.now().atZone(ZoneOffset.UTC).getYear()); + + // write out the output + System.out.format("Writing profile to %s\n", fileName); + try (final OutputStream os = + Files.newOutputStream(output.resolve(fileName), StandardOpenOption.WRITE, StandardOpenOption.CREATE)) { + profile.toProtobuf().build().writeDelimitedTo(os); + } + + } +} diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java new file mode 100644 index 0000000..cb6ef43 --- /dev/null +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java @@ -0,0 +1,96 @@ +package com.whylogs.examples; + +import com.datamelt.csv.avro.CsvToAvroGenericWriter; +import com.whylogs.LendingClubRow; +import com.whylogs.core.DatasetProfile; +import org.apache.avro.Schema; +import org.apache.avro.generic.GenericData; +import org.apache.avro.generic.GenericRecord; +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; +import org.apache.kafka.clients.producer.KafkaProducer; +import org.apache.kafka.clients.producer.ProducerConfig; +import org.apache.kafka.clients.producer.ProducerRecord; +import org.apache.kafka.common.errors.SerializationException; + +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.nio.file.StandardOpenOption; +import java.time.Instant; +import java.time.LocalDate; +import java.time.ZoneOffset; +import java.time.format.DateTimeFormatter; +import java.util.*; + +/** + * An example of processing a CSV dataset. + * + * Here we demonstrate how you can extract data from a CSV file and track it with WhyLogs. We group + * the data by year here and run profiling for each year. + * + * In practice, if the data is sorted by date, you can write the data to disk as soon as you see the timestamp + * increase (in this case, you see the value of the following year in the dataset). In that way you can + * guarantee constant memory usage. + */ +public class ProducerDemo { + + public static final String DATE_COLUMN = "Call Date"; + public static final CSVFormat CSV_FORMAT = CSVFormat.DEFAULT + .withFirstRecordAsHeader() + .withNullString("") + .withDelimiter(','); + public static final String INPUT_FILE_NAME = "lending_club_1000.csv"; + + private static final String TOPIC = "whylogs-events"; + private static final Properties props = new Properties(); + private static String configFile; + + + public static void main(String[] args) throws Exception { + final String sessionId = UUID.randomUUID().toString(); + final Instant now = Instant.now(); + + props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092"); + props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, + org.apache.kafka.common.serialization.StringSerializer.class); + props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, + io.confluent.kafka.serializers.KafkaAvroSerializer.class); + props.put("schema.registry.url", "http://localhost:8081"); + + // map for storing the result + final Map result = new HashMap<>(); + System.out.println("opening " + INPUT_FILE_NAME); + + + try (KafkaProducer producer = new KafkaProducer(props)) { + + try (final InputStreamReader is = new InputStreamReader(ProducerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { + final CSVParser parser = new CSVParser(is, CSV_FORMAT); + final LendingClubRow value = new LendingClubRow(); + final Schema schema = value.getSchema(); + final CsvToAvroGenericWriter csv2avro = new CsvToAvroGenericWriter(schema); + + // iterate through records + for (final CSVRecord record : parser) { + final String orderId = "id" + Long.toString(1); + + GenericRecord avroRecord = csv2avro.populate(record.iterator()); + + final ProducerRecord precord = new ProducerRecord<>(TOPIC, "", avroRecord); + + producer.send(precord); + System.out.println("Sent event..."); + + } + } + } catch (final SerializationException e) { + e.printStackTrace(); + } + + } + +} diff --git a/java/kafka-avro/src/main/resources/com/whylogs/examples/lending_club_1000.csv b/java/kafka-avro/src/main/resources/com/whylogs/examples/lending_club_1000.csv new file mode 100644 index 0000000..aadea52 --- /dev/null +++ b/java/kafka-avro/src/main/resources/com/whylogs/examples/lending_club_1000.csv @@ -0,0 +1,1001 @@ +id,member_id,loan_amnt,funded_amnt,funded_amnt_inv,term,int_rate,installment,grade,sub_grade,emp_title,emp_length,home_ownership,annual_inc,verification_status,issue_d,loan_status,pymnt_plan,url,desc,purpose,title,zip_code,addr_state,dti,delinq_2yrs,earliest_cr_line,fico_range_low,fico_range_high,inq_last_6mths,mths_since_last_delinq,mths_since_last_record,open_acc,pub_rec,revol_bal,revol_util,total_acc,initial_list_status,out_prncp,out_prncp_inv,total_pymnt,total_pymnt_inv,total_rec_prncp,total_rec_int,total_rec_late_fee,recoveries,collection_recovery_fee,last_pymnt_d,last_pymnt_amnt,next_pymnt_d,last_credit_pull_d,last_fico_range_high,last_fico_range_low,collections_12_mths_ex_med,mths_since_last_major_derog,policy_code,application_type,annual_inc_joint,dti_joint,verification_status_joint,acc_now_delinq,tot_coll_amt,tot_cur_bal,open_acc_6m,open_act_il,open_il_12m,open_il_24m,mths_since_rcnt_il,total_bal_il,il_util,open_rv_12m,open_rv_24m,max_bal_bc,all_util,total_rev_hi_lim,inq_fi,total_cu_tl,inq_last_12m,acc_open_past_24mths,avg_cur_bal,bc_open_to_buy,bc_util,chargeoff_within_12_mths,delinq_amnt,mo_sin_old_il_acct,mo_sin_old_rev_tl_op,mo_sin_rcnt_rev_tl_op,mo_sin_rcnt_tl,mort_acc,mths_since_recent_bc,mths_since_recent_bc_dlq,mths_since_recent_inq,mths_since_recent_revol_delinq,num_accts_ever_120_pd,num_actv_bc_tl,num_actv_rev_tl,num_bc_sats,num_bc_tl,num_il_tl,num_op_rev_tl,num_rev_accts,num_rev_tl_bal_gt_0,num_sats,num_tl_120dpd_2m,num_tl_30dpd,num_tl_90g_dpd_24m,num_tl_op_past_12m,pct_tl_nvr_dlq,percent_bc_gt_75,pub_rec_bankruptcies,tax_liens,tot_hi_cred_lim,total_bal_ex_mort,total_bc_limit,total_il_high_credit_limit,revol_bal_joint,sec_app_fico_range_low,sec_app_fico_range_high,sec_app_earliest_cr_line,sec_app_inq_last_6mths,sec_app_mort_acc,sec_app_open_acc,sec_app_revol_util,sec_app_open_act_il,sec_app_num_rev_accts,sec_app_chargeoff_within_12_mths,sec_app_collections_12_mths_ex_med,sec_app_mths_since_last_major_derog,hardship_flag,hardship_type,hardship_reason,hardship_status,deferral_term,hardship_amount,hardship_start_date,hardship_end_date,payment_plan_start_date,hardship_length,hardship_dpd,hardship_loan_status,orig_projected_additional_accrued_interest,hardship_payoff_balance_amount,hardship_last_payment_amount,disbursement_method,debt_settlement_flag,debt_settlement_flag_date,settlement_status,settlement_date,settlement_amount,settlement_percentage,settlement_term +90671227,,4800.0,4800.0,4800.0, 36 months,13.49,162.87,C,C2,RN,< 1 year,RENT,41000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671227,,other,Other,658xx,MO,27.26,0.0,Jan-2011,675.0,679.0,0.0,24.0,,7.0,0.0,1924.0,52.0,12.0,w,0.0,0.0,797.78,797.78,219.04,103.1,0.0,475.64,85.6152,Dec-2016,162.87,,Jun-2017,499.0,0.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,32350.0,0.0,3.0,2.0,3.0,8.0,30426.0,82.0,0.0,1.0,1024.0,79.0,3700.0,3.0,1.0,2.0,4.0,5392.0,1313.0,47.5,0.0,0.0,58.0,68.0,14.0,8.0,0.0,31.0,,10.0,24.0,0.0,2.0,3.0,2.0,2.0,8.0,4.0,4.0,3.0,7.0,0.0,0.0,0.0,2.0,91.7,0.0,0.0,0.0,40876.0,32350.0,2500.0,37176.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90060135,,21600.0,21600.0,21600.0, 60 months,9.49,453.54,B,B2,Client Solutions Manager,2 years,RENT,72500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90060135,,debt_consolidation,Debt consolidation,904xx,CA,17.35,0.0,Jan-1997,705.0,709.0,0.0,37.0,,29.0,0.0,12024.0,29.5,39.0,w,0.0,0.0,25400.793917712203,25400.79,21600.0,3800.79,0.0,0.0,0.0,Jan-2019,13633.04,,Jan-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,274174.0,2.0,25.0,1.0,2.0,2.0,262150.0,113.0,2.0,2.0,5784.0,101.0,40700.0,0.0,1.0,0.0,4.0,9454.0,28676.0,29.5,0.0,0.0,236.0,146.0,5.0,2.0,0.0,5.0,37.0,,37.0,0.0,3.0,3.0,4.0,5.0,33.0,4.0,6.0,3.0,29.0,0.0,0.0,0.0,3.0,91.4,50.0,0.0,0.0,272565.0,274174.0,40700.0,231865.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501423,,24200.0,24200.0,24200.0, 36 months,9.49,775.09,B,B2,Associate Professor ,10+ years,RENT,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501423,,debt_consolidation,Debt consolidation,374xx,TN,14.71,0.0,Apr-1992,755.0,759.0,0.0,,,8.0,0.0,18213.0,40.7,20.0,w,0.0,0.0,25809.688873296,25809.69,24200.0,1609.69,0.0,0.0,0.0,Jul-2017,19621.73,,Jul-2017,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,28496.0,0.0,1.0,0.0,1.0,21.0,10283.0,59.0,0.0,0.0,18007.0,46.0,44800.0,0.0,3.0,0.0,1.0,4071.0,19087.0,48.8,0.0,0.0,163.0,293.0,28.0,21.0,0.0,28.0,,,,0.0,2.0,2.0,4.0,11.0,5.0,7.0,15.0,2.0,8.0,0.0,0.0,0.0,0.0,100.0,25.0,0.0,0.0,62184.0,28496.0,37300.0,17384.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186302,,3600.0,3600.0,3600.0, 36 months,11.49,118.7,B,B5,lpn,4 years,OWN,33000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186302,,debt_consolidation,Debt consolidation,707xx,LA,7.09,1.0,Mar-2006,660.0,664.0,1.0,23.0,,11.0,0.0,5413.0,58.8,14.0,w,799.83,799.83,3440.0,3440.0,2800.17,639.83,0.0,0.0,0.0,Mar-2019,118.7,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,173509.0,1.0,2.0,0.0,0.0,73.0,2263.0,44.0,1.0,3.0,1164.0,53.0,9200.0,2.0,0.0,3.0,4.0,19279.0,1325.0,47.0,0.0,0.0,126.0,90.0,1.0,1.0,1.0,51.0,,1.0,23.0,0.0,2.0,6.0,2.0,2.0,4.0,8.0,9.0,6.0,11.0,0.0,0.0,0.0,1.0,84.6,50.0,0.0,0.0,184278.0,7676.0,2500.0,5178.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90805192,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Asst. Winemaker/ SE Sales ,7 years,RENT,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90805192,,credit_card,Credit card refinancing,971xx,OR,11.78,0.0,Jun-2000,670.0,674.0,0.0,,,7.0,0.0,8246.0,74.3,10.0,w,0.0,0.0,8003.04,8003.04,8000.0,3.04,0.0,0.0,0.0,Oct-2016,8007.7,,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,20353.0,0.0,1.0,0.0,0.0,29.0,12107.0,69.0,1.0,2.0,3231.0,71.0,11100.0,1.0,0.0,1.0,2.0,2908.0,505.0,93.9,0.0,0.0,29.0,195.0,7.0,7.0,0.0,7.0,,8.0,,0.0,4.0,5.0,4.0,7.0,1.0,6.0,9.0,5.0,7.0,0.0,0.0,0.0,1.0,90.0,100.0,0.0,0.0,28702.0,20353.0,8300.0,17602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90905114,,4800.0,4800.0,4800.0, 36 months,10.99,157.13,B,B4,Administration Assistant ,3 years,RENT,38000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90905114,,debt_consolidation,Debt consolidation,945xx,CA,8.29,0.0,Apr-1986,680.0,684.0,1.0,73.0,28.0,16.0,1.0,8036.0,16.8,27.0,w,0.0,0.0,5115.5415042622,5115.54,4800.0,315.54,0.0,0.0,0.0,May-2017,4175.69,,Mar-2019,704.0,700.0,0.0,73.0,1.0,Individual,,,,0.0,315.0,8036.0,3.0,0.0,0.0,0.0,86.0,0.0,,4.0,6.0,2151.0,17.0,47700.0,1.0,1.0,4.0,6.0,618.0,27564.0,14.7,0.0,0.0,86.0,365.0,1.0,1.0,0.0,1.0,73.0,0.0,73.0,2.0,4.0,6.0,6.0,13.0,1.0,16.0,26.0,6.0,16.0,0.0,0.0,0.0,4.0,88.0,0.0,1.0,0.0,47700.0,8036.0,32300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521599,,5000.0,5000.0,5000.0, 36 months,13.99,170.87,C,C3,Vice President Finance,10+ years,MORTGAGE,241000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521599,,other,Other,078xx,NJ,30.84,0.0,Feb-1982,680.0,684.0,0.0,52.0,,12.0,0.0,249986.0,92.0,42.0,w,0.0,0.0,5676.1550630712,5676.16,5000.0,676.16,0.0,0.0,0.0,Nov-2017,3605.22,,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,616985.0,1.0,2.0,0.0,3.0,13.0,21174.0,81.0,1.0,2.0,17168.0,88.0,286900.0,2.0,0.0,3.0,6.0,51415.0,1564.0,95.6,0.0,0.0,137.0,415.0,0.0,0.0,3.0,0.0,52.0,10.0,52.0,1.0,6.0,7.0,6.0,19.0,11.0,8.0,27.0,7.0,12.0,0.0,0.0,0.0,2.0,79.5,83.3,0.0,0.0,670575.0,312774.0,35500.0,26000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491526,,14000.0,14000.0,14000.0, 60 months,14.49,329.33,C,C4,Office Mgr,10+ years,RENT,83000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491526,,debt_consolidation,Debt consolidation,146xx,NY,27.91,0.0,Mar-2004,690.0,694.0,1.0,34.0,,13.0,0.0,6295.0,21.4,18.0,w,8478.94,8478.94,9616.47,9616.47,5521.06,4062.47,32.94,0.0,0.0,Mar-2019,329.33,Apr-2019,Mar-2019,514.0,510.0,0.0,34.0,1.0,Individual,,,,0.0,0.0,145074.0,4.0,8.0,4.0,5.0,3.0,138779.0,109.0,2.0,3.0,3993.0,88.0,29400.0,0.0,0.0,3.0,8.0,11160.0,23105.0,21.4,0.0,0.0,150.0,104.0,3.0,3.0,0.0,3.0,,5.0,,1.0,5.0,5.0,5.0,5.0,12.0,5.0,6.0,5.0,13.0,0.0,0.0,0.0,6.0,83.3,0.0,0.0,0.0,154331.0,145074.0,29400.0,124931.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191902,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Accounting Rep,6 years,RENT,32000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191902,,debt_consolidation,Debt consolidation,347xx,FL,17.55,1.0,Apr-2001,660.0,664.0,0.0,19.0,,9.0,0.0,3941.0,25.1,16.0,w,0.0,0.0,1370.21,1370.21,915.49,454.72,0.0,0.0,0.0,Mar-2017,275.33,,Feb-2019,569.0,565.0,0.0,19.0,1.0,Individual,,,,0.0,708.0,14123.0,1.0,1.0,1.0,1.0,11.0,10182.0,81.0,3.0,5.0,1523.0,50.0,15700.0,0.0,0.0,2.0,6.0,1765.0,9398.0,27.7,0.0,0.0,11.0,185.0,3.0,3.0,2.0,3.0,,11.0,,2.0,4.0,5.0,4.0,7.0,1.0,8.0,13.0,5.0,9.0,0.0,0.0,1.0,4.0,93.3,0.0,0.0,0.0,28227.0,14123.0,13000.0,12527.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238258,,9000.0,9000.0,9000.0, 36 months,7.59,280.33,A,A3,Machine operator ,3 years,MORTGAGE,40000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238258,,other,Other,370xx,TN,21.63,0.0,Nov-1990,765.0,769.0,0.0,,,10.0,0.0,8963.0,17.5,21.0,f,0.0,0.0,9502.1917516829,9502.19,9000.0,502.19,0.0,0.0,0.0,Aug-2017,6983.02,,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,127951.0,1.0,1.0,0.0,1.0,19.0,9497.0,53.0,1.0,1.0,8590.0,27.0,51200.0,0.0,1.0,0.0,2.0,15994.0,36610.0,19.0,0.0,0.0,103.0,310.0,3.0,3.0,2.0,3.0,,,,0.0,1.0,3.0,4.0,9.0,3.0,8.0,16.0,3.0,10.0,0.0,0.0,0.0,1.0,95.2,0.0,0.0,0.0,189561.0,18460.0,45200.0,18000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90129116,,14850.0,14850.0,14850.0, 36 months,13.99,507.47,C,C3,,5 years,ANY,45000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90129116,,credit_card,Credit card refinancing,112xx,NY,30.25,0.0,Jun-2006,685.0,689.0,0.0,49.0,53.0,33.0,1.0,18732.0,26.6,46.0,w,2821.66,2821.66,15195.25,15195.25,12028.34,3166.91,0.0,0.0,0.0,Mar-2019,507.47,Apr-2019,Mar-2019,544.0,540.0,0.0,49.0,1.0,Individual,,,,0.0,0.0,47832.0,2.0,5.0,1.0,3.0,5.0,29100.0,89.0,8.0,22.0,3199.0,46.0,70500.0,1.0,4.0,1.0,25.0,1449.0,22661.0,34.1,0.0,0.0,107.0,123.0,4.0,4.0,0.0,10.0,,9.0,,0.0,9.0,18.0,9.0,10.0,14.0,28.0,32.0,18.0,33.0,0.0,0.0,0.0,9.0,89.1,11.1,0.0,0.0,103036.0,47832.0,34400.0,32536.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89874829,,36000.0,36000.0,36000.0, 60 months,15.59,867.63,C,C5,Principal,10+ years,OWN,150000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89874829,,debt_consolidation,Debt consolidation,128xx,NY,17.03,2.0,Sep-1994,710.0,714.0,1.0,22.0,,8.0,0.0,818.0,37.2,28.0,w,22023.65,22023.65,25083.32,25083.32,13976.35,11106.97,0.0,0.0,0.0,Mar-2019,867.63,Apr-2019,Mar-2019,704.0,700.0,0.0,22.0,1.0,Individual,,,,0.0,0.0,24355.0,3.0,3.0,2.0,2.0,1.0,23537.0,53.0,1.0,1.0,818.0,52.0,2200.0,2.0,2.0,14.0,3.0,4059.0,1182.0,40.9,0.0,0.0,264.0,264.0,1.0,1.0,4.0,1.0,22.0,2.0,22.0,3.0,1.0,1.0,3.0,11.0,8.0,5.0,16.0,1.0,8.0,0.0,0.0,1.0,3.0,84.0,0.0,0.0,0.0,46516.0,24355.0,2000.0,44316.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661432,,4000.0,4000.0,4000.0, 36 months,7.59,124.6,A,A3,Clinical Practive Specialist,10+ years,MORTGAGE,78000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661432,,debt_consolidation,Debt consolidation,065xx,CT,11.29,0.0,May-1984,745.0,749.0,0.0,30.0,,26.0,0.0,9607.0,15.3,39.0,w,850.17,850.17,3611.71,3611.71,3149.83,461.88,0.0,0.0,0.0,Mar-2019,124.6,Apr-2019,Mar-2019,799.0,795.0,0.0,45.0,1.0,Individual,,,,0.0,0.0,364297.0,0.0,3.0,1.0,2.0,12.0,11487.0,42.0,1.0,3.0,5936.0,24.0,62700.0,0.0,0.0,2.0,6.0,18215.0,42539.0,13.9,0.0,0.0,165.0,388.0,10.0,10.0,5.0,10.0,31.0,11.0,30.0,1.0,2.0,6.0,7.0,8.0,3.0,19.0,28.0,6.0,26.0,0.0,0.0,0.0,3.0,87.2,0.0,0.0,0.0,440329.0,21119.0,49400.0,27256.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724303,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,Field Technician,9 years,RENT,53000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724303,,credit_card,Credit card refinancing,928xx,CA,22.53,0.0,Aug-2003,665.0,669.0,1.0,75.0,,5.0,0.0,13862.0,49.9,17.0,w,685.24,685.24,2970.75,2970.75,2314.76,655.99,0.0,0.0,0.0,Mar-2019,102.52,Apr-2019,Mar-2019,724.0,720.0,0.0,75.0,1.0,Individual,,,,0.0,0.0,31199.0,0.0,1.0,0.0,1.0,23.0,17337.0,72.0,0.0,1.0,8935.0,60.0,27800.0,1.0,0.0,1.0,2.0,6240.0,0.0,100.4,0.0,0.0,157.0,131.0,19.0,19.0,1.0,29.0,,0.0,,1.0,2.0,2.0,2.0,5.0,4.0,4.0,12.0,2.0,5.0,0.0,0.0,0.0,0.0,94.1,100.0,0.0,0.0,51800.0,31199.0,13800.0,24000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90291399,,21500.0,21500.0,21500.0, 36 months,12.79,722.25,C,C1,,,OWN,43000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90291399,,house,Home buying,757xx,TX,21.69,0.0,Dec-1979,710.0,714.0,0.0,54.0,,12.0,0.0,16583.0,50.9,37.0,w,4846.8,4846.8,20929.97,20929.97,16653.2,4276.77,0.0,0.0,0.0,Mar-2019,722.25,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,24051.0,0.0,1.0,0.0,0.0,63.0,7468.0,69.0,0.0,0.0,6429.0,55.0,32600.0,0.0,0.0,0.0,0.0,2672.0,1598.0,87.1,0.0,0.0,135.0,441.0,33.0,33.0,4.0,203.0,,,,0.0,2.0,5.0,2.0,10.0,4.0,11.0,29.0,5.0,12.0,0.0,0.0,0.0,0.0,97.3,100.0,0.0,0.0,43400.0,24051.0,12400.0,10800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671516,,17375.0,17375.0,17375.0, 36 months,10.49,564.65,B,B3,Service technician,9 years,MORTGAGE,64000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671516,,debt_consolidation,Debt consolidation,913xx,CA,15.23,0.0,Oct-2006,715.0,719.0,0.0,,,12.0,0.0,10560.0,34.9,15.0,w,0.0,0.0,19658.5347217042,19658.53,17375.0,2283.53,0.0,0.0,0.0,May-2018,9484.71,,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,422985.0,0.0,1.0,0.0,1.0,22.0,7820.0,49.0,0.0,3.0,5835.0,40.0,30300.0,2.0,0.0,2.0,5.0,38453.0,12515.0,45.6,0.0,0.0,66.0,119.0,17.0,8.0,1.0,17.0,,9.0,,0.0,3.0,5.0,5.0,5.0,3.0,10.0,11.0,5.0,12.0,0.0,0.0,0.0,1.0,100.0,40.0,0.0,0.0,454800.0,18380.0,23000.0,16000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90219136,,10000.0,10000.0,10000.0, 36 months,8.99,317.96,B,B1,Surface maintenance repairer,10+ years,OWN,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90219136,,home_improvement,Home improvement,377xx,TN,28.5,0.0,Sep-2006,675.0,679.0,0.0,33.0,,9.0,0.0,4652.0,19.1,24.0,w,2060.02,2060.02,9345.8,9345.8,7939.98,1405.82,0.0,0.0,0.0,Mar-2019,317.96,Apr-2019,Mar-2019,769.0,765.0,0.0,67.0,1.0,Individual,,,,0.0,3532.0,70557.0,1.0,3.0,3.0,6.0,2.0,65905.0,95.0,1.0,2.0,4478.0,64.0,24300.0,0.0,6.0,2.0,9.0,7840.0,3822.0,54.0,0.0,0.0,96.0,120.0,12.0,2.0,0.0,33.0,,10.0,,1.0,1.0,2.0,2.0,7.0,11.0,6.0,12.0,2.0,9.0,0.0,0.0,0.0,5.0,91.7,0.0,0.0,0.0,95787.0,70557.0,8300.0,71487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90825164,,25000.0,25000.0,25000.0, 36 months,11.49,824.29,B,B5,Teacher ,7 years,MORTGAGE,94000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90825164,,credit_card,Credit card refinancing,729xx,AR,6.97,0.0,Sep-1996,685.0,689.0,2.0,,,24.0,0.0,30744.0,38.7,46.0,w,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,Jul-2017,574.0,570.0,0.0,,1.0,Individual,,,,0.0,0.0,252222.0,1.0,6.0,1.0,1.0,10.0,103637.0,87.0,4.0,9.0,12555.0,58.0,79500.0,2.0,0.0,10.0,10.0,10509.0,39670.0,42.8,0.0,0.0,240.0,59.0,3.0,3.0,1.0,3.0,,0.0,,0.0,10.0,12.0,13.0,16.0,22.0,17.0,23.0,12.0,24.0,0.0,0.0,0.0,5.0,100.0,7.7,0.0,0.0,306153.0,134381.0,69300.0,104016.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90116186,,24000.0,24000.0,24000.0, 36 months,14.49,825.99,C,C4,General Manager ,9 years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90116186,,debt_consolidation,Debt consolidation,851xx,AZ,34.18,0.0,Jan-2008,690.0,694.0,1.0,,,12.0,0.0,18318.0,56.9,18.0,f,5512.33,5512.33,23934.39,23934.39,18487.67,5446.72,0.0,0.0,0.0,Mar-2019,825.99,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,191198.0,1.0,2.0,0.0,0.0,39.0,6006.0,19.0,1.0,2.0,3525.0,56.0,32200.0,3.0,8.0,3.0,2.0,15933.0,6621.0,58.1,0.0,0.0,103.0,104.0,5.0,5.0,1.0,20.0,,0.0,,0.0,5.0,7.0,5.0,5.0,8.0,8.0,8.0,7.0,12.0,0.0,0.0,0.0,1.0,100.0,60.0,0.0,0.0,248349.0,52024.0,15800.0,31735.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641282,,4000.0,4000.0,4000.0, 36 months,14.49,137.67,C,C4,Underwriter,6 years,MORTGAGE,89000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641282,,debt_consolidation,Debt consolidation,800xx,CO,14.48,1.0,Sep-2002,660.0,664.0,1.0,15.0,,11.0,0.0,17135.0,60.5,23.0,w,0.0,0.0,4087.0713269304997,4087.07,4000.0,87.07,0.0,0.0,0.0,Dec-2016,336.99,,Feb-2018,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,25927.0,2.0,3.0,1.0,3.0,12.0,8792.0,36.0,3.0,4.0,4373.0,49.0,28300.0,0.0,0.0,1.0,7.0,2357.0,6186.0,69.2,0.0,0.0,116.0,119.0,3.0,3.0,2.0,3.0,,1.0,,0.0,5.0,7.0,5.0,8.0,10.0,8.0,11.0,7.0,11.0,0.0,0.0,0.0,4.0,90.9,60.0,0.0,0.0,52468.0,25927.0,20100.0,24168.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082567,,16000.0,16000.0,16000.0, 36 months,15.59,559.28,C,C5,Senior HR Administrator,9 years,MORTGAGE,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082567,,home_improvement,Home improvement,086xx,NJ,9.27,0.0,Jul-1980,745.0,749.0,2.0,60.0,,13.0,0.0,3486.0,11.5,24.0,w,0.0,0.0,17749.704129588703,17749.7,16000.0,1749.7,0.0,0.0,0.0,Jul-2017,13289.32,,Feb-2018,684.0,680.0,0.0,60.0,1.0,Individual,,,,0.0,218.0,194988.0,4.0,2.0,2.0,3.0,6.0,10246.0,69.0,6.0,7.0,1312.0,30.0,30200.0,4.0,0.0,9.0,10.0,14999.0,23567.0,6.5,0.0,0.0,167.0,434.0,1.0,1.0,1.0,5.0,,3.0,,0.0,3.0,8.0,5.0,8.0,7.0,10.0,16.0,8.0,13.0,0.0,0.0,0.0,8.0,95.7,0.0,0.0,0.0,265207.0,13732.0,25200.0,14952.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414903,,30000.0,30000.0,30000.0, 60 months,15.59,723.03,C,C5,Maintenance Supervisor,8 years,RENT,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414903,,home_improvement,Home improvement,210xx,MD,11.51,0.0,Sep-1999,725.0,729.0,0.0,,,6.0,0.0,18734.0,49.2,9.0,w,0.0,0.0,31840.36198209,31840.36,30000.0,1840.36,0.0,0.0,0.0,Aug-2017,92.07,,Mar-2019,774.0,770.0,0.0,,1.0,Joint App,97560.0,5.26,Not Verified,0.0,0.0,18734.0,0.0,0.0,0.0,0.0,,0.0,,1.0,1.0,9960.0,49.0,38100.0,1.0,0.0,2.0,1.0,3122.0,10411.0,64.2,0.0,0.0,,204.0,9.0,9.0,0.0,26.0,,1.0,,0.0,2.0,3.0,3.0,4.0,0.0,6.0,9.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,38100.0,18734.0,29100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561497,,10000.0,10000.0,10000.0, 60 months,17.99,253.88,D,D2,Pastor,3 years,MORTGAGE,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561497,,debt_consolidation,Debt consolidation,150xx,PA,32.55,0.0,Nov-1998,670.0,674.0,0.0,38.0,,31.0,0.0,14367.0,54.0,37.0,w,6257.92,6257.92,7352.53,7352.53,3742.08,3610.45,0.0,0.0,0.0,Mar-2019,253.88,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,190894.0,2.0,19.0,0.0,5.0,13.0,122797.0,93.0,4.0,10.0,4633.0,87.0,26600.0,2.0,1.0,0.0,15.0,6158.0,12233.0,54.0,0.0,0.0,144.0,111.0,0.0,0.0,2.0,0.0,38.0,13.0,38.0,0.0,7.0,7.0,11.0,11.0,24.0,11.0,11.0,7.0,31.0,0.0,0.0,0.0,4.0,97.3,36.4,0.0,0.0,219574.0,137164.0,26600.0,131568.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90965190,,24000.0,24000.0,24000.0, 60 months,13.99,558.32,C,C3,Environmental Inspector,2 years,MORTGAGE,120960.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90965190,,credit_card,Credit card refinancing,712xx,LA,16.54,0.0,Mar-2006,685.0,689.0,1.0,,,11.0,0.0,19065.0,62.9,15.0,w,14455.16,14455.16,16172.63,16172.63,9544.84,6627.79,0.0,0.0,0.0,Mar-2019,558.32,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,237458.0,0.0,2.0,0.0,1.0,16.0,61406.0,92.0,2.0,5.0,7747.0,78.0,30300.0,3.0,1.0,2.0,7.0,21587.0,6008.0,71.1,0.0,0.0,126.0,50.0,7.0,7.0,1.0,20.0,,1.0,,0.0,3.0,5.0,4.0,4.0,5.0,8.0,9.0,5.0,11.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,281670.0,80471.0,20800.0,85620.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90241045,,18000.0,18000.0,18000.0, 36 months,15.59,629.19,C,C5,Property Manager,4 years,RENT,91000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90241045,,debt_consolidation,Debt consolidation,951xx,CA,16.46,0.0,Oct-2005,695.0,699.0,3.0,63.0,,14.0,0.0,6705.0,48.9,28.0,w,0.0,0.0,19573.495346655,19573.5,18000.0,1573.5,0.0,0.0,0.0,May-2017,15751.59,,Oct-2017,724.0,720.0,0.0,63.0,1.0,Individual,,,,0.0,443.0,62152.0,0.0,7.0,2.0,2.0,8.0,55447.0,66.0,1.0,3.0,4375.0,60.0,13700.0,0.0,1.0,3.0,5.0,4439.0,702.0,87.5,0.0,0.0,109.0,131.0,10.0,8.0,0.0,32.0,,1.0,,1.0,2.0,4.0,2.0,6.0,14.0,7.0,14.0,4.0,14.0,0.0,0.0,0.0,3.0,96.4,50.0,0.0,0.0,81063.0,62152.0,5600.0,67363.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89798569,,13850.0,13850.0,13850.0, 36 months,15.59,484.13,C,C5,Vice President of Sales and Marketing,3 years,RENT,120000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89798569,,debt_consolidation,Debt consolidation,762xx,TX,4.75,0.0,Jan-2007,660.0,664.0,0.0,,66.0,5.0,1.0,2881.0,68.6,8.0,w,0.0,0.0,5933.31,5933.31,2884.43,1538.71,0.0,1510.17,271.8306,Jul-2017,484.13,,Jan-2018,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,8862.0,0.0,1.0,0.0,1.0,21.0,5981.0,59.0,1.0,3.0,1823.0,62.0,4200.0,0.0,0.0,2.0,4.0,1772.0,1224.0,68.6,0.0,0.0,21.0,101.0,11.0,11.0,1.0,11.0,,1.0,,0.0,3.0,4.0,3.0,5.0,1.0,4.0,6.0,4.0,5.0,0.0,0.0,0.0,1.0,100.0,33.3,1.0,0.0,14347.0,8862.0,3900.0,10147.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024775,,8850.0,8850.0,8850.0, 36 months,24.49,349.5,E,E3,Survey CAD Technician,2 years,RENT,35360.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024775,,credit_card,Credit card refinancing,787xx,TX,27.9,0.0,Nov-2008,670.0,674.0,2.0,,,19.0,0.0,17438.0,50.3,23.0,f,0.0,0.0,2163.22,2163.22,1066.44,1096.78,0.0,0.0,0.0,Apr-2017,349.5,,Sep-2017,524.0,520.0,0.0,,1.0,Individual,,,,0.0,0.0,85921.0,1.0,13.0,0.0,3.0,13.0,68483.0,96.0,1.0,2.0,8094.0,81.0,34700.0,1.0,0.0,3.0,5.0,4522.0,3041.0,79.2,0.0,0.0,93.0,67.0,4.0,4.0,0.0,35.0,,0.0,,0.0,2.0,3.0,2.0,3.0,15.0,6.0,8.0,3.0,19.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,105913.0,85921.0,14600.0,71213.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90208929,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,Nursing assistant,7 years,RENT,43000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90208929,,debt_consolidation,Debt consolidation,117xx,NY,20.57,1.0,Sep-2005,695.0,699.0,0.0,13.0,91.0,7.0,1.0,2141.0,24.6,17.0,w,0.0,0.0,5886.261968676899,5886.26,5000.0,871.26,15.0,0.0,0.0,Jan-2019,188.33,,Jan-2019,524.0,520.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,55358.0,2.0,4.0,2.0,4.0,3.0,53217.0,79.0,0.0,2.0,2139.0,62.0,8700.0,2.0,1.0,5.0,6.0,7908.0,4859.0,30.6,0.0,0.0,132.0,119.0,16.0,3.0,0.0,16.0,13.0,5.0,13.0,2.0,2.0,2.0,2.0,2.0,13.0,3.0,4.0,2.0,7.0,0.0,0.0,1.0,2.0,93.3,0.0,1.0,0.0,67324.0,55358.0,7000.0,58624.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90308903,,25000.0,25000.0,25000.0, 36 months,6.99,771.82,A,A2,Consultant,2 years,MORTGAGE,154000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90308903,,debt_consolidation,Debt consolidation,922xx,CA,14.49,0.0,Feb-1973,745.0,749.0,0.0,46.0,,14.0,0.0,18089.0,20.0,35.0,w,0.0,0.0,26738.6261100846,26738.63,25000.0,1738.63,0.0,0.0,0.0,Dec-2017,16714.68,,Dec-2017,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,623011.0,2.0,2.0,1.0,1.0,1.0,62758.0,100.0,0.0,2.0,4154.0,40.0,90400.0,2.0,0.0,2.0,4.0,47924.0,58836.0,10.9,0.0,0.0,141.0,523.0,13.0,1.0,6.0,13.0,,8.0,,0.0,4.0,7.0,5.0,10.0,9.0,9.0,19.0,7.0,14.0,0.0,0.0,0.0,2.0,97.1,0.0,0.0,0.0,735662.0,80847.0,66000.0,78862.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90531507,,5000.0,5000.0,5000.0, 36 months,10.49,162.49,B,B3,Purchase ,5 years,RENT,34000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90531507,,debt_consolidation,Debt consolidation,927xx,CA,30.11,0.0,Dec-2003,660.0,664.0,0.0,40.0,,11.0,0.0,4743.0,70.8,26.0,w,1098.63,1098.63,4729.69,4729.69,3901.37,828.32,0.0,0.0,0.0,Mar-2019,162.49,Apr-2019,Mar-2019,679.0,675.0,0.0,40.0,1.0,Individual,,,,0.0,115.0,23846.0,0.0,4.0,0.0,0.0,29.0,19103.0,67.0,1.0,2.0,2751.0,68.0,6700.0,0.0,4.0,1.0,2.0,2168.0,49.0,98.3,0.0,0.0,142.0,153.0,9.0,9.0,0.0,15.0,43.0,9.0,41.0,1.0,1.0,6.0,1.0,5.0,12.0,7.0,14.0,6.0,11.0,0.0,0.0,0.0,1.0,79.2,100.0,0.0,0.0,35303.0,23846.0,2800.0,28603.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90298264,,25000.0,25000.0,25000.0, 36 months,7.59,778.69,A,A3,President,10+ years,MORTGAGE,135600.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298264,,home_improvement,Home improvement,852xx,AZ,9.85,0.0,Jun-1982,780.0,784.0,0.0,,,16.0,0.0,28137.0,25.2,28.0,f,5315.47,5315.47,22571.47,22571.47,19684.53,2886.94,0.0,0.0,0.0,Mar-2019,778.69,Apr-2019,Mar-2019,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,433979.0,1.0,0.0,0.0,0.0,38.0,6533.0,30.0,0.0,0.0,12719.0,27.0,111600.0,0.0,0.0,1.0,1.0,28932.0,50821.0,33.8,0.0,0.0,134.0,411.0,53.0,4.0,5.0,61.0,,5.0,,0.0,4.0,6.0,6.0,7.0,4.0,13.0,18.0,6.0,16.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,540042.0,38634.0,76800.0,22167.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90955271,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,general clerk,1 year,RENT,13307.52,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90955271,,debt_consolidation,Debt consolidation,704xx,LA,34.42,2.0,Nov-1990,665.0,669.0,0.0,20.0,,9.0,0.0,3386.0,15.1,23.0,w,0.0,0.0,5689.783054628299,5689.78,5000.0,689.78,0.0,0.0,0.0,Jan-2018,3315.11,,Mar-2019,699.0,695.0,0.0,20.0,1.0,Individual,,,,0.0,172.0,3386.0,0.0,0.0,0.0,0.0,33.0,0.0,,0.0,1.0,2686.0,15.0,22400.0,1.0,3.0,0.0,1.0,423.0,13122.0,20.0,0.0,0.0,263.0,310.0,14.0,14.0,0.0,14.0,20.0,22.0,20.0,3.0,3.0,5.0,4.0,6.0,9.0,9.0,14.0,5.0,9.0,0.0,0.0,2.0,0.0,90.9,0.0,0.0,0.0,22400.0,3386.0,16400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90905223,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,Associate,1 year,RENT,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90905223,,debt_consolidation,Debt consolidation,802xx,CO,15.33,0.0,Sep-2009,685.0,689.0,0.0,,,24.0,0.0,11060.0,54.0,27.0,w,0.0,0.0,14774.133340847,14774.13,12000.0,2774.13,0.0,0.0,0.0,Mar-2019,3184.96,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,175962.0,0.0,14.0,0.0,2.0,13.0,164902.0,100.0,0.0,1.0,6163.0,95.0,20500.0,0.0,0.0,1.0,3.0,7651.0,2419.0,74.5,0.0,0.0,84.0,72.0,24.0,13.0,0.0,44.0,,10.0,,0.0,2.0,7.0,2.0,2.0,16.0,10.0,11.0,7.0,24.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,185402.0,175962.0,9500.0,164902.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945257,,6500.0,6500.0,6500.0, 36 months,10.49,211.24,B,B3,RN,< 1 year,RENT,104000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945257,,debt_consolidation,Debt consolidation,980xx,WA,9.73,2.0,Dec-1993,675.0,679.0,1.0,13.0,,7.0,0.0,5524.0,61.4,20.0,f,0.0,0.0,7104.9028412899,7104.9,6500.0,604.9,0.0,0.0,0.0,Oct-2017,4785.05,,Oct-2018,714.0,710.0,0.0,13.0,1.0,Individual,,,,0.0,0.0,212620.0,2.0,1.0,0.0,0.0,64.0,14117.0,,3.0,4.0,3138.0,61.0,9000.0,0.0,2.0,2.0,4.0,30374.0,141.0,96.7,0.0,0.0,168.0,273.0,2.0,2.0,3.0,23.0,13.0,3.0,13.0,3.0,2.0,4.0,2.0,5.0,7.0,5.0,10.0,4.0,7.0,0.0,0.0,2.0,3.0,89.5,100.0,0.0,0.0,245034.0,19641.0,4300.0,39274.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551505,,11200.0,11200.0,11200.0, 60 months,21.49,306.1,D,D5,Business manager ,< 1 year,MORTGAGE,49920.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551505,,debt_consolidation,Debt consolidation,368xx,AL,15.41,0.0,Feb-2004,685.0,689.0,0.0,,,14.0,0.0,7554.0,46.1,18.0,w,0.0,0.0,15240.9903997277,15240.99,11200.0,4040.99,0.0,0.0,0.0,Aug-2018,8826.26,,Feb-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,101.0,283175.0,1.0,6.0,1.0,2.0,10.0,33390.0,105.0,0.0,4.0,3051.0,85.0,16400.0,1.0,0.0,3.0,7.0,20227.0,4754.0,52.5,0.0,0.0,61.0,151.0,16.0,4.0,1.0,46.0,,6.0,,0.0,3.0,7.0,3.0,4.0,6.0,7.0,11.0,7.0,14.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,291708.0,40944.0,10000.0,31899.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90895119,,15000.0,15000.0,15000.0, 36 months,8.99,476.93,B,B1,Practice Manager,< 1 year,MORTGAGE,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90895119,,credit_card,Credit card refinancing,853xx,AZ,16.99,0.0,Jan-2004,725.0,729.0,1.0,,,8.0,0.0,14917.0,40.0,33.0,w,0.0,0.0,15915.395336924199,15915.4,15000.0,915.4,0.0,0.0,0.0,Jul-2017,11107.45,,Aug-2017,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,42265.0,2.0,2.0,1.0,2.0,1.0,27348.0,87.0,3.0,4.0,11527.0,62.0,37300.0,1.0,0.0,3.0,6.0,5283.0,12783.0,53.9,0.0,0.0,124.0,152.0,1.0,1.0,3.0,17.0,,1.0,,0.0,3.0,3.0,3.0,11.0,6.0,6.0,24.0,3.0,8.0,0.0,0.0,0.0,4.0,100.0,33.3,0.0,0.0,68773.0,42265.0,27700.0,31473.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88869843,,10000.0,10000.0,10000.0, 36 months,15.59,349.55,C,C5,Epidemiologist,3 years,RENT,91670.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88869843,,other,Other,303xx,GA,12.12,0.0,May-2004,680.0,684.0,1.0,,106.0,10.0,1.0,26302.0,60.6,26.0,w,0.0,0.0,10920.5226050595,10920.52,10000.0,920.52,0.0,0.0,0.0,Jul-2017,5476.78,,Jun-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,40608.0,1.0,1.0,4.0,5.0,3.0,14306.0,95.0,0.0,2.0,7593.0,70.0,43400.0,0.0,1.0,2.0,7.0,4512.0,16261.0,42.7,0.0,0.0,123.0,148.0,15.0,3.0,0.0,15.0,,0.0,,0.0,4.0,5.0,7.0,8.0,15.0,9.0,11.0,5.0,10.0,0.0,0.0,0.0,4.0,100.0,0.0,1.0,0.0,58400.0,40608.0,28400.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721282,,3000.0,3000.0,3000.0, 36 months,13.49,101.8,C,C2,manager,1 year,RENT,56000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721282,,debt_consolidation,Debt consolidation,773xx,TX,21.63,0.0,Oct-1995,660.0,664.0,2.0,41.0,64.0,12.0,1.0,9825.0,40.0,22.0,w,681.26,681.26,2946.58,2946.58,2318.74,627.84,0.0,0.0,0.0,Mar-2019,101.8,Apr-2019,Mar-2019,659.0,655.0,0.0,76.0,1.0,Individual,,,,0.0,0.0,39987.0,5.0,1.0,1.0,2.0,2.0,30162.0,99.0,5.0,7.0,2464.0,76.0,24600.0,8.0,3.0,7.0,10.0,3332.0,12761.0,43.0,0.0,0.0,121.0,251.0,4.0,2.0,0.0,4.0,41.0,4.0,41.0,1.0,8.0,9.0,8.0,11.0,6.0,10.0,14.0,9.0,12.0,0.0,0.0,0.0,7.0,90.5,0.0,0.0,1.0,55229.0,39987.0,22100.0,30629.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89987975,,2725.0,2725.0,2725.0, 36 months,13.99,93.13,C,C3,Pipefitter,< 1 year,OWN,52000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89987975,,debt_consolidation,Debt consolidation,380xx,TN,16.2,0.0,Nov-2012,660.0,664.0,0.0,,,7.0,0.0,3316.0,69.1,11.0,w,0.0,0.0,3013.8173608746,3013.82,2725.0,288.82,0.0,0.0,0.0,Aug-2017,2177.77,,Aug-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,11112.0,1.0,3.0,2.0,3.0,5.0,7796.0,68.0,2.0,6.0,2840.0,68.0,4800.0,1.0,0.0,1.0,9.0,1587.0,736.0,80.6,0.0,0.0,46.0,16.0,11.0,5.0,0.0,11.0,,11.0,,0.0,2.0,4.0,2.0,2.0,5.0,4.0,6.0,4.0,7.0,0.0,0.0,0.0,4.0,100.0,50.0,0.0,0.0,16313.0,11112.0,3800.0,11513.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90775189,,12000.0,12000.0,12000.0, 36 months,6.99,370.48,A,A2,Safety Supervisor,8 years,MORTGAGE,85000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90775189,,debt_consolidation,Debt consolidation,628xx,IL,12.64,0.0,Jun-1998,760.0,764.0,0.0,,,7.0,0.0,13669.0,46.0,21.0,w,2533.6,2533.6,10739.26,10739.26,9466.4,1272.86,0.0,0.0,0.0,Mar-2019,370.48,Apr-2019,Feb-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,113997.0,0.0,1.0,0.0,0.0,49.0,9094.0,28.0,0.0,1.0,7491.0,37.0,29700.0,0.0,2.0,6.0,1.0,19000.0,16031.0,46.0,0.0,0.0,132.0,142.0,13.0,13.0,7.0,13.0,,0.0,,0.0,4.0,4.0,4.0,5.0,7.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,202805.0,22763.0,29700.0,32000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90835189,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,Specialist ,10+ years,OWN,48000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90835189,,medical,Medical expenses,765xx,TX,27.35,0.0,Mar-1998,720.0,724.0,2.0,,,26.0,0.0,4759.0,6.6,47.0,f,0.0,0.0,4932.48,4932.48,3476.69,1455.79,0.0,0.0,0.0,Sep-2018,213.89,,Mar-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,773.0,169291.0,8.0,3.0,2.0,2.0,6.0,30404.0,79.0,13.0,17.0,3006.0,32.0,72000.0,1.0,0.0,3.0,21.0,6511.0,34010.0,10.7,0.0,0.0,192.0,222.0,1.0,1.0,2.0,1.0,,1.0,,0.0,3.0,5.0,12.0,13.0,15.0,22.0,30.0,5.0,26.0,0.0,0.0,0.0,15.0,100.0,0.0,0.0,0.0,247453.0,35163.0,38100.0,38374.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724549,,6000.0,6000.0,6000.0, 36 months,6.99,185.24,A,A2,COORDINATOR,10+ years,MORTGAGE,52000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724549,,car,Car financing,750xx,TX,11.22,0.0,Jul-1984,815.0,819.0,0.0,,,7.0,0.0,144.0,0.4,23.0,f,0.0,0.0,6559.1523140532,6559.15,6000.0,559.15,0.0,0.0,0.0,Feb-2019,433.03,,Feb-2019,839.0,835.0,0.0,,1.0,Individual,,,,0.0,0.0,99479.0,1.0,2.0,1.0,1.0,7.0,21405.0,64.0,0.0,0.0,144.0,32.0,34300.0,1.0,0.0,2.0,2.0,14211.0,34156.0,0.4,0.0,0.0,224.0,386.0,57.0,5.0,3.0,57.0,,6.0,,0.0,1.0,1.0,4.0,11.0,7.0,4.0,13.0,1.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,148602.0,21549.0,34300.0,33702.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89938602,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Teacher,,OWN,92000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89938602,,debt_consolidation,Debt consolidation,622xx,IL,19.59,0.0,Dec-1995,745.0,749.0,1.0,33.0,,12.0,0.0,10823.0,20.8,29.0,w,21902.71,21902.71,25733.84,25733.84,13097.29,12636.55,0.0,0.0,0.0,Mar-2019,888.58,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,77503.0,1.0,2.0,0.0,0.0,25.0,37784.0,55.0,2.0,3.0,1961.0,26.0,52100.0,0.0,0.0,5.0,3.0,6459.0,13535.0,24.0,0.0,0.0,149.0,242.0,6.0,6.0,3.0,9.0,,0.0,33.0,0.0,4.0,8.0,4.0,6.0,13.0,9.0,13.0,8.0,12.0,0.0,0.0,0.0,2.0,89.7,0.0,0.0,0.0,173484.0,48607.0,17800.0,61434.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075726,,16800.0,16800.0,16800.0, 36 months,22.39,645.0,E,E1,Store manager,2 years,RENT,45000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075726,,credit_card,Credit card refinancing,700xx,LA,34.05,0.0,Jul-2005,685.0,689.0,1.0,44.0,,20.0,0.0,10580.0,26.6,34.0,f,0.0,0.0,15459.1,15459.1,9922.6,5536.5,0.0,0.0,0.0,Oct-2018,645.0,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,211.0,64925.0,3.0,4.0,4.0,7.0,8.0,54345.0,92.0,7.0,10.0,3071.0,66.0,39700.0,1.0,6.0,3.0,17.0,3417.0,17653.0,20.1,0.0,0.0,109.0,134.0,2.0,2.0,0.0,2.0,44.0,2.0,44.0,0.0,5.0,9.0,8.0,11.0,11.0,16.0,23.0,9.0,20.0,0.0,0.0,0.0,11.0,91.2,0.0,0.0,0.0,98782.0,64925.0,22100.0,59082.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331322,,5000.0,5000.0,5000.0, 36 months,10.99,163.67,B,B4,Executive assistant ,3 years,RENT,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331322,,debt_consolidation,Debt consolidation,926xx,CA,11.49,0.0,Jan-2008,705.0,709.0,0.0,35.0,,12.0,0.0,9874.0,20.4,18.0,w,0.0,0.0,5182.348668523499,5182.35,5000.0,182.35,0.0,0.0,0.0,Mar-2017,123.09,,Mar-2017,729.0,725.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,35436.0,1.0,1.0,2.0,3.0,5.0,25562.0,95.0,2.0,4.0,3550.0,47.0,48400.0,0.0,2.0,4.0,7.0,3221.0,23711.0,26.1,0.0,0.0,97.0,104.0,7.0,5.0,0.0,7.0,,6.0,,1.0,5.0,9.0,6.0,7.0,5.0,11.0,13.0,9.0,12.0,0.0,0.0,0.0,4.0,94.4,20.0,0.0,0.0,75400.0,35436.0,32100.0,27000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90955140,,20000.0,20000.0,20000.0, 36 months,12.79,671.86,C,C1,Law enforcement,10+ years,RENT,90108.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90955140,,credit_card,Credit card refinancing,950xx,CA,28.65,0.0,Mar-1999,675.0,679.0,1.0,62.0,64.0,9.0,1.0,9517.0,32.4,31.0,w,0.0,0.0,22382.609368572997,22382.61,20000.0,2382.61,0.0,0.0,0.0,Nov-2017,14355.82,,Jan-2019,699.0,695.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,92814.0,2.0,3.0,2.0,4.0,7.0,83297.0,88.0,3.0,3.0,4316.0,65.0,29400.0,6.0,4.0,7.0,7.0,10313.0,7083.0,57.3,0.0,0.0,167.0,210.0,3.0,3.0,1.0,4.0,73.0,3.0,73.0,4.0,4.0,4.0,4.0,11.0,13.0,6.0,17.0,4.0,9.0,0.0,0.0,0.0,5.0,87.1,25.0,1.0,0.0,125730.0,92814.0,16600.0,96330.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521746,,15850.0,15850.0,15850.0, 60 months,26.99,483.9,F,F3,Rescue Specialist,1 year,RENT,42700.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521746,,debt_consolidation,Debt consolidation,973xx,OR,34.32,0.0,Feb-2002,690.0,694.0,0.0,81.0,115.0,9.0,1.0,15606.0,54.4,15.0,w,10721.75,10721.75,14091.56,14091.56,5128.25,8963.31,0.0,0.0,0.0,Mar-2019,483.9,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,100.0,52384.0,0.0,2.0,1.0,2.0,9.0,36778.0,88.0,1.0,1.0,4698.0,74.0,28700.0,1.0,8.0,1.0,3.0,6548.0,1558.0,78.9,0.0,0.0,175.0,73.0,10.0,9.0,0.0,49.0,,9.0,,0.0,2.0,4.0,2.0,2.0,7.0,7.0,8.0,4.0,9.0,0.0,0.0,0.0,2.0,93.3,50.0,1.0,0.0,70435.0,52384.0,7400.0,41735.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89779458,,10000.0,10000.0,9975.0, 36 months,8.59,316.1,A,A5,Customer Service,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89779458,,debt_consolidation,Debt consolidation,562xx,MN,24.35,0.0,Jul-1996,735.0,739.0,0.0,,,10.0,0.0,15560.0,50.2,14.0,f,2150.39,2145.01,9162.13,9139.22,7849.61,1312.52,0.0,0.0,0.0,Mar-2019,316.1,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,16531.0,0.0,1.0,0.0,0.0,35.0,971.0,10.0,0.0,0.0,5367.0,40.0,31000.0,0.0,0.0,0.0,0.0,1653.0,15440.0,50.2,0.0,0.0,35.0,149.0,66.0,35.0,2.0,66.0,,,,0.0,8.0,8.0,9.0,10.0,1.0,9.0,11.0,8.0,10.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,40950.0,16531.0,31000.0,9950.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89874882,,4200.0,4200.0,4200.0, 36 months,13.99,143.53,C,C3,Administrative Assistant,10+ years,OWN,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89874882,,vacation,Vacation,107xx,NY,14.98,0.0,Aug-1987,660.0,664.0,0.0,43.0,29.0,13.0,1.0,6326.0,58.6,66.0,w,969.23,969.23,4164.18,4164.18,3230.77,933.41,0.0,0.0,0.0,Mar-2019,143.53,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,152774.0,4.0,5.0,1.0,3.0,3.0,96061.0,112.0,6.0,7.0,2731.0,102.0,10800.0,0.0,9.0,2.0,10.0,11752.0,2705.0,67.8,0.0,0.0,181.0,349.0,3.0,3.0,5.0,3.0,,3.0,,0.0,4.0,6.0,4.0,8.0,38.0,7.0,23.0,6.0,13.0,0.0,0.0,0.0,7.0,98.2,50.0,1.0,0.0,159048.0,102387.0,8400.0,90248.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511887,,12000.0,12000.0,11975.0, 36 months,5.32,361.38,A,A1,Outpatient Therapist,1 year,RENT,54350.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511887,,credit_card,Credit card refinancing,395xx,MS,6.27,0.0,Nov-2001,690.0,694.0,0.0,37.0,,12.0,0.0,10216.0,50.8,18.0,f,0.0,0.0,12593.8281530134,12567.59,12000.0,593.83,0.0,0.0,0.0,Oct-2017,8597.38,,Mar-2019,779.0,775.0,0.0,37.0,1.0,Individual,,,,0.0,0.0,101993.0,0.0,1.0,0.0,0.0,37.0,91777.0,,0.0,2.0,2556.0,51.0,20100.0,2.0,0.0,0.0,2.0,8499.0,3068.0,72.8,0.0,0.0,178.0,167.0,17.0,17.0,0.0,17.0,,23.0,,2.0,6.0,8.0,7.0,7.0,5.0,11.0,13.0,8.0,12.0,0.0,0.0,0.0,0.0,88.9,42.9,0.0,0.0,98121.0,101993.0,11300.0,78021.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89848947,,25000.0,25000.0,25000.0, 60 months,15.59,602.52,C,C5,RN,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89848947,,debt_consolidation,Debt consolidation,132xx,NY,16.82,1.0,Oct-1998,715.0,719.0,1.0,16.0,,11.0,0.0,7866.0,39.7,27.0,w,15294.24,15294.24,17581.34,17581.34,9705.76,7875.58,0.0,0.0,0.0,Mar-2019,602.52,Apr-2019,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,96890.0,0.0,2.0,0.0,1.0,16.0,9061.0,44.0,0.0,0.0,1616.0,42.0,19800.0,2.0,0.0,4.0,1.0,8808.0,3234.0,60.6,0.0,0.0,147.0,143.0,26.0,16.0,2.0,26.0,16.0,0.0,16.0,0.0,4.0,6.0,4.0,10.0,6.0,8.0,19.0,6.0,11.0,0.0,0.0,0.0,0.0,92.3,50.0,0.0,0.0,143548.0,16927.0,8200.0,20650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415992,,6000.0,6000.0,6000.0, 36 months,13.99,205.04,C,C3,Substation specialist ,10+ years,RENT,73000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415992,,debt_consolidation,Debt consolidation,364xx,AL,30.66,0.0,Apr-2005,720.0,724.0,0.0,,,9.0,0.0,5823.0,77.6,14.0,w,0.0,0.0,6204.7915282744,6204.79,6000.0,204.79,0.0,0.0,0.0,Jan-2017,5799.37,,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,76330.0,0.0,4.0,1.0,3.0,11.0,70507.0,45.0,0.0,2.0,2298.0,55.0,7500.0,0.0,7.0,0.0,5.0,8481.0,518.0,91.4,0.0,0.0,137.0,86.0,17.0,11.0,0.0,18.0,,17.0,,0.0,3.0,4.0,3.0,3.0,7.0,5.0,7.0,4.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,104653.0,76330.0,6000.0,97153.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90343498,,40000.0,40000.0,40000.0, 60 months,13.49,920.19,C,C2,Purchasing Manager,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90343498,,debt_consolidation,Debt consolidation,983xx,WA,12.2,0.0,Dec-1984,685.0,689.0,0.0,39.0,,5.0,0.0,38816.0,74.4,18.0,w,23973.2,23973.2,26733.99,26733.99,16026.8,10707.19,0.0,0.0,0.0,Mar-2019,920.19,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,192100.0,0.0,0.0,0.0,0.0,67.0,0.0,,0.0,0.0,13851.0,74.0,52200.0,1.0,1.0,0.0,1.0,38420.0,12664.0,73.2,0.0,0.0,126.0,381.0,58.0,14.0,4.0,109.0,,13.0,,0.0,3.0,4.0,3.0,9.0,2.0,4.0,12.0,4.0,5.0,0.0,0.0,0.0,0.0,94.4,66.7,0.0,0.0,207450.0,38816.0,47200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90885131,,14400.0,14400.0,14400.0, 60 months,26.49,435.33,F,F2,Sr. Software QA Analyst,10+ years,RENT,51194.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90885131,,debt_consolidation,Debt consolidation,122xx,NY,21.85,0.0,May-1999,660.0,664.0,0.0,44.0,70.0,14.0,1.0,9289.0,60.7,18.0,w,0.0,0.0,22244.8413972944,22244.84,14400.0,7844.84,0.0,0.0,0.0,Feb-2019,10416.76,,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,31267.0,0.0,2.0,1.0,2.0,10.0,21978.0,108.0,0.0,3.0,1825.0,88.0,15300.0,0.0,2.0,0.0,5.0,2405.0,2429.0,72.4,0.0,0.0,208.0,158.0,22.0,10.0,0.0,22.0,,15.0,,0.0,8.0,10.0,8.0,9.0,6.0,11.0,12.0,10.0,14.0,0.0,0.0,0.0,1.0,94.4,62.5,0.0,1.0,35571.0,31267.0,8800.0,20271.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427489,,35000.0,35000.0,35000.0, 60 months,26.49,1058.1,F,F2,Legal Assistant,4 years,RENT,79000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427489,,debt_consolidation,Debt consolidation,925xx,CO,34.41,0.0,Oct-1991,720.0,724.0,3.0,56.0,,16.0,0.0,3079.0,8.4,38.0,w,0.0,0.0,17132.97,17132.97,3869.88,8698.55,0.0,4564.54,410.8086,Oct-2017,1058.1,,Apr-2018,599.0,595.0,0.0,56.0,1.0,Joint App,143000.0,35.77,Not Verified,0.0,0.0,127647.0,3.0,8.0,2.0,3.0,2.0,124568.0,111.0,1.0,2.0,3079.0,76.0,36600.0,7.0,4.0,4.0,5.0,7978.0,12421.0,19.9,0.0,0.0,152.0,299.0,4.0,2.0,2.0,4.0,56.0,1.0,56.0,5.0,1.0,1.0,4.0,9.0,20.0,8.0,16.0,1.0,16.0,0.0,0.0,0.0,3.0,88.6,0.0,0.0,0.0,161605.0,127647.0,15500.0,125005.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087024,,21000.0,21000.0,21000.0, 60 months,13.99,488.53,C,C3,IT Systems Administrator,< 1 year,MORTGAGE,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087024,,credit_card,Credit card refinancing,212xx,MD,16.54,0.0,Dec-1992,675.0,679.0,1.0,,,11.0,0.0,45522.0,79.4,17.0,w,0.0,0.0,25931.1905271215,25931.19,21000.0,4931.19,0.0,0.0,0.0,Sep-2018,15159.05,,Feb-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,159288.0,0.0,0.0,0.0,1.0,14.0,0.0,,0.0,1.0,13539.0,79.0,57300.0,4.0,1.0,5.0,2.0,15929.0,8179.0,84.2,0.0,0.0,108.0,285.0,13.0,13.0,2.0,13.0,,1.0,,0.0,7.0,8.0,9.0,11.0,2.0,10.0,12.0,8.0,11.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,178900.0,45522.0,51700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90321592,,7200.0,7200.0,7200.0, 36 months,9.49,230.61,B,B2,,,OWN,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90321592,,debt_consolidation,Debt consolidation,045xx,ME,26.72,0.0,Apr-1970,735.0,739.0,0.0,,,6.0,0.0,30874.0,49.1,12.0,f,0.0,0.0,5069.62,5069.62,4155.38,914.24,0.0,0.0,0.0,Aug-2018,230.61,,Oct-2018,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,33048.0,0.0,1.0,0.0,0.0,30.0,2174.0,17.0,1.0,1.0,13827.0,44.0,62900.0,0.0,0.0,1.0,1.0,5508.0,17131.0,63.6,0.0,0.0,162.0,557.0,10.0,10.0,1.0,95.0,,10.0,,0.0,3.0,5.0,3.0,5.0,4.0,5.0,7.0,5.0,6.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,75947.0,33048.0,47100.0,13047.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90332117,,30000.0,30000.0,30000.0, 60 months,8.99,622.61,B,B1,Sergeant ,10+ years,MORTGAGE,125000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90332117,,debt_consolidation,Debt consolidation,109xx,NY,9.66,0.0,Jan-1996,700.0,704.0,1.0,45.0,,11.0,0.0,21132.0,82.9,20.0,w,17166.2,17166.2,18018.23,18018.23,12833.8,5184.43,0.0,0.0,0.0,Mar-2019,622.61,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,758.0,421446.0,1.0,4.0,1.0,2.0,1.0,115137.0,86.0,0.0,1.0,8203.0,86.0,25500.0,0.0,1.0,2.0,3.0,42145.0,1790.0,91.3,0.0,0.0,159.0,248.0,14.0,1.0,2.0,58.0,,1.0,45.0,0.0,3.0,4.0,3.0,5.0,6.0,6.0,12.0,4.0,11.0,0.0,0.0,0.0,1.0,95.0,100.0,0.0,0.0,471541.0,136269.0,20500.0,126041.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89969262,,15000.0,15000.0,15000.0, 36 months,7.59,467.22,A,A3,Field Service Engineer,5 years,RENT,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89969262,,credit_card,Credit card refinancing,750xx,TX,26.34,0.0,Dec-1994,760.0,764.0,0.0,,,26.0,0.0,26679.0,29.7,43.0,f,0.0,0.0,16045.3372089858,16045.34,15000.0,1045.34,0.0,0.0,0.0,Nov-2017,10445.02,,Oct-2018,829.0,825.0,0.0,,1.0,Individual,,,,0.0,0.0,119534.0,1.0,15.0,0.0,2.0,22.0,92855.0,79.0,1.0,1.0,16751.0,58.0,89900.0,1.0,0.0,1.0,3.0,4781.0,55634.0,31.2,0.0,0.0,123.0,261.0,5.0,5.0,0.0,5.0,,11.0,,0.0,2.0,3.0,7.0,11.0,28.0,11.0,15.0,3.0,26.0,0.0,0.0,0.0,1.0,100.0,14.3,0.0,0.0,208022.0,119534.0,80900.0,118122.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501479,,12000.0,12000.0,12000.0, 36 months,17.99,433.77,D,D2,Parts & Service Manager,10+ years,MORTGAGE,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501479,,debt_consolidation,Debt consolidation,433xx,OH,27.77,0.0,Oct-2000,660.0,664.0,0.0,39.0,47.0,8.0,1.0,5027.0,32.4,32.0,w,0.0,0.0,14420.9284397144,14420.93,12000.0,2420.93,0.0,0.0,0.0,Jan-2018,8288.18,,Dec-2018,709.0,705.0,0.0,39.0,1.0,Individual,,,,0.0,1878.0,44053.0,0.0,2.0,0.0,3.0,16.0,13704.0,72.0,0.0,4.0,2475.0,54.0,15500.0,3.0,0.0,1.0,7.0,5507.0,1273.0,79.8,0.0,0.0,126.0,152.0,13.0,13.0,4.0,13.0,,9.0,,2.0,3.0,3.0,3.0,9.0,12.0,5.0,16.0,3.0,8.0,0.0,0.0,0.0,0.0,93.8,66.7,0.0,0.0,82230.0,18731.0,6300.0,18922.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90235226,,3325.0,3325.0,3325.0, 36 months,15.59,116.23,C,C5,EVS,2 years,RENT,65000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90235226,,debt_consolidation,Credit card refinancing,945xx,CA,3.01,0.0,Jan-2004,690.0,694.0,0.0,38.0,,11.0,0.0,3229.0,20.7,17.0,w,0.0,0.0,828.9,828.9,297.87,164.17,0.0,366.86,66.0348,Feb-2017,116.23,,Aug-2017,499.0,0.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,27629.0,2.0,1.0,0.0,0.0,98.0,24400.0,119.0,6.0,7.0,1781.0,77.0,15600.0,0.0,0.0,1.0,7.0,2512.0,4721.0,29.5,0.0,0.0,152.0,26.0,0.0,0.0,0.0,0.0,,11.0,,1.0,3.0,6.0,4.0,5.0,5.0,10.0,12.0,6.0,11.0,0.0,0.0,0.0,6.0,100.0,25.0,0.0,0.0,36062.0,27629.0,6700.0,20462.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90723443,,2400.0,2400.0,2400.0, 36 months,10.99,78.57,B,B4,Field Marketing Specialist,1 year,RENT,44000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90723443,,credit_card,Credit card refinancing,142xx,NY,9.15,0.0,Feb-2012,710.0,714.0,1.0,,,5.0,0.0,3923.0,28.8,5.0,w,0.0,0.0,2627.3894194563,2627.39,2400.0,227.39,0.0,0.0,0.0,Apr-2018,328.17,,Apr-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,23013.0,1.0,1.0,0.0,0.0,55.0,19090.0,127.0,3.0,4.0,3678.0,81.0,13600.0,0.0,0.0,2.0,4.0,4603.0,7322.0,33.4,0.0,0.0,55.0,19.0,4.0,4.0,0.0,9.0,,4.0,,0.0,1.0,2.0,2.0,2.0,1.0,4.0,4.0,2.0,5.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,28600.0,23013.0,11000.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90017722,,12000.0,12000.0,12000.0, 60 months,22.39,334.1,E,E1,Lab tech,2 years,MORTGAGE,30000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90017722,,debt_consolidation,Debt consolidation,370xx,TN,23.05,0.0,Aug-2003,715.0,719.0,1.0,73.0,,14.0,0.0,11436.0,40.3,26.0,w,0.0,0.0,8211.43,8211.43,3120.4,4828.29,16.71,246.03,44.2854,Feb-2019,246.03,,Mar-2019,534.0,530.0,0.0,,1.0,Individual,,,,0.0,0.0,144817.0,3.0,1.0,0.0,0.0,37.0,8289.0,56.0,4.0,4.0,5340.0,46.0,28400.0,0.0,0.0,1.0,4.0,11140.0,5360.0,55.3,0.0,0.0,157.0,152.0,0.0,0.0,4.0,5.0,75.0,5.0,75.0,0.0,3.0,9.0,4.0,5.0,7.0,12.0,15.0,9.0,14.0,0.0,0.0,0.0,4.0,92.3,33.3,0.0,0.0,178302.0,19725.0,12000.0,14902.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,4227.0,45.0,18.0 +90501369,,3525.0,3525.0,3525.0, 36 months,17.99,127.42,D,D2,Machinist,4 years,RENT,68000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501369,,small_business,Business,822xx,WY,5.31,0.0,May-1997,660.0,664.0,2.0,34.0,5.0,4.0,2.0,194.0,6.7,20.0,w,840.75,840.75,3686.37,3686.37,2684.25,1002.12,0.0,0.0,0.0,Mar-2019,127.42,Apr-2019,Mar-2019,674.0,670.0,0.0,34.0,1.0,Individual,,,,0.0,1738.0,63827.0,0.0,2.0,1.0,2.0,8.0,4105.0,45.0,0.0,0.0,0.0,36.0,2900.0,0.0,0.0,4.0,2.0,15957.0,,,0.0,0.0,132.0,69.0,44.0,8.0,0.0,,34.0,2.0,34.0,2.0,0.0,1.0,0.0,1.0,15.0,1.0,3.0,1.0,4.0,0.0,0.0,0.0,1.0,90.0,,0.0,0.0,71559.0,63827.0,0.0,9131.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90765227,,17600.0,17600.0,17600.0, 60 months,13.99,409.43,C,C3,Global Payment Compliance DIrector,10+ years,OWN,101000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90765227,,debt_consolidation,Debt consolidation,281xx,NC,12.67,2.0,Jun-1990,660.0,664.0,0.0,4.0,0.0,17.0,1.0,13937.0,34.8,33.0,w,10600.61,10600.61,11859.79,11859.79,6999.39,4860.4,0.0,0.0,0.0,Mar-2019,409.43,Apr-2019,Mar-2019,714.0,710.0,0.0,11.0,1.0,Individual,,,,0.0,52.0,164362.0,0.0,4.0,0.0,1.0,16.0,17384.0,45.0,0.0,0.0,6365.0,40.0,40100.0,0.0,1.0,1.0,1.0,9668.0,12885.0,38.3,1.0,0.0,170.0,315.0,39.0,16.0,4.0,39.0,,12.0,4.0,1.0,3.0,6.0,5.0,10.0,8.0,12.0,21.0,6.0,17.0,0.0,0.0,1.0,0.0,90.9,20.0,0.0,0.0,244258.0,31321.0,20900.0,38306.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90755203,,9800.0,9800.0,9800.0, 36 months,12.79,329.22,C,C1,Benefits Analyst ,2 years,RENT,55000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90755203,,debt_consolidation,Debt consolidation,279xx,NC,12.85,0.0,Aug-2004,670.0,674.0,0.0,78.0,,20.0,0.0,3601.0,94.8,24.0,w,0.0,0.0,11512.0330153128,11512.03,9800.0,1712.03,0.0,0.0,0.0,Aug-2018,4605.37,,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,467.0,78136.0,0.0,18.0,0.0,3.0,15.0,74535.0,98.0,0.0,0.0,2107.0,97.0,3800.0,0.0,0.0,2.0,3.0,3907.0,199.0,94.8,0.0,0.0,145.0,97.0,33.0,15.0,0.0,33.0,,3.0,,2.0,2.0,2.0,2.0,2.0,21.0,2.0,3.0,2.0,20.0,0.0,0.0,0.0,0.0,79.2,100.0,0.0,0.0,80262.0,78136.0,3800.0,76462.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89987563,,20000.0,20000.0,20000.0, 60 months,25.29,590.44,E,E5,Assistant District Attorney,10+ years,MORTGAGE,64000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89987563,,debt_consolidation,Debt consolidation,747xx,OK,26.1,0.0,Aug-2000,695.0,699.0,0.0,47.0,,12.0,0.0,23023.0,90.6,24.0,w,0.0,0.0,30649.345277612003,30649.35,20000.0,10649.35,0.0,0.0,0.0,Mar-2019,14145.13,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,145228.0,1.0,5.0,0.0,2.0,19.0,44598.0,61.0,1.0,1.0,8711.0,69.0,25400.0,0.0,1.0,0.0,3.0,13203.0,877.0,96.3,0.0,0.0,193.0,136.0,2.0,2.0,3.0,2.0,,19.0,,0.0,4.0,4.0,4.0,7.0,9.0,6.0,11.0,4.0,12.0,0.0,0.0,0.0,1.0,95.8,100.0,0.0,0.0,189243.0,67621.0,23900.0,73093.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90395079,,9700.0,9700.0,9700.0, 36 months,23.99,380.51,E,E2,Outside service ,< 1 year,MORTGAGE,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90395079,,medical,Medical expenses,454xx,OH,32.13,0.0,Jun-2008,690.0,694.0,1.0,,,13.0,0.0,15850.0,44.3,16.0,f,0.0,0.0,12497.9029655277,12497.9,9700.0,2797.9,0.0,0.0,0.0,Apr-2018,2823.16,,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,59.0,184821.0,2.0,1.0,0.0,1.0,21.0,37087.0,,5.0,6.0,4563.0,44.0,35800.0,0.0,0.0,2.0,8.0,15402.0,18460.0,37.6,0.0,0.0,89.0,99.0,5.0,5.0,1.0,6.0,,5.0,,0.0,4.0,5.0,8.0,9.0,3.0,11.0,12.0,5.0,13.0,0.0,0.0,0.0,5.0,100.0,37.5,0.0,0.0,221125.0,52937.0,29600.0,49825.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90237876,,18500.0,18500.0,18475.0, 36 months,6.99,571.15,A,A2,auditor,10+ years,MORTGAGE,137000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90237876,,debt_consolidation,Debt consolidation,287xx,NC,12.23,0.0,Jun-1999,765.0,769.0,1.0,,,19.0,0.0,11950.0,10.8,47.0,f,0.0,0.0,19204.225327168202,19178.27,18500.0,704.23,0.0,0.0,0.0,Apr-2017,16301.78,,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,383533.0,3.0,2.0,0.0,1.0,24.0,23401.0,50.0,4.0,8.0,5035.0,22.0,110900.0,1.0,0.0,3.0,9.0,20186.0,88250.0,11.9,0.0,0.0,150.0,207.0,4.0,4.0,4.0,4.0,,1.0,,0.0,7.0,7.0,13.0,24.0,6.0,16.0,36.0,7.0,19.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,529983.0,35351.0,100200.0,46733.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90007737,,19450.0,19450.0,19450.0, 36 months,13.49,659.95,C,C2,Mail Carrier,10+ years,MORTGAGE,38900.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90007737,,debt_consolidation,Debt consolidation,792xx,TX,22.71,2.0,Dec-1993,705.0,709.0,0.0,17.0,,9.0,0.0,5212.0,47.0,20.0,w,4418.62,4418.62,19123.97,19123.97,15031.38,4092.59,0.0,0.0,0.0,Mar-2019,659.95,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,315.0,17898.0,0.0,1.0,0.0,0.0,49.0,12686.0,43.0,0.0,0.0,1919.0,44.0,11100.0,0.0,0.0,0.0,0.0,2237.0,1553.0,68.9,0.0,0.0,179.0,273.0,27.0,27.0,0.0,68.0,17.0,14.0,17.0,0.0,3.0,5.0,4.0,4.0,8.0,8.0,12.0,5.0,9.0,0.0,0.0,0.0,0.0,85.0,50.0,0.0,0.0,40448.0,17898.0,5000.0,29348.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90092506,,15000.0,15000.0,15000.0, 60 months,18.99,389.03,D,D3,Analyst,1 year,MORTGAGE,125000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90092506,,debt_consolidation,Debt consolidation,278xx,NC,18.38,0.0,Jan-1998,675.0,679.0,1.0,27.0,,10.0,0.0,9194.0,68.1,34.0,w,0.0,0.0,17191.666308865602,17191.67,15000.0,2191.67,0.0,0.0,0.0,Jul-2017,13695.25,,May-2018,629.0,625.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,359832.0,5.0,3.0,1.0,4.0,3.0,123180.0,80.0,3.0,4.0,6164.0,78.0,13500.0,4.0,3.0,4.0,9.0,35983.0,4306.0,68.1,0.0,0.0,126.0,224.0,1.0,1.0,6.0,1.0,,5.0,,0.0,2.0,2.0,5.0,7.0,13.0,5.0,15.0,2.0,10.0,0.0,0.0,0.0,5.0,97.1,40.0,0.0,0.0,358766.0,132374.0,13500.0,117389.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90120774,,26250.0,26250.0,26250.0, 36 months,12.79,881.82,C,C1,Legal Assistant,2 years,MORTGAGE,10000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90120774,,debt_consolidation,Debt consolidation,809xx,CO,81.15,0.0,Dec-1999,695.0,699.0,0.0,,,14.0,0.0,22538.0,85.4,15.0,w,0.0,0.0,30462.902752782004,30462.9,26250.0,4212.9,0.0,0.0,0.0,Apr-2018,15388.03,,Mar-2019,669.0,665.0,0.0,,1.0,Joint App,75000.0,16.75,Not Verified,0.0,0.0,159551.0,0.0,0.0,0.0,0.0,,0.0,,0.0,2.0,2490.0,85.0,26400.0,0.0,0.0,0.0,2.0,11397.0,1289.0,91.0,0.0,0.0,,201.0,21.0,21.0,2.0,21.0,,,,0.0,7.0,13.0,7.0,7.0,0.0,13.0,13.0,13.0,14.0,0.0,0.0,0.0,0.0,100.0,85.7,0.0,0.0,175876.0,22538.0,14300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89776623,,35000.0,35000.0,35000.0, 36 months,10.99,1145.69,B,B4,Oil and Gas Landman,10+ years,RENT,150000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89776623,,credit_card,Credit card refinancing,756xx,TX,10.21,0.0,Nov-2004,700.0,704.0,0.0,,,17.0,0.0,39127.0,45.4,38.0,w,7733.9,7733.9,33203.64,33203.64,27266.1,5937.54,0.0,0.0,0.0,Mar-2019,1145.69,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,39474.0,1.0,1.0,0.0,0.0,44.0,347.0,6.0,1.0,5.0,9202.0,43.0,86200.0,0.0,0.0,1.0,5.0,2322.0,7339.0,82.0,0.0,0.0,142.0,119.0,5.0,5.0,0.0,24.0,,3.0,,0.0,6.0,10.0,7.0,11.0,14.0,16.0,24.0,10.0,17.0,0.0,0.0,0.0,1.0,100.0,71.4,0.0,0.0,92293.0,39474.0,40800.0,6093.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90825177,,21000.0,21000.0,21000.0, 36 months,9.49,672.6,B,B2,RN,3 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90825177,,home_improvement,Home improvement,043xx,ME,17.28,0.0,Oct-2003,770.0,774.0,2.0,,,25.0,0.0,3033.0,7.1,62.0,w,4562.49,4562.49,19571.83,19571.83,16437.51,3134.32,0.0,0.0,0.0,Mar-2019,672.6,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,58728.0,4.0,7.0,3.0,4.0,3.0,55695.0,93.0,3.0,7.0,2275.0,57.0,42800.0,0.0,16.0,4.0,11.0,2447.0,21432.0,11.1,0.0,0.0,124.0,155.0,6.0,3.0,0.0,8.0,,3.0,,0.0,2.0,6.0,6.0,11.0,30.0,18.0,32.0,6.0,25.0,0.0,0.0,0.0,6.0,100.0,0.0,0.0,0.0,102700.0,58728.0,24100.0,59900.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90965177,,25000.0,25000.0,25000.0, 36 months,18.99,916.28,D,D3,owner,10+ years,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90965177,,debt_consolidation,Debt consolidation,330xx,FL,26.31,2.0,Mar-1994,715.0,719.0,0.0,15.0,,9.0,0.0,12105.0,36.8,13.0,w,0.0,0.0,31074.103419962998,31074.1,25000.0,6074.1,0.0,0.0,0.0,Jul-2018,7774.88,,Jul-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,31181.0,0.0,2.0,1.0,2.0,8.0,19076.0,69.0,1.0,1.0,7950.0,51.0,32900.0,3.0,0.0,1.0,3.0,3898.0,20795.0,36.8,0.0,0.0,141.0,270.0,12.0,8.0,1.0,12.0,15.0,4.0,15.0,0.0,5.0,5.0,6.0,7.0,3.0,7.0,9.0,5.0,9.0,0.0,0.0,0.0,2.0,81.8,0.0,0.0,0.0,60764.0,31181.0,32900.0,27864.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067943,,14000.0,14000.0,14000.0, 60 months,23.99,402.68,E,E2,Carpenter,1 year,MORTGAGE,46000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067943,,home_improvement,Home improvement,030xx,NH,3.13,0.0,Jun-2012,670.0,674.0,0.0,,,7.0,0.0,7809.0,43.6,9.0,w,0.0,0.0,2819.59,2819.59,122.8,1205.3,20.13,1471.36,264.8448,May-2017,464.21,,Jul-2017,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,112424.0,3.0,0.0,1.0,1.0,7.0,0.0,,2.0,3.0,3242.0,44.0,17900.0,1.0,0.0,3.0,5.0,16061.0,4091.0,65.6,0.0,0.0,50.0,51.0,6.0,3.0,1.0,6.0,,6.0,,0.0,3.0,3.0,5.0,5.0,2.0,6.0,6.0,3.0,7.0,0.0,0.0,0.0,4.0,100.0,60.0,0.0,0.0,122660.0,7809.0,11900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398487,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,Merchandising Manager,< 1 year,RENT,92500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398487,,credit_card,Credit card refinancing,372xx,TN,18.28,1.0,Apr-2001,700.0,704.0,0.0,11.0,,5.0,0.0,9960.0,89.7,23.0,f,2197.25,2197.25,9418.59,9418.59,7802.75,1615.84,0.0,0.0,0.0,Mar-2019,324.98,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,103639.0,0.0,2.0,0.0,0.0,43.0,93679.0,48.0,1.0,3.0,5960.0,58.0,11100.0,0.0,0.0,2.0,3.0,20728.0,67.0,99.3,0.0,0.0,156.0,185.0,10.0,10.0,1.0,10.0,,10.0,11.0,0.0,2.0,3.0,2.0,5.0,15.0,3.0,7.0,3.0,5.0,0.0,0.0,0.0,1.0,95.7,100.0,0.0,0.0,136511.0,103639.0,9500.0,125411.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90765268,,18000.0,18000.0,18000.0, 36 months,19.99,668.86,D,D4,Director of New Store Development,3 years,OWN,85000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90765268,,debt_consolidation,Debt consolidation,400xx,KY,21.7,0.0,Oct-1997,675.0,679.0,1.0,50.0,,12.0,0.0,38596.0,68.0,23.0,f,0.0,0.0,6803.52,6803.52,2712.69,1949.34,0.0,2141.49,385.4682,May-2017,668.86,,Nov-2017,549.0,545.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,39336.0,1.0,1.0,0.0,0.0,37.0,740.0,5.0,2.0,2.0,9783.0,54.0,56800.0,0.0,0.0,2.0,2.0,3278.0,12909.0,74.6,0.0,0.0,153.0,227.0,6.0,6.0,2.0,6.0,,1.0,,1.0,7.0,9.0,8.0,9.0,2.0,11.0,19.0,9.0,12.0,0.0,0.0,0.0,2.0,95.7,87.5,0.0,0.0,72400.0,39336.0,50900.0,15600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90304398,,10000.0,10000.0,10000.0, 60 months,10.99,217.38,B,B4,Investigator,2 years,MORTGAGE,86000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90304398,,other,Other,706xx,LA,23.77,0.0,Jun-2001,715.0,719.0,0.0,54.0,,11.0,0.0,13686.0,79.6,22.0,w,5843.19,5843.19,6297.91,6297.91,4156.81,2141.1,0.0,0.0,0.0,Mar-2019,217.38,Apr-2019,Mar-2019,739.0,735.0,0.0,54.0,1.0,Individual,,,,0.0,51.0,156884.0,1.0,5.0,1.0,3.0,2.0,49192.0,62.0,0.0,0.0,3025.0,65.0,17200.0,1.0,0.0,1.0,3.0,14262.0,791.0,84.8,0.0,0.0,118.0,183.0,29.0,2.0,2.0,123.0,54.0,1.0,54.0,1.0,2.0,5.0,2.0,4.0,12.0,5.0,8.0,5.0,11.0,0.0,0.0,0.0,1.0,90.9,100.0,0.0,0.0,194179.0,62878.0,5200.0,79754.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90288154,,8000.0,8000.0,8000.0, 36 months,10.99,261.88,B,B4,analyst,5 years,MORTGAGE,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90288154,,home_improvement,Home improvement,100xx,NY,1.39,0.0,Aug-2003,740.0,744.0,0.0,,,6.0,0.0,2733.0,24.8,11.0,w,0.0,0.0,8616.890600405899,8616.89,8000.0,616.89,0.0,0.0,0.0,Sep-2017,0.73,,Sep-2017,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,101911.0,0.0,0.0,0.0,0.0,,0.0,,1.0,6.0,2725.0,25.0,11000.0,2.0,2.0,7.0,6.0,16985.0,8267.0,24.8,0.0,0.0,,149.0,12.0,12.0,3.0,12.0,,6.0,,0.0,2.0,2.0,5.0,7.0,0.0,5.0,8.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,0.0,110841.0,2733.0,11000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90875256,,10000.0,10000.0,10000.0, 60 months,17.99,253.88,D,D2,Sr. Policy Specialist,9 years,OWN,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90875256,,debt_consolidation,Debt consolidation,641xx,MO,18.58,0.0,Sep-2003,670.0,674.0,0.0,38.0,,7.0,0.0,30743.0,87.1,9.0,f,6258.62,6258.62,7360.26,7360.26,3741.38,3618.88,0.0,0.0,0.0,Mar-2019,253.88,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,97592.0,0.0,0.0,0.0,0.0,130.0,0.0,,0.0,1.0,16977.0,87.0,35300.0,0.0,0.0,2.0,1.0,13942.0,3771.0,88.8,0.0,0.0,130.0,156.0,14.0,14.0,1.0,14.0,,2.0,,0.0,5.0,6.0,5.0,5.0,1.0,6.0,7.0,6.0,7.0,0.0,0.0,0.0,0.0,88.9,80.0,0.0,0.0,129524.0,30743.0,33800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90745295,,10000.0,10000.0,10000.0, 36 months,19.99,371.59,D,D4,Recruiter,2 years,MORTGAGE,90000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90745295,,debt_consolidation,Debt consolidation,605xx,IL,20.94,1.0,Nov-1995,670.0,674.0,0.0,16.0,,13.0,0.0,15127.0,51.3,25.0,w,2435.9,2435.9,10765.0,10765.0,7564.1,3200.9,0.0,0.0,0.0,Mar-2019,371.59,Apr-2019,Mar-2019,654.0,650.0,0.0,41.0,1.0,Individual,,,,0.0,8060.0,306299.0,3.0,5.0,1.0,2.0,6.0,98009.0,84.0,3.0,4.0,4092.0,71.0,27800.0,5.0,3.0,7.0,7.0,23561.0,11347.0,40.4,0.0,0.0,162.0,250.0,3.0,3.0,4.0,7.0,16.0,4.0,16.0,1.0,4.0,5.0,5.0,5.0,12.0,7.0,9.0,5.0,13.0,0.0,0.0,0.0,5.0,95.2,20.0,0.0,0.0,326851.0,113136.0,21700.0,104966.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491228,,4500.0,4500.0,4500.0, 36 months,11.49,148.38,B,B5,Phone Banker,1 year,RENT,30200.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491228,,credit_card,Credit card refinancing,553xx,MN,13.31,0.0,Jan-2012,675.0,679.0,0.0,,,7.0,0.0,5309.0,74.8,7.0,w,0.0,0.0,5105.048377328,5105.05,4500.0,605.05,0.0,0.0,0.0,Mar-2018,2733.84,,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,19632.0,1.0,2.0,0.0,0.0,48.0,14323.0,92.0,1.0,2.0,4502.0,87.0,7100.0,0.0,0.0,0.0,2.0,3272.0,98.0,98.2,0.0,0.0,52.0,56.0,6.0,6.0,0.0,20.0,,,,0.0,2.0,3.0,2.0,2.0,2.0,5.0,5.0,3.0,7.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,22600.0,19632.0,5300.0,15500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90250652,,3050.0,3050.0,3050.0, 36 months,13.99,104.23,C,C3,Gardner,10+ years,MORTGAGE,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90250652,,home_improvement,Home improvement,903xx,CA,20.34,0.0,Aug-2001,660.0,664.0,1.0,,66.0,18.0,1.0,15412.0,50.9,30.0,w,696.98,696.98,3020.3,3020.3,2353.02,667.28,0.0,0.0,0.0,Mar-2019,104.23,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,0.0,15412.0,1.0,0.0,0.0,0.0,,0.0,,5.0,8.0,2543.0,51.0,30300.0,0.0,0.0,2.0,8.0,907.0,3064.0,81.1,0.0,0.0,,181.0,1.0,1.0,0.0,25.0,,1.0,,0.0,9.0,14.0,9.0,18.0,0.0,18.0,30.0,14.0,18.0,0.0,0.0,0.0,5.0,100.0,66.7,1.0,0.0,30300.0,15412.0,16200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90209104,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,realtor,10+ years,OWN,150000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90209104,,major_purchase,Major purchase,600xx,IL,12.77,0.0,Oct-2001,670.0,674.0,0.0,29.0,46.0,4.0,1.0,17337.0,96.9,8.0,w,0.0,0.0,8506.78,8506.78,2080.02,2831.66,41.17,3553.93,639.7074,May-2017,864.48,,May-2017,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,33515.0,0.0,1.0,0.0,0.0,46.0,16178.0,53.0,0.0,0.0,492.0,70.0,17900.0,0.0,5.0,0.0,0.0,8379.0,133.0,85.2,0.0,0.0,46.0,179.0,47.0,46.0,0.0,113.0,,,29.0,0.0,2.0,3.0,2.0,3.0,1.0,3.0,7.0,3.0,4.0,0.0,0.0,0.0,0.0,83.3,50.0,0.0,1.0,48249.0,33515.0,900.0,30349.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90144280,,15000.0,15000.0,15000.0, 36 months,12.79,503.9,C,C1,manufacturing associate,10+ years,RENT,48000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90144280,,credit_card,Credit card refinancing,448xx,OH,18.23,0.0,Sep-2005,670.0,674.0,1.0,51.0,,10.0,0.0,14355.0,50.7,19.0,w,0.0,0.0,17314.7781197579,17314.78,15000.0,2314.78,0.0,0.0,0.0,Apr-2018,8420.8,,Apr-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,16320.0,1.0,1.0,0.0,0.0,29.0,1965.0,22.0,4.0,9.0,3373.0,44.0,28300.0,0.0,0.0,4.0,9.0,1632.0,127.0,96.4,0.0,0.0,132.0,131.0,4.0,4.0,0.0,19.0,51.0,4.0,51.0,0.0,1.0,9.0,1.0,7.0,4.0,9.0,15.0,9.0,10.0,0.0,0.0,0.0,4.0,78.9,100.0,0.0,0.0,37141.0,16320.0,3500.0,8841.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694797,,12000.0,12000.0,12000.0, 36 months,9.49,384.34,B,B2,Web Technology App Lead,4 years,MORTGAGE,87000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694797,,debt_consolidation,Debt consolidation,440xx,OH,21.35,0.0,Oct-2004,750.0,754.0,0.0,30.0,,11.0,0.0,7091.0,40.5,34.0,w,0.0,0.0,13382.1630238428,13382.16,12000.0,1382.16,0.0,0.0,0.0,Apr-2018,6854.71,,Apr-2018,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,234637.0,0.0,5.0,1.0,2.0,11.0,54208.0,63.0,0.0,1.0,7046.0,59.0,17499.0,1.0,0.0,4.0,3.0,23464.0,8053.0,46.7,0.0,0.0,143.0,129.0,24.0,11.0,1.0,63.0,30.0,11.0,30.0,0.0,1.0,2.0,2.0,5.0,17.0,4.0,15.0,2.0,11.0,0.0,0.0,0.0,1.0,97.1,0.0,0.0,0.0,288814.0,61299.0,15099.0,86111.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681391,,2300.0,2300.0,2300.0, 36 months,8.99,73.13,B,B1,warehouse worker,10+ years,RENT,28000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681391,,other,Other,240xx,VA,20.96,0.0,Jul-2006,710.0,714.0,0.0,,65.0,6.0,1.0,1526.0,23.1,14.0,w,0.0,0.0,2492.9349141092002,2492.93,2300.0,192.93,0.0,0.0,0.0,Nov-2017,1618.24,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,13092.0,1.0,2.0,1.0,2.0,2.0,11566.0,65.0,0.0,1.0,626.0,54.0,6600.0,0.0,1.0,0.0,3.0,2182.0,4174.0,13.0,0.0,0.0,122.0,51.0,22.0,2.0,0.0,34.0,,22.0,,0.0,1.0,2.0,3.0,3.0,10.0,4.0,4.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,0.0,1.0,0.0,24298.0,13092.0,4800.0,17698.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90722234,,2000.0,2000.0,2000.0, 36 months,10.49,65.0,B,B3,,,RENT,9061.2,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90722234,,debt_consolidation,Debt consolidation,161xx,PA,20.53,0.0,Feb-2007,665.0,669.0,0.0,,,3.0,0.0,1571.0,33.4,11.0,w,0.0,0.0,2314.8615036752,2314.86,2000.0,314.86,0.0,0.0,0.0,Jan-2019,626.03,,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,283.0,3453.0,0.0,1.0,1.0,1.0,11.0,1882.0,78.0,0.0,1.0,751.0,49.0,4700.0,0.0,0.0,0.0,2.0,1151.0,349.0,68.3,0.0,0.0,115.0,109.0,22.0,11.0,0.0,109.0,,22.0,,0.0,1.0,2.0,1.0,3.0,6.0,2.0,5.0,2.0,3.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,7100.0,3453.0,1100.0,2400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945261,,6000.0,6000.0,6000.0, 36 months,12.79,201.56,C,C1,Satellite TV Installer Tech,2 years,RENT,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945261,,debt_consolidation,Debt consolidation,718xx,AR,22.21,0.0,Oct-2006,685.0,689.0,2.0,34.0,,11.0,0.0,5968.0,22.6,20.0,w,0.0,0.0,2212.9,2212.9,1597.01,615.89,0.0,0.0,0.0,Sep-2017,201.56,,Mar-2019,499.0,0.0,0.0,34.0,1.0,Individual,,,,0.0,0.0,36235.0,1.0,3.0,0.0,1.0,21.0,30267.0,83.0,3.0,4.0,1728.0,58.0,26400.0,0.0,10.0,7.0,5.0,3294.0,6474.0,34.6,0.0,0.0,119.0,101.0,5.0,5.0,0.0,5.0,,0.0,34.0,1.0,5.0,7.0,6.0,6.0,11.0,8.0,9.0,7.0,11.0,0.0,0.0,0.0,3.0,95.0,0.0,0.0,0.0,62745.0,36235.0,9900.0,36345.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90785199,,3000.0,3000.0,3000.0, 36 months,10.99,98.21,B,B4,Signal Design Engineer,10+ years,RENT,87000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90785199,,other,Other,640xx,MO,5.5,0.0,Oct-2000,680.0,684.0,1.0,49.0,,3.0,0.0,988.0,30.9,17.0,w,662.64,662.64,2846.26,2846.26,2337.36,508.9,0.0,0.0,0.0,Mar-2019,98.21,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,379.0,16725.0,0.0,1.0,0.0,1.0,13.0,15737.0,86.0,0.0,2.0,0.0,77.0,3200.0,1.0,1.0,3.0,3.0,5575.0,,,0.0,0.0,175.0,191.0,17.0,13.0,1.0,,,0.0,,0.0,0.0,1.0,0.0,4.0,10.0,2.0,6.0,1.0,3.0,0.0,0.0,0.0,0.0,94.1,,0.0,0.0,21602.0,16725.0,0.0,18402.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90785116,,16000.0,16000.0,16000.0, 60 months,15.59,385.62,C,C5,Special Claims Representative,4 years,RENT,73000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90785116,,debt_consolidation,Debt consolidation,193xx,PA,15.75,0.0,Mar-2004,685.0,689.0,0.0,,,11.0,0.0,18335.0,50.0,14.0,w,9797.6,9797.6,11250.94,11250.94,6202.4,5048.54,0.0,0.0,0.0,Mar-2019,385.62,Apr-2019,Mar-2019,629.0,625.0,0.0,,1.0,Individual,,,,0.0,92.0,40397.0,0.0,3.0,1.0,1.0,12.0,22062.0,83.0,2.0,9.0,8083.0,68.0,30000.0,0.0,1.0,1.0,10.0,3672.0,5126.0,72.3,0.0,0.0,150.0,22.0,11.0,11.0,0.0,13.0,,11.0,,0.0,4.0,6.0,4.0,4.0,5.0,8.0,9.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,56736.0,40397.0,22900.0,26736.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561653,,2800.0,2800.0,2800.0, 36 months,14.49,96.37,C,C4,Financial Analyst,2 years,MORTGAGE,61000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561653,,home_improvement,Home improvement,331xx,FL,12.9,0.0,Oct-2010,715.0,719.0,0.0,,,6.0,0.0,8437.0,31.4,6.0,w,0.0,0.0,3261.2542421278004,3261.25,2800.0,461.25,0.0,0.0,0.0,Feb-2018,1817.95,,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,34320.0,1.0,1.0,1.0,1.0,10.0,23562.0,89.0,1.0,3.0,5323.0,61.0,26900.0,2.0,0.0,2.0,5.0,5720.0,17871.0,31.5,0.0,0.0,10.0,71.0,5.0,5.0,0.0,16.0,,10.0,,0.0,2.0,3.0,3.0,3.0,1.0,4.0,4.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,55996.0,34320.0,26100.0,26354.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087594,,6000.0,6000.0,6000.0, 36 months,11.49,197.83,B,B5,Night Manger ,3 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087594,,debt_consolidation,Debt consolidation,700xx,LA,12.1,0.0,Sep-1998,670.0,674.0,0.0,,,12.0,0.0,4593.0,62.9,15.0,f,1333.16,1333.16,5733.24,5733.24,4666.84,1066.4,0.0,0.0,0.0,Mar-2019,197.83,Apr-2019,Mar-2019,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,209409.0,3.0,5.0,0.0,0.0,27.0,29500.0,92.0,2.0,3.0,1253.0,86.0,7300.0,3.0,0.0,3.0,4.0,17451.0,727.0,73.1,0.0,0.0,216.0,30.0,2.0,2.0,1.0,25.0,,0.0,,0.0,2.0,5.0,2.0,2.0,8.0,6.0,6.0,5.0,12.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,215277.0,34093.0,2700.0,32142.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90122055,,6000.0,6000.0,6000.0, 36 months,12.79,201.56,C,C1,overnight stocker,10+ years,OWN,25000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90122055,,other,Other,725xx,AR,23.76,0.0,Nov-2005,725.0,729.0,0.0,,,7.0,0.0,12425.0,90.0,13.0,w,1354.93,1354.93,5859.97,5859.97,4645.07,1214.9,0.0,0.0,0.0,Mar-2019,201.56,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,12543.0,0.0,1.0,0.0,0.0,25.0,118.0,4.0,1.0,2.0,1963.0,74.0,13800.0,0.0,0.0,1.0,2.0,1792.0,244.0,94.9,0.0,0.0,123.0,130.0,12.0,12.0,0.0,12.0,,10.0,,0.0,3.0,5.0,3.0,3.0,6.0,6.0,7.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,16880.0,12543.0,4800.0,3080.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945178,,6000.0,6000.0,6000.0, 36 months,10.49,194.99,B,B3,Er registration clerk,10+ years,OWN,44000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945178,,credit_card,Credit card refinancing,449xx,OH,15.22,0.0,Mar-1998,675.0,679.0,0.0,42.0,76.0,9.0,2.0,6465.0,53.4,21.0,w,0.0,0.0,6559.4066516273,6559.41,6000.0,559.41,0.0,0.0,0.0,Oct-2017,4418.02,,Oct-2018,779.0,775.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,23932.0,2.0,1.0,0.0,2.0,13.0,17467.0,89.0,2.0,7.0,1499.0,76.0,12100.0,6.0,2.0,6.0,9.0,2659.0,862.0,79.5,0.0,0.0,135.0,222.0,1.0,1.0,2.0,15.0,,0.0,69.0,4.0,3.0,5.0,3.0,4.0,4.0,8.0,15.0,5.0,9.0,0.0,0.0,0.0,2.0,81.0,66.7,1.0,0.0,31669.0,23932.0,4200.0,19569.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90885232,,13650.0,13650.0,13650.0, 60 months,9.49,286.61,B,B2,Master Plumber,2 years,OWN,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90885232,,credit_card,Credit card refinancing,594xx,MT,5.23,0.0,Mar-2011,700.0,704.0,0.0,,75.0,9.0,1.0,5861.0,22.2,15.0,w,7477.09,7477.09,8593.7,8593.7,6172.91,2420.79,0.0,0.0,0.0,Mar-2019,286.61,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,110200.0,2.0,0.0,0.0,1.0,22.0,0.0,,1.0,2.0,2407.0,22.0,26400.0,3.0,7.0,4.0,4.0,12244.0,9160.0,36.8,0.0,0.0,62.0,66.0,4.0,4.0,1.0,4.0,,7.0,,0.0,4.0,6.0,4.0,4.0,4.0,8.0,10.0,7.0,9.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,1.0,131400.0,5861.0,14500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251497,,7850.0,7850.0,7850.0, 36 months,21.49,297.73,D,D5,Project Specialist 2,10+ years,OWN,43000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251497,,debt_consolidation,Debt consolidation,242xx,VA,32.69,0.0,May-1996,670.0,674.0,1.0,31.0,,9.0,0.0,11233.0,83.2,40.0,w,1942.4,1942.4,8657.58,8657.58,5907.6,2749.98,0.0,0.0,0.0,Mar-2019,297.73,Apr-2019,Mar-2019,659.0,655.0,0.0,31.0,1.0,Individual,,,,0.0,243.0,87299.0,2.0,3.0,2.0,5.0,4.0,18922.0,88.0,0.0,0.0,7796.0,86.0,13500.0,1.0,15.0,1.0,5.0,9700.0,1369.0,88.4,0.0,0.0,151.0,244.0,49.0,4.0,2.0,49.0,36.0,1.0,31.0,1.0,3.0,5.0,3.0,7.0,24.0,5.0,14.0,5.0,9.0,0.0,0.0,0.0,2.0,82.5,66.7,0.0,0.0,115055.0,30155.0,11800.0,21555.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521566,,6000.0,6000.0,6000.0, 36 months,9.49,192.17,B,B2,Administrative Office Associate I,10+ years,MORTGAGE,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521566,,credit_card,Credit card refinancing,234xx,VA,12.48,0.0,Aug-2011,700.0,704.0,0.0,,,8.0,0.0,3062.0,25.3,10.0,w,0.0,0.0,6755.7204245231005,6755.72,6000.0,755.72,0.0,0.0,0.0,Jun-2018,3087.09,,Oct-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,135901.0,1.0,1.0,1.0,2.0,9.0,17468.0,89.0,1.0,2.0,811.0,65.0,12100.0,1.0,1.0,2.0,5.0,16988.0,5719.0,18.3,0.0,0.0,14.0,53.0,12.0,5.0,2.0,19.0,,6.0,,0.0,2.0,5.0,3.0,3.0,2.0,6.0,6.0,5.0,8.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,147661.0,20530.0,7000.0,19561.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89999424,,25000.0,25000.0,25000.0, 36 months,8.59,790.24,A,A5,Director of Sales,10+ years,MORTGAGE,300000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89999424,,debt_consolidation,Debt consolidation,900xx,CA,2.15,0.0,Apr-2003,680.0,684.0,0.0,30.0,,11.0,0.0,19541.0,53.5,21.0,w,0.0,0.0,27057.5321446938,27057.53,25000.0,2057.53,0.0,0.0,0.0,Nov-2017,16879.86,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,475057.0,0.0,0.0,0.0,1.0,23.0,0.0,,0.0,1.0,7645.0,54.0,36500.0,1.0,2.0,2.0,3.0,43187.0,11239.0,58.5,0.0,0.0,161.0,152.0,22.0,8.0,2.0,84.0,30.0,12.0,30.0,0.0,6.0,8.0,6.0,8.0,5.0,10.0,14.0,8.0,11.0,0.0,0.0,0.0,1.0,95.0,50.0,0.0,0.0,496500.0,19541.0,27100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89938294,,16000.0,16000.0,16000.0, 36 months,13.49,542.89,C,C2,NC Programming,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89938294,,credit_card,Credit card refinancing,167xx,PA,25.29,0.0,Nov-2000,680.0,684.0,0.0,,,14.0,0.0,17388.0,39.8,29.0,w,0.0,0.0,17985.2205411132,17985.22,16000.0,1985.22,0.0,0.0,0.0,Oct-2017,12025.42,,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,143761.0,2.0,2.0,2.0,3.0,3.0,32733.0,86.0,1.0,3.0,5015.0,61.0,43700.0,1.0,8.0,4.0,7.0,10269.0,18524.0,48.0,0.0,0.0,190.0,137.0,1.0,1.0,2.0,1.0,,2.0,,0.0,7.0,8.0,8.0,9.0,14.0,11.0,13.0,8.0,14.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,183754.0,50121.0,35600.0,38054.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90775188,,18000.0,18000.0,18000.0, 36 months,12.79,604.68,C,C1,CPI supervisor ,10+ years,MORTGAGE,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90775188,,debt_consolidation,Debt consolidation,322xx,FL,19.56,7.0,Oct-2000,665.0,669.0,0.0,19.0,,14.0,0.0,9330.0,93.3,35.0,w,0.0,0.0,10641.11,10641.11,6675.83,2389.97,0.0,1575.31,283.5558,Jan-2018,613.07,,Jul-2018,524.0,520.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,48876.0,2.0,9.0,0.0,0.0,44.0,39546.0,74.0,2.0,2.0,4190.0,77.0,10000.0,0.0,0.0,7.0,2.0,3491.0,356.0,94.3,0.0,0.0,191.0,190.0,0.0,0.0,0.0,27.0,,2.0,,7.0,2.0,5.0,2.0,4.0,27.0,5.0,8.0,5.0,14.0,0.0,0.0,0.0,2.0,37.1,100.0,0.0,0.0,63604.0,48876.0,6200.0,53604.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88989707,,17500.0,17500.0,17500.0, 60 months,14.49,411.66,C,C4,EMS Adminstrator,10+ years,MORTGAGE,126000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88989707,,credit_card,Credit card refinancing,761xx,TX,22.97,1.0,May-1985,675.0,679.0,1.0,9.0,,14.0,0.0,39848.0,86.4,34.0,w,10592.08,10592.08,11924.05,11924.05,6907.92,5016.13,0.0,0.0,0.0,Mar-2019,411.66,Apr-2019,Mar-2019,684.0,680.0,0.0,84.0,1.0,Individual,,,,0.0,0.0,215830.0,1.0,2.0,0.0,1.0,23.0,12474.0,32.0,0.0,1.0,7172.0,63.0,49900.0,1.0,6.0,4.0,3.0,15416.0,651.0,95.6,0.0,0.0,149.0,376.0,17.0,3.0,5.0,43.0,,5.0,9.0,1.0,3.0,10.0,3.0,7.0,8.0,10.0,18.0,10.0,14.0,0.0,0.0,0.0,1.0,87.9,100.0,0.0,0.0,258789.0,66691.0,14700.0,39297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403620,,5000.0,5000.0,5000.0, 36 months,13.99,170.87,C,C3,Legal Assistant,4 years,RENT,48568.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403620,,debt_consolidation,Debt consolidation,333xx,FL,11.32,0.0,Apr-2002,665.0,669.0,1.0,,56.0,3.0,1.0,3185.0,74.1,10.0,w,0.0,0.0,5892.194865175999,5892.19,5000.0,892.19,0.0,0.0,0.0,May-2018,2820.42,,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,2544.0,16336.0,0.0,1.0,0.0,1.0,21.0,13151.0,58.0,0.0,2.0,1866.0,61.0,4300.0,1.0,0.0,1.0,3.0,5445.0,1115.0,74.1,0.0,0.0,123.0,173.0,14.0,14.0,1.0,14.0,,4.0,,0.0,2.0,2.0,2.0,4.0,5.0,2.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,26974.0,16336.0,4300.0,22674.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90218808,,25750.0,25750.0,25750.0, 36 months,11.49,849.01,B,B5,Vice President of Contract Services,10+ years,RENT,131300.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90218808,,credit_card,Credit card refinancing,080xx,NJ,16.57,0.0,Jul-1996,660.0,664.0,2.0,37.0,,12.0,0.0,19524.0,43.9,34.0,w,0.0,0.0,18370.47,18370.47,11754.93,3550.94,0.0,3064.6,551.628,Apr-2018,849.01,,Mar-2019,524.0,520.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,48979.0,1.0,3.0,1.0,4.0,11.0,29455.0,82.0,2.0,10.0,4297.0,61.0,44500.0,1.0,2.0,8.0,14.0,4082.0,4361.0,69.5,0.0,0.0,127.0,242.0,3.0,3.0,1.0,20.0,43.0,0.0,43.0,2.0,3.0,7.0,3.0,8.0,12.0,9.0,21.0,7.0,12.0,0.0,0.0,0.0,3.0,87.5,33.3,0.0,0.0,80600.0,48979.0,14300.0,36100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,ACTIVE,Oct-2018,7355.0,50.0,12.0 +90327780,,20000.0,20000.0,20000.0, 36 months,10.99,654.68,B,B4,Salesperson ,2 years,RENT,55000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90327780,,debt_consolidation,Debt consolidation,066xx,CT,10.04,0.0,Feb-2005,720.0,724.0,1.0,,,13.0,0.0,6823.0,18.1,23.0,w,5632.92,5632.92,17664.15,17664.15,14367.08,3297.07,0.0,0.0,0.0,Jan-2019,654.68,Apr-2019,Mar-2019,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,20929.0,3.0,1.0,1.0,1.0,6.0,13697.0,97.0,2.0,5.0,3332.0,39.0,37800.0,2.0,0.0,7.0,7.0,1610.0,20077.0,25.4,0.0,0.0,139.0,114.0,2.0,2.0,0.0,2.0,,6.0,,0.0,3.0,3.0,6.0,8.0,6.0,10.0,14.0,3.0,13.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,54291.0,20929.0,26900.0,14167.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90074445,,12000.0,12000.0,12000.0, 60 months,12.79,271.75,C,C1,ADRC Supervisor,10+ years,MORTGAGE,74500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90074445,,debt_consolidation,Debt consolidation,315xx,GA,13.37,0.0,Jul-1996,660.0,664.0,0.0,,44.0,6.0,1.0,6081.0,25.7,26.0,f,0.0,0.0,13518.9413357545,13518.94,12000.0,1518.94,0.0,0.0,0.0,Oct-2017,10538.22,,Oct-2018,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,32798.0,0.0,1.0,0.0,1.0,14.0,26717.0,,0.0,1.0,3043.0,26.0,23700.0,3.0,3.0,3.0,2.0,8200.0,17619.0,25.7,0.0,0.0,125.0,242.0,15.0,14.0,0.0,15.0,,3.0,,0.0,2.0,2.0,3.0,11.0,11.0,5.0,15.0,2.0,5.0,0.0,0.0,0.0,0.0,100.0,33.3,1.0,0.0,59351.0,32798.0,23700.0,35651.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90855262,,35000.0,35000.0,35000.0, 36 months,9.49,1120.99,B,B2,SR. Regional Mngr,10+ years,MORTGAGE,147000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90855262,,credit_card,Credit card refinancing,662xx,KS,13.14,0.0,Mar-2003,675.0,679.0,1.0,,24.0,20.0,2.0,37823.0,45.2,34.0,w,0.0,0.0,38422.439675544505,38422.44,35000.0,3422.44,0.0,0.0,0.0,Jan-2018,89.18,,Jan-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,383472.0,1.0,2.0,0.0,2.0,15.0,38351.0,84.0,1.0,3.0,14470.0,59.0,83700.0,0.0,1.0,1.0,5.0,21304.0,28926.0,56.2,0.0,0.0,162.0,149.0,4.0,4.0,2.0,4.0,,4.0,,0.0,7.0,9.0,10.0,13.0,6.0,17.0,26.0,9.0,20.0,0.0,0.0,0.0,1.0,100.0,44.4,0.0,2.0,456933.0,76174.0,66100.0,45483.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414463,,12100.0,12100.0,12100.0, 36 months,8.59,382.48,A,A5,Driver,10+ years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414463,,credit_card,Credit card refinancing,106xx,NY,26.82,1.0,Jun-2000,715.0,719.0,0.0,23.0,,9.0,0.0,44523.0,46.3,18.0,w,2602.0,2602.0,11083.95,11083.95,9498.0,1585.95,0.0,0.0,0.0,Mar-2019,382.48,Apr-2019,Mar-2019,714.0,710.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,372533.0,0.0,1.0,0.0,0.0,26.0,6306.0,31.0,0.0,0.0,33496.0,39.0,57800.0,0.0,0.0,0.0,0.0,41393.0,5901.0,61.5,0.0,0.0,138.0,195.0,43.0,26.0,2.0,104.0,,,,1.0,2.0,3.0,4.0,4.0,6.0,7.0,10.0,4.0,9.0,0.0,0.0,1.0,0.0,94.4,50.0,0.0,0.0,494812.0,50829.0,48000.0,20640.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90196630,,35000.0,35000.0,35000.0, 60 months,22.39,974.44,E,E1,Board Operator,10+ years,MORTGAGE,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90196630,,debt_consolidation,Debt consolidation,775xx,TX,24.24,0.0,May-2006,700.0,704.0,1.0,46.0,,10.0,0.0,6062.0,41.2,40.0,w,0.0,0.0,35261.22,35261.22,35000.0,261.22,0.0,0.0,0.0,Oct-2016,35304.76,,Sep-2016,704.0,700.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,209952.0,1.0,5.0,0.0,6.0,14.0,63888.0,71.0,2.0,3.0,5874.0,67.0,14700.0,3.0,12.0,1.0,10.0,20995.0,326.0,94.7,0.0,0.0,123.0,124.0,4.0,4.0,4.0,4.0,,2.0,59.0,1.0,1.0,2.0,1.0,2.0,30.0,4.0,6.0,2.0,10.0,0.0,0.0,0.0,3.0,95.0,100.0,0.0,0.0,253954.0,69950.0,6200.0,90254.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88861755,,30000.0,30000.0,30000.0, 60 months,23.99,862.87,E,E2,Executive Assistant,4 years,OWN,90000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88861755,,credit_card,Credit card refinancing,117xx,NY,28.99,1.0,Feb-1993,685.0,689.0,0.0,15.0,,28.0,0.0,49570.0,62.6,36.0,w,19799.64,19799.64,25070.35,25070.35,10200.36,14869.99,0.0,0.0,0.0,Mar-2019,862.87,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,62477.0,0.0,3.0,1.0,2.0,12.0,12907.0,48.0,0.0,1.0,8676.0,59.0,79200.0,0.0,0.0,0.0,3.0,2403.0,16285.0,73.0,0.0,0.0,25.0,197.0,17.0,12.0,2.0,17.0,,13.0,15.0,0.0,11.0,17.0,13.0,15.0,4.0,24.0,29.0,17.0,28.0,0.0,0.0,0.0,1.0,97.2,61.5,0.0,0.0,106160.0,62477.0,60300.0,26960.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90138672,,11200.0,11200.0,11200.0, 60 months,10.49,240.68,B,B3,Office Manager,10+ years,OWN,47360.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90138672,,credit_card,Credit card refinancing,487xx,MI,25.24,1.0,Apr-1983,710.0,714.0,1.0,11.0,,33.0,0.0,16518.0,18.2,61.0,w,6510.62,6510.62,6973.19,6973.19,4689.38,2283.81,0.0,0.0,0.0,Mar-2019,240.68,Apr-2019,Mar-2019,689.0,685.0,0.0,80.0,1.0,Individual,,,,0.0,0.0,39242.0,5.0,1.0,0.0,3.0,13.0,22724.0,86.0,6.0,17.0,1796.0,34.0,90800.0,3.0,4.0,5.0,20.0,1353.0,51373.0,9.1,0.0,0.0,209.0,401.0,1.0,1.0,0.0,2.0,57.0,2.0,11.0,1.0,9.0,12.0,14.0,23.0,9.0,32.0,52.0,12.0,33.0,0.0,0.0,0.0,6.0,93.4,0.0,0.0,0.0,117163.0,39242.0,56500.0,26363.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90775181,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Dealer,1 year,RENT,46000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90775181,,debt_consolidation,Debt consolidation,891xx,NV,20.35,4.0,Oct-2001,665.0,669.0,0.0,11.0,,12.0,0.0,7574.0,47.3,14.0,f,0.0,0.0,15801.081132626101,15801.08,15000.0,801.08,0.0,0.0,0.0,Jan-2017,14745.8,,Mar-2019,694.0,690.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,35491.0,2.0,1.0,1.0,1.0,6.0,27917.0,96.0,2.0,4.0,4018.0,79.0,16000.0,2.0,0.0,4.0,5.0,3226.0,5026.0,60.1,0.0,0.0,143.0,179.0,0.0,0.0,0.0,0.0,11.0,6.0,11.0,1.0,4.0,4.0,6.0,6.0,3.0,11.0,11.0,4.0,12.0,0.0,0.0,1.0,3.0,64.3,33.3,0.0,0.0,45212.0,35491.0,12600.0,29212.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694011,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,Teacher,6 years,RENT,48000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694011,,credit_card,Credit card refinancing,713xx,LA,23.97,0.0,Nov-2004,670.0,674.0,1.0,57.0,,6.0,0.0,14630.0,82.2,21.0,w,9386.88,9386.88,11028.79,11028.79,5613.12,5415.67,0.0,0.0,0.0,Mar-2019,380.82,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,53234.0,1.0,2.0,0.0,1.0,23.0,38604.0,78.0,2.0,2.0,6753.0,79.0,17800.0,0.0,1.0,1.0,3.0,8872.0,3170.0,82.2,0.0,0.0,142.0,62.0,5.0,5.0,0.0,5.0,,5.0,,0.0,4.0,4.0,4.0,5.0,15.0,4.0,6.0,4.0,6.0,0.0,0.0,0.0,2.0,95.2,75.0,0.0,0.0,67333.0,53234.0,17800.0,49533.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197408,,35000.0,35000.0,35000.0, 60 months,21.49,956.55,D,D5,Feeder Driver,10+ years,OWN,125000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197408,,debt_consolidation,Debt consolidation,922xx,CA,13.97,0.0,Jun-2005,685.0,689.0,0.0,,,12.0,0.0,18006.0,52.3,22.0,w,22603.66,22603.66,27698.16,27698.16,12396.34,15301.82,0.0,0.0,0.0,Mar-2019,956.55,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,74119.0,0.0,2.0,1.0,2.0,11.0,56113.0,87.0,2.0,3.0,10295.0,75.0,34400.0,0.0,1.0,8.0,6.0,6177.0,7386.0,62.3,0.0,0.0,127.0,135.0,10.0,10.0,3.0,10.0,,4.0,,0.0,2.0,4.0,4.0,5.0,6.0,10.0,13.0,4.0,12.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,98776.0,74119.0,19600.0,64376.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191876,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,Smoothtop tech,10+ years,RENT,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191876,,credit_card,Credit card refinancing,370xx,TN,25.63,0.0,Jul-2005,670.0,674.0,0.0,,61.0,29.0,1.0,5014.0,10.0,85.0,w,0.0,0.0,3321.5294100688,3321.53,3000.0,321.53,0.0,0.0,0.0,Aug-2017,2401.18,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,160.0,33411.0,1.0,2.0,2.0,4.0,9.0,28397.0,91.0,2.0,9.0,3770.0,41.0,49900.0,2.0,1.0,7.0,13.0,1336.0,6934.0,37.0,0.0,0.0,112.0,134.0,6.0,6.0,1.0,6.0,,8.0,,0.0,2.0,7.0,7.0,28.0,9.0,27.0,75.0,7.0,28.0,0.0,0.0,0.0,4.0,100.0,16.7,1.0,0.0,81295.0,33411.0,11000.0,31395.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271949,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,Psychiatric Technician ,10+ years,RENT,65000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271949,,debt_consolidation,Debt consolidation,924xx,CA,19.33,0.0,Apr-2000,700.0,704.0,1.0,76.0,,7.0,0.0,7345.0,70.0,12.0,w,0.0,0.0,2779.0,2779.0,1225.26,370.92,0.0,1182.82,212.9076,Mar-2017,320.29,,Sep-2017,644.0,640.0,0.0,76.0,1.0,Individual,,,,0.0,0.0,48506.0,0.0,1.0,0.0,1.0,16.0,41161.0,,0.0,4.0,3427.0,70.0,10500.0,2.0,1.0,3.0,5.0,6929.0,2355.0,75.7,0.0,0.0,197.0,81.0,13.0,13.0,0.0,13.0,,1.0,76.0,1.0,5.0,5.0,5.0,5.0,5.0,6.0,7.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,60.0,0.0,0.0,60195.0,48506.0,9700.0,49695.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90119204,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,Massage Therapist,< 1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90119204,,credit_card,Credit card refinancing,850xx,AZ,21.6,1.0,Mar-1999,675.0,679.0,1.0,11.0,,9.0,0.0,4689.0,50.4,22.0,w,0.0,0.0,3549.8520497575,3549.85,3000.0,549.85,0.0,0.0,0.0,Jun-2018,1604.3,,Jul-2018,689.0,685.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,33646.0,2.0,3.0,0.0,1.0,13.0,28957.0,91.0,2.0,2.0,1758.0,82.0,9300.0,0.0,2.0,2.0,3.0,3738.0,379.0,90.0,0.0,0.0,103.0,210.0,4.0,4.0,2.0,4.0,,0.0,11.0,2.0,2.0,4.0,2.0,2.0,9.0,6.0,11.0,4.0,9.0,0.0,0.0,0.0,2.0,72.7,100.0,0.0,0.0,41072.0,33646.0,3800.0,31772.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150597,,2400.0,2400.0,2400.0, 36 months,8.59,75.87,A,A5,Senior Account Manager,10+ years,MORTGAGE,97000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150597,,small_business,Business,129xx,NY,14.91,0.0,Sep-1982,725.0,729.0,1.0,45.0,,12.0,0.0,41751.0,76.2,21.0,w,515.9,515.9,2199.08,2199.08,1884.1,314.98,0.0,0.0,0.0,Mar-2019,75.87,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,165691.0,1.0,4.0,3.0,3.0,1.0,24202.0,91.0,0.0,0.0,32286.0,81.0,54800.0,0.0,0.0,1.0,3.0,15063.0,4921.0,89.3,0.0,0.0,160.0,408.0,80.0,1.0,4.0,80.0,,1.0,,0.0,3.0,4.0,3.0,4.0,8.0,6.0,9.0,4.0,12.0,0.0,0.0,0.0,3.0,95.2,66.7,0.0,0.0,207349.0,65953.0,46200.0,26549.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88884678,,30000.0,30000.0,30000.0, 36 months,13.49,1017.92,C,C2,Finance Manager,4 years,MORTGAGE,145000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88884678,,debt_consolidation,Debt consolidation,346xx,FL,19.08,1.0,Mar-1996,670.0,674.0,1.0,18.0,59.0,13.0,1.0,27767.0,46.4,35.0,w,6815.28,6815.28,29539.42,29539.42,23184.72,6354.7,0.0,0.0,0.0,Mar-2019,1017.92,Apr-2019,Mar-2019,704.0,700.0,0.0,18.0,1.0,Individual,,,,0.0,0.0,419721.0,3.0,3.0,4.0,6.0,5.0,65257.0,91.0,4.0,6.0,15142.0,71.0,59800.0,1.0,6.0,5.0,13.0,32286.0,23209.0,49.2,0.0,0.0,187.0,246.0,2.0,2.0,5.0,6.0,67.0,5.0,18.0,6.0,3.0,5.0,5.0,9.0,10.0,9.0,20.0,6.0,13.0,0.0,0.0,1.0,8.0,82.9,0.0,0.0,0.0,465951.0,93024.0,45700.0,71459.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90257018,,15000.0,15000.0,15000.0, 36 months,10.49,487.47,B,B3,Food Service Director,10+ years,OWN,65000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90257018,,credit_card,Credit card refinancing,323xx,FL,22.45,0.0,Feb-1991,700.0,704.0,1.0,,,6.0,0.0,12951.0,94.5,16.0,w,3306.75,3306.75,14163.04,14163.04,11693.25,2469.79,0.0,0.0,0.0,Mar-2019,487.47,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,136.0,42709.0,2.0,3.0,1.0,5.0,5.0,29758.0,77.0,1.0,3.0,10689.0,81.0,13700.0,1.0,8.0,2.0,8.0,7118.0,311.0,97.2,0.0,0.0,170.0,307.0,6.0,5.0,0.0,15.0,,3.0,,0.0,1.0,3.0,1.0,1.0,12.0,3.0,4.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,52470.0,42709.0,11000.0,38770.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90039614,,6000.0,6000.0,6000.0, 36 months,11.49,197.83,B,B5,supervisor ,10+ years,OWN,55000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90039614,,vacation,Vacation,078xx,NJ,26.38,0.0,Sep-2000,680.0,684.0,0.0,33.0,28.0,14.0,1.0,5377.0,22.7,34.0,w,1333.16,1333.16,5727.49,5727.49,4666.84,1060.65,0.0,0.0,0.0,Mar-2019,197.83,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,60284.0,2.0,2.0,2.0,3.0,8.0,54907.0,92.0,5.0,10.0,1757.0,72.0,23700.0,5.0,5.0,19.0,13.0,4637.0,11990.0,26.0,0.0,0.0,160.0,192.0,2.0,2.0,2.0,4.0,,0.0,,0.0,5.0,8.0,5.0,11.0,8.0,12.0,24.0,8.0,14.0,0.0,0.0,0.0,7.0,96.2,0.0,1.0,0.0,83375.0,60284.0,16200.0,59675.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90106217,,10400.0,10400.0,10400.0, 60 months,9.49,218.37,B,B2,Hospital Liaison,< 1 year,MORTGAGE,82400.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90106217,,credit_card,Credit card refinancing,060xx,CT,25.91,0.0,Nov-1987,690.0,694.0,0.0,26.0,,19.0,0.0,23873.0,50.5,47.0,w,5982.58,5982.58,6350.62,6350.62,4417.42,1933.2,0.0,0.0,0.0,Mar-2019,218.37,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,220601.0,0.0,4.0,0.0,1.0,21.0,17518.0,53.0,3.0,6.0,8641.0,52.0,47300.0,1.0,2.0,1.0,7.0,12256.0,14042.0,54.3,0.0,0.0,121.0,346.0,8.0,8.0,4.0,8.0,,10.0,26.0,0.0,5.0,10.0,7.0,17.0,10.0,14.0,33.0,10.0,19.0,0.0,0.0,0.0,3.0,97.8,71.4,0.0,0.0,273645.0,41391.0,30700.0,33020.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945202,,10000.0,10000.0,10000.0, 60 months,9.49,209.97,B,B2,Quality manager,10+ years,MORTGAGE,55800.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945202,,debt_consolidation,Debt consolidation,782xx,TX,17.85,0.0,Nov-2001,690.0,694.0,0.0,63.0,,8.0,0.0,10654.0,45.3,30.0,w,0.0,0.0,11411.167064946201,11411.17,10000.0,1411.17,0.0,0.0,0.0,Jun-2018,7395.38,,Nov-2018,744.0,740.0,0.0,,1.0,Individual,,,,0.0,218.0,142702.0,0.0,1.0,0.0,1.0,13.0,36056.0,,0.0,1.0,4903.0,45.0,23500.0,2.0,3.0,0.0,2.0,17838.0,97.0,98.1,0.0,0.0,148.0,178.0,13.0,13.0,2.0,69.0,,13.0,63.0,0.0,1.0,4.0,1.0,2.0,18.0,6.0,10.0,5.0,8.0,0.0,0.0,0.0,0.0,96.7,100.0,0.0,0.0,174170.0,46710.0,5000.0,40137.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89865352,,30000.0,30000.0,30000.0, 60 months,9.49,629.91,B,B2,Engineering Manager,4 years,MORTGAGE,144000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89865352,,debt_consolidation,Debt consolidation,934xx,CA,4.75,0.0,Jun-1992,690.0,694.0,1.0,74.0,,5.0,0.0,21072.0,41.7,15.0,w,0.0,0.0,32489.4331376636,32489.43,30000.0,2489.43,0.0,0.0,0.0,Sep-2017,26229.87,,Sep-2017,729.0,725.0,0.0,75.0,1.0,Individual,,,,0.0,0.0,780565.0,0.0,0.0,0.0,0.0,38.0,0.0,,0.0,0.0,21072.0,42.0,50500.0,1.0,0.0,1.0,0.0,195141.0,29428.0,41.7,0.0,0.0,38.0,291.0,57.0,38.0,3.0,99.0,,0.0,,1.0,1.0,1.0,4.0,7.0,1.0,4.0,10.0,1.0,5.0,0.0,0.0,0.0,0.0,93.3,33.3,0.0,0.0,810500.0,21072.0,50500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621828,,1600.0,1600.0,1600.0, 36 months,13.49,54.29,C,C2,Service Porter,< 1 year,RENT,19200.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621828,,debt_consolidation,Debt consolidation,245xx,VA,20.75,0.0,Oct-2010,755.0,759.0,0.0,,,8.0,0.0,756.0,15.8,8.0,w,0.0,0.0,465.95,465.95,230.29,61.98,0.0,173.68,31.2624,Feb-2017,50.6,,May-2017,539.0,535.0,0.0,,1.0,Individual,,,,0.0,0.0,13326.0,1.0,5.0,0.0,0.0,25.0,12570.0,74.0,1.0,2.0,661.0,61.0,4800.0,0.0,0.0,0.0,2.0,1666.0,1339.0,33.0,0.0,0.0,71.0,33.0,3.0,3.0,0.0,3.0,,15.0,,0.0,1.0,2.0,1.0,1.0,5.0,3.0,3.0,2.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,21695.0,13326.0,2000.0,16895.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90109954,,22000.0,22000.0,22000.0, 60 months,10.49,472.76,B,B3,VP of Operations,4 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90109954,,debt_consolidation,Debt consolidation,232xx,VA,10.52,0.0,May-1998,695.0,699.0,0.0,,,7.0,0.0,21219.0,72.2,19.0,f,0.0,0.0,25611.919825980698,25611.92,22000.0,3611.92,0.0,0.0,0.0,Jul-2018,16079.8,,Jul-2018,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,204617.0,0.0,0.0,0.0,0.0,27.0,0.0,,0.0,0.0,10343.0,72.0,29400.0,0.0,0.0,0.0,1.0,34103.0,1521.0,92.8,0.0,0.0,124.0,220.0,31.0,19.0,4.0,61.0,,21.0,,0.0,3.0,5.0,3.0,4.0,5.0,6.0,10.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,217400.0,21219.0,21000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90250955,,17025.0,17025.0,17025.0, 36 months,18.99,623.99,D,D3,Stylists ,7 years,MORTGAGE,62000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90250955,,debt_consolidation,Debt consolidation,331xx,FL,33.58,0.0,Oct-2002,710.0,714.0,1.0,30.0,,9.0,0.0,81826.0,84.2,20.0,f,0.0,0.0,12461.84,12461.84,8265.88,4195.96,0.0,0.0,0.0,Jun-2018,623.99,,Feb-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,301433.0,0.0,1.0,0.0,0.0,26.0,4205.0,26.0,0.0,1.0,4852.0,56.0,82600.0,1.0,0.0,2.0,1.0,37679.0,148.0,97.0,0.0,0.0,156.0,167.0,17.0,17.0,1.0,32.0,,2.0,,0.0,1.0,6.0,1.0,4.0,5.0,6.0,13.0,6.0,9.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,387500.0,86031.0,5000.0,16200.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Oct-2018,BROKEN,Sep-2018,5069.0,55.01,18.0 +90795163,,13275.0,13275.0,13275.0, 36 months,22.39,509.67,E,E1,Auto Tech,10+ years,MORTGAGE,78000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90795163,,debt_consolidation,Debt consolidation,333xx,FL,20.51,1.0,Jul-2000,660.0,664.0,2.0,13.0,,9.0,0.0,7539.0,82.8,17.0,w,6927.59,6927.59,11358.35,11358.35,6347.41,4959.98,50.96,0.0,0.0,Dec-2018,509.67,Apr-2019,Mar-2019,629.0,625.0,0.0,29.0,1.0,Individual,,,,0.0,0.0,362840.0,1.0,1.0,3.0,5.0,7.0,17037.0,79.0,1.0,2.0,2154.0,80.0,9100.0,4.0,0.0,5.0,7.0,40316.0,1515.0,82.2,0.0,0.0,194.0,129.0,4.0,4.0,3.0,22.0,41.0,0.0,41.0,2.0,4.0,5.0,5.0,6.0,7.0,6.0,7.0,5.0,9.0,0.0,0.0,0.0,4.0,80.0,80.0,0.0,0.0,377395.0,24576.0,8500.0,21600.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,NATURAL_DISASTER,COMPLETED,3.0,194.59,Oct-2017,Dec-2017,Oct-2017,3.0,26.0,Late (16-30 days),583.77,10797.54,331.15,Cash,N,,,,,, +90415679,,14400.0,14400.0,14400.0, 60 months,14.49,338.74,C,C4,HR Generalist,9 years,RENT,42951.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415679,,debt_consolidation,Debt consolidation,937xx,CA,32.13,0.0,Jun-2003,725.0,729.0,0.0,,,11.0,0.0,11639.0,40.3,21.0,w,8238.59,8238.59,10218.52,10218.52,6161.41,4057.11,0.0,0.0,0.0,Mar-2019,338.74,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,41235.0,1.0,3.0,0.0,2.0,13.0,29596.0,72.0,1.0,2.0,7532.0,59.0,28900.0,1.0,2.0,0.0,4.0,3749.0,8221.0,58.5,0.0,0.0,159.0,156.0,6.0,6.0,0.0,22.0,,15.0,,0.0,2.0,3.0,3.0,4.0,9.0,8.0,12.0,3.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,69797.0,41235.0,19800.0,40897.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89917143,,20000.0,20000.0,20000.0, 36 months,8.99,635.91,B,B1,ENGINEER,10+ years,RENT,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89917143,,debt_consolidation,Debt consolidation,483xx,MI,5.38,0.0,May-2012,740.0,744.0,0.0,,,15.0,0.0,8787.0,15.3,19.0,w,0.0,0.0,22165.5795737684,22165.58,20000.0,2165.58,0.0,0.0,0.0,Apr-2018,11365.1,,Apr-2018,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,8787.0,0.0,0.0,0.0,0.0,,0.0,,2.0,8.0,4021.0,15.0,57400.0,0.0,2.0,1.0,8.0,586.0,40601.0,17.1,0.0,0.0,,52.0,9.0,9.0,0.0,9.0,,12.0,,0.0,6.0,8.0,9.0,12.0,0.0,15.0,19.0,8.0,15.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,57400.0,8787.0,49000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88077680,,32000.0,32000.0,32000.0, 60 months,10.99,695.6,B,B4,President,2 years,RENT,250000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88077680,,debt_consolidation,Debt consolidation,112xx,NY,11.68,1.0,Dec-1997,680.0,684.0,0.0,3.0,,12.0,0.0,30953.0,51.7,30.0,w,0.0,0.0,15979.26,15979.26,10252.1,5727.16,0.0,0.0,0.0,Sep-2018,695.6,,Mar-2019,609.0,605.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,69777.0,0.0,3.0,1.0,3.0,8.0,35532.0,65.0,0.0,0.0,18352.0,52.0,59900.0,0.0,0.0,1.0,3.0,6978.0,28411.0,46.3,0.0,0.0,148.0,225.0,70.0,8.0,0.0,105.0,3.0,10.0,3.0,1.0,4.0,5.0,6.0,13.0,8.0,8.0,21.0,5.0,12.0,0.0,0.0,0.0,1.0,93.3,0.0,0.0,0.0,133533.0,69777.0,52900.0,54890.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jan-2019,ACTIVE,Jan-2019,10110.0,45.0,18.0 +90403943,,7200.0,7200.0,7200.0, 36 months,15.59,251.68,C,C5,Communications Specialist,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403943,,debt_consolidation,Debt consolidation,120xx,NY,32.08,0.0,Jan-1998,680.0,684.0,1.0,,,13.0,0.0,39631.0,92.8,34.0,w,1673.48,1673.48,7292.48,7292.48,5526.52,1765.96,0.0,0.0,0.0,Mar-2019,251.68,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,300775.0,1.0,3.0,0.0,2.0,18.0,39121.0,60.0,2.0,3.0,13339.0,73.0,42700.0,0.0,1.0,2.0,5.0,23137.0,0.0,100.1,0.0,0.0,161.0,224.0,0.0,0.0,3.0,17.0,,5.0,,0.0,7.0,9.0,7.0,9.0,14.0,9.0,17.0,9.0,13.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,369357.0,78752.0,37600.0,65657.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541646,,5600.0,5600.0,5600.0, 36 months,17.99,202.43,D,D2,LMF operator ,6 years,MORTGAGE,90000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541646,,other,Other,365xx,AL,23.16,1.0,May-2002,675.0,679.0,1.0,9.0,,12.0,0.0,15214.0,53.0,37.0,w,0.0,0.0,6413.5048083465,6413.5,5600.0,813.5,0.0,0.0,0.0,Aug-2017,4597.23,,Aug-2017,679.0,675.0,1.0,9.0,1.0,Individual,,,,0.0,0.0,212197.0,3.0,4.0,4.0,4.0,3.0,86363.0,85.0,1.0,2.0,6856.0,75.0,28700.0,4.0,4.0,5.0,7.0,21220.0,12892.0,53.1,0.0,0.0,172.0,148.0,2.0,2.0,1.0,2.0,57.0,1.0,57.0,1.0,3.0,4.0,4.0,10.0,19.0,7.0,16.0,4.0,12.0,0.0,0.0,1.0,5.0,94.6,50.0,0.0,0.0,252837.0,101577.0,27500.0,111313.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405205,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,Officer,< 1 year,OWN,85000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405205,,debt_consolidation,Debt consolidation,070xx,NJ,15.42,0.0,Mar-2002,695.0,699.0,1.0,73.0,,27.0,0.0,13891.0,78.0,32.0,w,7355.63,7355.63,11613.06,11613.06,7644.37,3968.69,0.0,0.0,0.0,Mar-2019,400.0,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,477463.0,0.0,21.0,0.0,6.0,14.0,95019.0,112.0,0.0,0.0,8452.0,105.0,17800.0,1.0,0.0,1.0,7.0,17684.0,3909.0,78.0,0.0,0.0,174.0,168.0,146.0,11.0,1.0,146.0,,0.0,,0.0,4.0,4.0,4.0,4.0,26.0,4.0,4.0,4.0,27.0,0.0,0.0,0.0,1.0,96.8,50.0,0.0,0.0,473351.0,111727.0,17800.0,85181.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121850,,6500.0,6500.0,6500.0, 36 months,13.49,220.55,C,C2,driver,10+ years,OWN,85000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121850,,home_improvement,Home improvement,346xx,FL,14.44,1.0,Sep-2001,660.0,664.0,0.0,13.0,75.0,9.0,1.0,2252.0,10.0,32.0,w,1476.62,1476.62,6391.08,6391.08,5023.38,1367.7,0.0,0.0,0.0,Mar-2019,220.55,Apr-2019,Mar-2019,789.0,785.0,0.0,13.0,1.0,Individual,,,,0.0,0.0,42990.0,0.0,2.0,1.0,1.0,7.0,40738.0,85.0,0.0,1.0,765.0,61.0,22500.0,1.0,1.0,0.0,2.0,4777.0,18420.0,9.7,0.0,0.0,160.0,180.0,21.0,7.0,3.0,21.0,,20.0,,1.0,5.0,6.0,5.0,12.0,7.0,7.0,21.0,6.0,9.0,0.0,0.0,1.0,1.0,96.9,0.0,1.0,0.0,70725.0,42990.0,20400.0,48225.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724432,,3200.0,3200.0,3200.0, 36 months,10.49,104.0,B,B3,teacher,10+ years,MORTGAGE,75000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724432,,medical,Medical expenses,430xx,OH,8.05,0.0,Oct-2004,710.0,714.0,0.0,,,7.0,0.0,11111.0,72.1,23.0,w,0.0,0.0,3233.60251348,3233.6,3200.0,33.6,0.0,0.0,0.0,Feb-2017,23.46,,Feb-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,354601.0,0.0,2.0,0.0,0.0,53.0,47329.0,129.0,1.0,2.0,11111.0,112.0,15400.0,0.0,0.0,0.0,3.0,50657.0,1589.0,87.5,0.0,0.0,143.0,116.0,10.0,10.0,4.0,10.0,,22.0,,0.0,1.0,1.0,3.0,7.0,11.0,4.0,8.0,1.0,7.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,356787.0,58440.0,12700.0,36737.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186105,,25900.0,25900.0,25900.0, 36 months,17.99,936.22,D,D2,,,RENT,60000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186105,,house,Home buying,346xx,FL,22.44,4.0,Apr-1988,705.0,709.0,1.0,11.0,,7.0,0.0,7521.0,32.8,21.0,w,0.0,0.0,22585.76,22585.76,15687.75,6898.01,0.0,0.0,0.0,Oct-2018,936.22,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,195667.0,0.0,2.0,0.0,0.0,30.0,5853.0,18.0,0.0,0.0,5940.0,24.0,22900.0,0.0,0.0,3.0,0.0,27952.0,14379.0,34.3,0.0,0.0,121.0,341.0,28.0,28.0,7.0,38.0,22.0,0.0,19.0,0.0,2.0,2.0,3.0,5.0,6.0,4.0,8.0,2.0,7.0,0.0,0.0,0.0,0.0,81.0,66.7,0.0,0.0,254473.0,13374.0,21900.0,33000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721406,,7000.0,7000.0,7000.0, 36 months,15.59,244.69,C,C5,Sergeant,10+ years,OWN,120000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721406,,debt_consolidation,Debt consolidation,117xx,NY,5.15,1.0,May-2006,670.0,674.0,0.0,23.0,,9.0,0.0,5112.0,40.9,13.0,f,0.0,0.0,7709.4695668519,7709.47,7000.0,709.47,0.0,0.0,0.0,Jun-2017,5984.52,,Mar-2019,669.0,665.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,248280.0,3.0,1.0,1.0,1.0,5.0,20919.0,97.0,4.0,4.0,3404.0,77.0,12500.0,0.0,0.0,3.0,5.0,27587.0,6488.0,44.1,0.0,0.0,5.0,124.0,2.0,2.0,2.0,2.0,25.0,5.0,25.0,0.0,5.0,5.0,5.0,5.0,1.0,7.0,10.0,5.0,9.0,0.0,0.0,1.0,5.0,69.2,0.0,0.0,0.0,274552.0,26031.0,11600.0,21490.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721425,,1000.0,1000.0,1000.0, 36 months,15.59,34.96,C,C5,dietary supervisor,4 years,MORTGAGE,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721425,,major_purchase,Major purchase,756xx,TX,10.29,0.0,Jun-2006,695.0,699.0,1.0,,,19.0,0.0,3465.0,26.9,41.0,w,232.27,232.27,1012.97,1012.97,767.73,245.24,0.0,0.0,0.0,Mar-2019,34.96,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,1246.0,4627.0,3.0,1.0,1.0,1.0,6.0,1162.0,89.0,3.0,15.0,711.0,33.0,12900.0,0.0,0.0,2.0,16.0,244.0,1183.0,69.7,0.0,0.0,123.0,110.0,2.0,2.0,0.0,2.0,,2.0,,0.0,6.0,11.0,6.0,6.0,23.0,18.0,18.0,11.0,19.0,0.0,0.0,0.0,4.0,100.0,83.3,0.0,0.0,14200.0,4627.0,3900.0,1300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89777458,,20000.0,20000.0,20000.0, 60 months,25.29,590.44,E,E5,,,MORTGAGE,62000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89777458,,debt_consolidation,Debt consolidation,983xx,WA,24.33,0.0,May-2007,670.0,674.0,1.0,,,7.0,0.0,7447.0,60.5,19.0,f,0.0,0.0,4898.66,4898.66,697.42,1636.24,0.0,2565.0,461.7,Feb-2017,590.44,,Aug-2017,604.0,600.0,0.0,,1.0,Individual,,,,0.0,1922.0,42525.0,2.0,3.0,1.0,3.0,3.0,35078.0,85.0,1.0,2.0,1927.0,79.0,12300.0,3.0,7.0,5.0,5.0,6075.0,2295.0,46.6,0.0,0.0,112.0,43.0,3.0,3.0,0.0,3.0,,0.0,,0.0,2.0,4.0,2.0,2.0,14.0,4.0,4.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,53636.0,42525.0,4300.0,41336.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90835193,,15000.0,15000.0,15000.0, 60 months,24.99,440.19,E,E4,BM2,8 years,MORTGAGE,45672.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90835193,,debt_consolidation,Debt consolidation,235xx,VA,30.19,0.0,May-2007,685.0,689.0,0.0,24.0,,9.0,0.0,11285.0,69.7,24.0,w,0.0,0.0,10586.11,10586.11,3105.24,5772.75,22.01,1686.11,303.4998,Jul-2018,440.19,,Dec-2018,569.0,565.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,31378.0,1.0,5.0,1.0,2.0,1.0,20093.0,63.0,0.0,1.0,4179.0,65.0,16200.0,0.0,3.0,0.0,3.0,3486.0,2379.0,64.5,0.0,0.0,112.0,111.0,13.0,1.0,0.0,13.0,41.0,,41.0,3.0,2.0,3.0,2.0,2.0,19.0,4.0,5.0,3.0,9.0,0.0,0.0,0.0,1.0,83.3,0.0,0.0,0.0,48011.0,31378.0,6700.0,31811.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90242199,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,,,MORTGAGE,42000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242199,,debt_consolidation,Debt consolidation,185xx,PA,23.89,0.0,Mar-2007,705.0,709.0,0.0,,,16.0,0.0,11356.0,40.1,27.0,w,2755.99,2755.99,11971.62,11971.62,9244.01,2727.61,0.0,0.0,0.0,Mar-2019,413.0,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,170531.0,2.0,4.0,1.0,2.0,3.0,55607.0,52.0,4.0,5.0,7616.0,44.0,28300.0,2.0,4.0,3.0,8.0,11369.0,9717.0,52.4,0.0,0.0,114.0,64.0,7.0,3.0,1.0,7.0,,7.0,,0.0,4.0,6.0,6.0,8.0,11.0,11.0,15.0,6.0,16.0,0.0,0.0,0.0,6.0,100.0,50.0,0.0,0.0,195027.0,66963.0,20400.0,62647.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724360,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,Executive Administrative Assistant,2 years,RENT,43000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724360,,debt_consolidation,Debt consolidation,010xx,MA,20.82,0.0,Nov-1998,725.0,729.0,0.0,,,6.0,0.0,15750.0,56.7,17.0,w,2765.21,2765.21,12007.93,12007.93,9234.79,2773.14,0.0,0.0,0.0,Mar-2019,413.0,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,30240.0,0.0,1.0,0.0,0.0,32.0,14490.0,64.0,0.0,1.0,8880.0,60.0,27800.0,0.0,0.0,0.0,1.0,6048.0,7050.0,69.1,0.0,0.0,149.0,204.0,21.0,21.0,1.0,21.0,,,,0.0,3.0,3.0,4.0,7.0,4.0,5.0,12.0,3.0,6.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,50356.0,30240.0,22800.0,22556.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90177755,,3000.0,3000.0,3000.0, 36 months,10.49,97.5,B,B3,On site foreman,10+ years,MORTGAGE,50000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90177755,,home_improvement,Home improvement,062xx,CT,12.55,0.0,Jul-2008,685.0,689.0,0.0,,,8.0,0.0,5707.0,28.0,9.0,w,658.98,658.98,2825.75,2825.75,2341.02,484.73,0.0,0.0,0.0,Mar-2019,97.5,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,930.0,139687.0,0.0,1.0,0.0,1.0,15.0,13122.0,84.0,0.0,2.0,3508.0,52.0,20400.0,2.0,0.0,1.0,3.0,17461.0,1924.0,67.9,0.0,0.0,96.0,98.0,13.0,13.0,2.0,50.0,,2.0,,0.0,2.0,3.0,2.0,2.0,2.0,5.0,5.0,3.0,8.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,177796.0,18829.0,6000.0,15712.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90955196,,28000.0,28000.0,28000.0, 60 months,22.39,779.56,E,E1,Fire Engineer,10+ years,MORTGAGE,87000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90955196,,debt_consolidation,Debt consolidation,762xx,TX,21.13,1.0,Jul-2001,695.0,699.0,0.0,23.0,,7.0,0.0,10782.0,70.0,11.0,f,0.0,0.0,35742.7676648638,35742.77,28000.0,7703.79,38.980000042600004,0.0,0.0,Feb-2018,24863.76,,Jan-2018,699.0,695.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,370140.0,0.0,3.0,0.0,1.0,24.0,44043.0,49.0,0.0,2.0,7098.0,52.0,15400.0,0.0,1.0,1.0,3.0,52877.0,302.0,95.9,0.0,0.0,182.0,61.0,24.0,24.0,2.0,24.0,23.0,7.0,23.0,0.0,1.0,2.0,2.0,2.0,5.0,3.0,4.0,2.0,7.0,0.0,0.0,1.0,0.0,90.9,50.0,0.0,0.0,445434.0,54825.0,7400.0,89284.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90965118,,35000.0,35000.0,35000.0, 36 months,12.79,1175.76,C,C1,Analyst,1 year,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90965118,,credit_card,Credit card refinancing,917xx,CA,15.74,0.0,Sep-2003,700.0,704.0,0.0,,,14.0,0.0,13715.0,70.0,22.0,f,0.0,0.0,36986.4656155795,36986.47,35000.0,1986.47,0.0,0.0,0.0,May-2017,4956.78,,Sep-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,63779.0,1.0,9.0,0.0,0.0,63.0,50064.0,45.0,1.0,1.0,5233.0,56.0,19600.0,0.0,0.0,0.0,1.0,4556.0,5885.0,70.0,0.0,0.0,156.0,130.0,5.0,5.0,0.0,5.0,,,,0.0,4.0,4.0,5.0,11.0,9.0,5.0,13.0,4.0,14.0,0.0,0.0,0.0,1.0,100.0,60.0,0.0,0.0,84258.0,63779.0,19600.0,64658.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90875214,,15000.0,15000.0,15000.0, 36 months,8.99,476.93,B,B1,Controls Engineer,3 years,MORTGAGE,87000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90875214,,credit_card,Credit card refinancing,481xx,MI,16.42,1.0,Jul-2001,730.0,734.0,0.0,7.0,,9.0,0.0,17108.0,28.3,21.0,f,0.0,0.0,15472.827250767099,15472.83,15000.0,472.83,0.0,0.0,0.0,Feb-2017,14049.53,,Feb-2017,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,188213.0,0.0,2.0,1.0,2.0,10.0,28379.0,76.0,0.0,1.0,9820.0,47.0,60400.0,1.0,0.0,4.0,3.0,20913.0,34992.0,32.8,0.0,0.0,180.0,182.0,22.0,10.0,1.0,28.0,,3.0,7.0,0.0,3.0,3.0,4.0,4.0,14.0,6.0,6.0,3.0,9.0,0.0,0.0,0.0,1.0,95.2,0.0,0.0,0.0,246910.0,45487.0,52100.0,37265.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331467,,11650.0,11650.0,11650.0, 60 months,22.39,324.35,E,E1,,,OWN,30000.0,Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331467,,debt_consolidation,Debt consolidation,117xx,NY,16.88,1.0,May-1991,735.0,739.0,0.0,13.0,,7.0,0.0,1441.0,22.9,11.0,f,7779.52,7779.52,9170.47,9170.47,3870.48,5283.77,16.22,0.0,0.0,Mar-2019,340.57,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,93.0,9593.0,0.0,2.0,0.0,0.0,34.0,8152.0,43.0,2.0,2.0,724.0,38.0,6300.0,0.0,0.0,0.0,2.0,1370.0,1106.0,44.7,0.0,0.0,53.0,304.0,7.0,7.0,0.0,8.0,,,,0.0,2.0,4.0,2.0,2.0,2.0,5.0,9.0,4.0,7.0,0.0,0.0,0.0,2.0,90.9,0.0,0.0,0.0,25448.0,9593.0,2000.0,19148.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681938,,16800.0,16800.0,16800.0, 36 months,8.99,534.16,B,B1,VP of Sales,7 years,RENT,125000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681938,,major_purchase,Major purchase,970xx,OR,16.55,0.0,May-1998,665.0,669.0,0.0,,85.0,13.0,1.0,5398.0,23.3,31.0,w,0.0,0.0,10796.71,10796.71,7719.54,1858.49,26.71,1191.97,214.5546,Jun-2018,545.0,,Oct-2018,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,77913.0,1.0,4.0,1.0,3.0,4.0,72515.0,83.0,0.0,0.0,2626.0,70.0,23200.0,2.0,1.0,3.0,3.0,7083.0,17602.0,23.5,0.0,0.0,136.0,220.0,42.0,4.0,1.0,42.0,,0.0,,1.0,5.0,5.0,7.0,10.0,14.0,9.0,16.0,5.0,13.0,0.0,0.0,0.0,1.0,96.7,0.0,1.0,0.0,110842.0,77913.0,23000.0,87642.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082493,,13000.0,13000.0,13000.0, 60 months,21.49,355.29,D,D5,Manager,10+ years,MORTGAGE,138000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082493,,home_improvement,Home improvement,933xx,CA,11.69,0.0,May-2006,665.0,669.0,1.0,,,17.0,0.0,27041.0,53.4,46.0,w,0.0,0.0,14457.1542193125,14457.15,13000.0,1457.15,0.0,0.0,0.0,Apr-2017,12696.22,,Oct-2017,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,308734.0,1.0,5.0,0.0,1.0,13.0,64005.0,86.0,4.0,7.0,11664.0,73.0,50600.0,2.0,0.0,5.0,9.0,18161.0,11023.0,68.3,0.0,0.0,124.0,124.0,6.0,6.0,3.0,6.0,,0.0,,0.0,4.0,7.0,6.0,17.0,20.0,11.0,23.0,7.0,17.0,0.0,0.0,0.0,5.0,100.0,33.3,0.0,0.0,347922.0,91046.0,34800.0,74808.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121162,,6600.0,6600.0,6600.0, 36 months,11.49,217.62,B,B5,Teacher ,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121162,,credit_card,Credit card refinancing,928xx,CA,19.88,0.0,Feb-1973,765.0,769.0,1.0,,,17.0,0.0,6451.0,14.3,37.0,w,0.0,0.0,7191.730637025699,7191.73,6600.0,591.73,0.0,0.0,0.0,Aug-2017,5222.62,,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,326421.0,3.0,3.0,3.0,3.0,1.0,32085.0,75.0,1.0,1.0,148.0,44.0,45200.0,1.0,6.0,1.0,5.0,20401.0,20052.0,0.7,0.0,0.0,154.0,523.0,6.0,1.0,3.0,87.0,,3.0,,0.0,1.0,3.0,5.0,8.0,10.0,13.0,24.0,3.0,17.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,381931.0,38536.0,20200.0,42731.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89023949,,12000.0,12000.0,12000.0, 36 months,13.99,410.08,C,C3,Teacher,3 years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89023949,,small_business,Business,109xx,NY,9.36,0.0,Mar-2011,740.0,744.0,1.0,33.0,,6.0,0.0,9619.0,14.8,8.0,f,2740.97,2740.97,11882.99,11882.99,9259.03,2623.96,0.0,0.0,0.0,Mar-2019,410.08,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,23028.0,2.0,1.0,0.0,0.0,25.0,13409.0,71.0,2.0,2.0,3088.0,27.0,65100.0,0.0,0.0,1.0,2.0,4606.0,55481.0,14.8,0.0,0.0,25.0,66.0,2.0,2.0,0.0,2.0,33.0,4.0,33.0,0.0,4.0,4.0,4.0,5.0,1.0,5.0,7.0,4.0,6.0,0.0,0.0,0.0,2.0,87.5,0.0,0.0,0.0,83955.0,23028.0,65100.0,18855.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501794,,9000.0,9000.0,9000.0, 36 months,17.99,325.33,D,D2,License Coordinator ,1 year,RENT,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501794,,debt_consolidation,Debt consolidation,070xx,NJ,15.58,1.0,Sep-2004,660.0,664.0,0.0,7.0,,13.0,0.0,14785.0,77.4,20.0,w,2176.94,2176.94,9463.86,9463.86,6823.06,2608.26,32.54,0.0,0.0,Mar-2019,325.33,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,65203.0,1.0,7.0,2.0,2.0,2.0,50418.0,99.0,2.0,2.0,9313.0,93.0,19100.0,0.0,0.0,5.0,4.0,5434.0,815.0,94.6,0.0,0.0,144.0,142.0,12.0,2.0,0.0,12.0,,2.0,,0.0,2.0,3.0,3.0,3.0,14.0,6.0,6.0,3.0,13.0,0.0,0.0,0.0,4.0,95.0,100.0,0.0,0.0,70187.0,65203.0,15000.0,51087.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511897,,30000.0,30000.0,30000.0, 60 months,21.49,819.9,D,D5,Staff Mechanical Engineer,3 years,RENT,112000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511897,,debt_consolidation,Debt consolidation,750xx,TX,23.79,0.0,Sep-1994,685.0,689.0,0.0,32.0,,15.0,0.0,17952.0,53.3,33.0,w,0.0,0.0,24629.28,24629.28,4814.79,7447.89,0.0,12366.6,2225.988,Jan-2018,819.9,,Sep-2018,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,104979.0,2.0,4.0,1.0,3.0,5.0,87027.0,71.0,3.0,5.0,6175.0,66.0,33700.0,1.0,2.0,1.0,8.0,6999.0,8950.0,64.8,0.0,0.0,264.0,162.0,1.0,1.0,0.0,1.0,,12.0,,1.0,3.0,5.0,6.0,9.0,14.0,11.0,19.0,5.0,15.0,0.0,0.0,0.0,4.0,80.6,50.0,0.0,0.0,153241.0,104979.0,25400.0,119541.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Sep-2018,COMPLETE,Jul-2018,12366.6,45.0,24.0 +90320155,,20000.0,20000.0,20000.0, 36 months,14.49,688.33,C,C4,Lead Transportation Security Officer,10+ years,MORTGAGE,48543.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320155,,debt_consolidation,Debt consolidation,481xx,MI,22.4,1.0,Oct-2000,710.0,714.0,0.0,6.0,78.0,11.0,1.0,10326.0,48.7,25.0,w,0.0,0.0,23360.845689037596,23360.85,20000.0,3360.85,0.0,0.0,0.0,Mar-2018,12363.67,,Mar-2018,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,133511.0,2.0,2.0,0.0,1.0,22.0,8281.0,32.0,2.0,4.0,7510.0,40.0,21200.0,0.0,0.0,2.0,6.0,13351.0,6194.0,61.5,0.0,0.0,167.0,191.0,4.0,4.0,2.0,4.0,,7.0,6.0,0.0,3.0,5.0,4.0,9.0,5.0,8.0,18.0,5.0,11.0,0.0,0.0,0.0,3.0,96.0,50.0,0.0,0.0,162758.0,18607.0,16100.0,25867.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501583,,10000.0,10000.0,10000.0, 36 months,10.99,327.34,B,B4,Patient Care Technician,8 years,MORTGAGE,32000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501583,,debt_consolidation,Debt consolidation,761xx,TX,21.94,0.0,Apr-1995,715.0,719.0,0.0,,,9.0,0.0,14768.0,48.6,20.0,w,2209.69,2209.69,9486.75,9486.75,7790.31,1696.44,0.0,0.0,0.0,Mar-2019,327.34,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,68718.0,1.0,1.0,1.0,1.0,5.0,4167.0,93.0,0.0,0.0,5661.0,54.0,30400.0,0.0,0.0,0.0,1.0,7635.0,10729.0,52.7,0.0,0.0,171.0,257.0,46.0,5.0,2.0,46.0,,,,0.0,5.0,6.0,5.0,5.0,5.0,7.0,13.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,60.0,0.0,0.0,92688.0,18935.0,22700.0,4506.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481399,,35000.0,35000.0,35000.0, 60 months,26.99,1068.53,F,F3,Regional Sales Manager,9 years,MORTGAGE,275000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481399,,debt_consolidation,Debt consolidation,302xx,GA,11.04,3.0,Aug-2006,675.0,679.0,0.0,11.0,,22.0,0.0,22384.0,70.6,47.0,w,0.0,0.0,48326.936726284104,48326.94,35000.0,13326.94,0.0,0.0,0.0,Apr-2018,30472.28,,Apr-2018,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,501851.0,5.0,8.0,3.0,4.0,1.0,110309.0,81.0,3.0,5.0,9284.0,73.0,31700.0,5.0,0.0,7.0,10.0,25093.0,4980.0,76.3,0.0,0.0,121.0,82.0,2.0,1.0,1.0,2.0,11.0,3.0,11.0,0.0,2.0,4.0,5.0,7.0,21.0,12.0,24.0,4.0,22.0,0.0,0.0,0.0,7.0,95.7,40.0,0.0,0.0,526402.0,132766.0,21000.0,120026.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90805155,,8000.0,8000.0,8000.0, 36 months,9.49,256.23,B,B2,Tech clerk ,2 years,RENT,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90805155,,debt_consolidation,Debt consolidation,895xx,NV,22.56,0.0,Mar-1998,690.0,694.0,0.0,43.0,85.0,8.0,1.0,4837.0,40.0,14.0,w,0.0,0.0,9083.8392491028,9083.84,8000.0,1083.84,0.0,0.0,0.0,Mar-2019,1513.62,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,27456.0,1.0,2.0,0.0,0.0,30.0,22619.0,45.0,1.0,2.0,1952.0,43.0,12100.0,0.0,0.0,0.0,2.0,3922.0,48.0,97.6,0.0,0.0,222.0,190.0,6.0,6.0,0.0,30.0,,,43.0,0.0,1.0,4.0,1.0,3.0,4.0,6.0,10.0,4.0,7.0,0.0,0.0,0.0,1.0,85.7,100.0,1.0,0.0,61037.0,27456.0,2000.0,48937.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541755,,10000.0,10000.0,10000.0, 36 months,13.99,341.73,C,C3,Lab technical ,7 years,RENT,44000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541755,,debt_consolidation,Debt consolidation,923xx,CA,7.36,0.0,Oct-2006,675.0,679.0,0.0,,,9.0,0.0,8502.0,50.0,11.0,f,0.0,0.0,11441.914169964499,11441.91,10000.0,1441.91,0.0,0.0,0.0,Dec-2017,7007.19,,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,1031.0,8502.0,0.0,0.0,0.0,0.0,,0.0,,3.0,4.0,3917.0,50.0,17000.0,0.0,0.0,1.0,4.0,945.0,5489.0,59.3,0.0,0.0,,119.0,7.0,7.0,0.0,7.0,,12.0,,0.0,3.0,5.0,6.0,7.0,0.0,9.0,11.0,5.0,9.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,17000.0,8502.0,13500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621883,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Letter Carrier ,4 years,RENT,50000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621883,,other,Other,481xx,MI,14.91,0.0,Dec-2006,660.0,664.0,0.0,,,5.0,0.0,5634.0,62.6,6.0,f,1192.86,1192.86,5240.8,5240.8,3807.14,1433.66,0.0,0.0,0.0,Mar-2019,180.74,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,22993.0,2.0,2.0,0.0,2.0,16.0,17359.0,68.0,2.0,3.0,0.0,67.0,9000.0,3.0,2.0,0.0,5.0,4599.0,,,0.0,0.0,117.0,19.0,4.0,4.0,0.0,,,16.0,,0.0,0.0,3.0,0.0,0.0,3.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,2.0,100.0,,0.0,0.0,34509.0,22993.0,0.0,25509.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681629,,6250.0,6250.0,6250.0, 36 months,10.99,204.59,B,B4,production assistant,2 years,MORTGAGE,94000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681629,,other,Other,781xx,TX,16.53,0.0,Oct-2005,705.0,709.0,0.0,,,9.0,0.0,9324.0,69.1,20.0,w,0.0,0.0,4611.77,4611.77,3573.17,953.27,15.0,70.33,12.6594,Jan-2019,50.0,,Mar-2019,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,220700.0,1.0,6.0,1.0,1.0,6.0,51089.0,46.0,0.0,1.0,4457.0,53.0,13500.0,2.0,3.0,3.0,3.0,24522.0,43.0,99.0,0.0,0.0,131.0,74.0,16.0,6.0,1.0,74.0,,3.0,,0.0,1.0,2.0,1.0,1.0,17.0,2.0,2.0,2.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,248435.0,60413.0,4500.0,71060.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,ACTIVE,Nov-2018,1244.0,44.98,18.0 +90721269,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,EXECUTIVE ASSISTANT TO MANAGING PARTNER,10+ years,MORTGAGE,67874.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721269,,other,Other,334xx,FL,28.62,2.0,Apr-2006,680.0,684.0,3.0,18.0,,16.0,0.0,5615.0,54.0,27.0,f,0.0,0.0,2194.08,2194.08,941.83,549.74,0.0,702.51,126.4518,May-2017,213.89,,Nov-2017,574.0,570.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,78851.0,4.0,11.0,3.0,5.0,5.0,73236.0,104.0,3.0,4.0,2879.0,95.0,10400.0,1.0,11.0,4.0,9.0,4928.0,129.0,96.1,0.0,0.0,125.0,96.0,1.0,1.0,0.0,23.0,18.0,1.0,18.0,0.0,2.0,4.0,2.0,3.0,20.0,5.0,7.0,4.0,16.0,0.0,0.0,0.0,6.0,88.5,100.0,0.0,0.0,106552.0,78851.0,3300.0,96152.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721228,,39675.0,39675.0,39675.0, 60 months,12.79,898.47,C,C1,Anesthesiologist,10+ years,MORTGAGE,165840.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721228,,other,Other,336xx,FL,6.38,0.0,Feb-1989,770.0,774.0,2.0,,,19.0,0.0,20002.0,13.9,46.0,w,0.0,0.0,40180.76,40180.76,39675.0,505.76,0.0,0.0,0.0,Nov-2016,40237.14,,Nov-2016,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,87659.0,1.0,1.0,0.0,1.0,17.0,7757.0,56.0,2.0,7.0,10623.0,19.0,144000.0,1.0,1.0,4.0,8.0,5156.0,101758.0,16.2,0.0,0.0,67.0,323.0,3.0,3.0,2.0,3.0,,2.0,,0.0,8.0,9.0,11.0,29.0,4.0,14.0,35.0,9.0,19.0,0.0,0.0,0.0,2.0,100.0,9.1,0.0,0.0,299703.0,33511.0,121500.0,13962.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671183,,15500.0,15500.0,15500.0, 60 months,13.99,360.58,C,C3,Production,4 years,MORTGAGE,45000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671183,,home_improvement,Home improvement,458xx,OH,21.68,0.0,Jul-2008,670.0,674.0,0.0,,,5.0,0.0,2340.0,66.9,7.0,w,0.0,0.0,18342.313977234,18342.31,15500.0,2842.31,0.0,0.0,0.0,Mar-2018,12585.08,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,141.0,188708.0,0.0,2.0,0.0,2.0,13.0,30390.0,78.0,0.0,1.0,719.0,77.0,3500.0,2.0,0.0,1.0,3.0,37742.0,281.0,71.9,0.0,0.0,47.0,98.0,17.0,13.0,2.0,98.0,,10.0,,0.0,1.0,2.0,1.0,1.0,3.0,2.0,2.0,2.0,5.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,204869.0,32730.0,1000.0,38868.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89039139,,4500.0,4500.0,4500.0, 36 months,9.49,144.13,B,B2,Cook,6 years,MORTGAGE,39000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89039139,,other,Other,920xx,CA,11.82,0.0,Dec-2004,695.0,699.0,0.0,,,7.0,0.0,10493.0,49.0,15.0,w,977.63,977.63,4177.4,4177.4,3522.37,655.03,0.0,0.0,0.0,Mar-2019,144.13,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,166228.0,0.0,1.0,0.0,1.0,21.0,2073.0,52.0,0.0,1.0,3636.0,50.0,21400.0,2.0,0.0,1.0,3.0,27705.0,10907.0,49.0,0.0,0.0,21.0,98.0,24.0,7.0,3.0,29.0,,10.0,,0.0,4.0,4.0,4.0,7.0,1.0,5.0,10.0,4.0,7.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,182600.0,12566.0,21400.0,4000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724171,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,Inside sales,4 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724171,,debt_consolidation,Debt consolidation,601xx,IL,12.93,0.0,Jan-2011,690.0,694.0,0.0,,,14.0,0.0,15480.0,40.0,22.0,w,0.0,0.0,6663.1110293169995,6663.11,6000.0,663.11,0.0,0.0,0.0,Jun-2017,5171.54,,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,150644.0,1.0,1.0,1.0,3.0,11.0,4405.0,79.0,1.0,2.0,3924.0,45.0,38700.0,1.0,1.0,2.0,8.0,11588.0,16620.0,48.2,0.0,0.0,19.0,68.0,5.0,5.0,3.0,5.0,,11.0,,0.0,6.0,6.0,9.0,11.0,3.0,12.0,16.0,6.0,14.0,0.0,0.0,0.0,4.0,100.0,22.2,0.0,0.0,176770.0,19885.0,32100.0,5570.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671872,,8500.0,8500.0,8500.0, 36 months,8.99,270.26,B,B1,Configuration Controller,5 years,RENT,52530.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671872,,debt_consolidation,Debt consolidation,809xx,CO,23.58,0.0,Jul-2004,705.0,709.0,0.0,,,12.0,0.0,10270.0,20.5,24.0,w,0.0,0.0,9539.834380571,9539.83,8500.0,1039.83,0.0,0.0,0.0,Feb-2019,249.14,,Feb-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,160.0,28387.0,1.0,1.0,1.0,1.0,11.0,18117.0,78.0,1.0,1.0,6882.0,39.0,50200.0,0.0,7.0,0.0,2.0,2581.0,17033.0,29.9,0.0,0.0,132.0,146.0,3.0,3.0,0.0,3.0,,,,0.0,2.0,4.0,4.0,5.0,6.0,11.0,17.0,4.0,12.0,0.0,0.0,0.0,2.0,100.0,25.0,0.0,0.0,73300.0,28387.0,24300.0,23100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006663,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,Operations Manager,5 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006663,,debt_consolidation,Debt consolidation,088xx,NJ,29.51,0.0,Jun-2002,675.0,679.0,0.0,28.0,,37.0,0.0,31378.0,42.2,64.0,w,0.0,0.0,21731.8982741306,21731.9,20000.0,1731.9,0.0,0.0,0.0,Oct-2017,14696.17,,Apr-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,332537.0,4.0,8.0,0.0,0.0,29.0,45436.0,73.0,4.0,5.0,6105.0,56.0,74300.0,0.0,0.0,4.0,6.0,9501.0,16432.0,59.6,0.0,0.0,157.0,171.0,1.0,1.0,4.0,1.0,,1.0,,0.0,12.0,21.0,13.0,19.0,21.0,28.0,39.0,21.0,37.0,0.0,0.0,0.0,5.0,95.2,7.7,0.0,0.0,393194.0,76814.0,40700.0,62433.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90735149,,16325.0,16325.0,16325.0, 36 months,10.49,530.53,B,B3,Supervisor,10+ years,MORTGAGE,42000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90735149,,debt_consolidation,Debt consolidation,700xx,LA,27.71,0.0,Sep-2001,725.0,729.0,0.0,,,26.0,0.0,16134.0,26.9,47.0,f,3587.0,3587.0,15375.86,15375.86,12738.0,2637.86,0.0,0.0,0.0,Mar-2019,530.53,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,200.0,104185.0,1.0,1.0,0.0,0.0,38.0,11860.0,45.0,3.0,4.0,7094.0,32.0,60000.0,0.0,0.0,1.0,4.0,4167.0,25351.0,34.3,0.0,0.0,151.0,180.0,2.0,2.0,1.0,2.0,,7.0,,0.0,4.0,8.0,11.0,19.0,4.0,24.0,41.0,8.0,26.0,0.0,0.0,0.0,3.0,100.0,9.1,0.0,0.0,188307.0,27994.0,38600.0,26612.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621877,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,science teacher,4 years,RENT,40700.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621877,,debt_consolidation,Debt consolidation,833xx,ID,26.91,0.0,Jun-1998,670.0,674.0,0.0,71.0,71.0,13.0,1.0,7425.0,75.0,25.0,w,2755.99,2755.99,11952.85,11952.85,9244.01,2708.84,0.0,0.0,0.0,Mar-2019,413.0,Apr-2019,Mar-2019,769.0,765.0,0.0,71.0,1.0,Individual,,,,0.0,0.0,28547.0,1.0,7.0,1.0,1.0,9.0,21122.0,85.0,1.0,2.0,5441.0,82.0,9900.0,1.0,0.0,2.0,3.0,2196.0,74.0,98.8,0.0,0.0,76.0,219.0,2.0,2.0,1.0,2.0,71.0,7.0,71.0,1.0,2.0,4.0,2.0,4.0,14.0,6.0,10.0,4.0,13.0,0.0,0.0,0.0,2.0,91.7,100.0,1.0,0.0,34808.0,28547.0,6000.0,24908.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451606,,1500.0,1500.0,1500.0, 36 months,11.49,49.46,B,B5,Teacher,4 years,MORTGAGE,81000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451606,,credit_card,Credit card refinancing,926xx,CA,26.41,0.0,Oct-1984,670.0,674.0,0.0,54.0,,8.0,0.0,23505.0,93.3,29.0,w,0.0,0.0,1624.9057867518,1624.91,1500.0,124.91,0.0,0.0,0.0,Jul-2017,1230.19,,Jul-2017,734.0,730.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,643920.0,0.0,0.0,0.0,0.0,101.0,0.0,,1.0,2.0,5021.0,93.0,25200.0,1.0,3.0,2.0,3.0,80490.0,2.0,100.0,0.0,0.0,138.0,383.0,8.0,8.0,8.0,16.0,,5.0,59.0,3.0,2.0,5.0,2.0,7.0,2.0,5.0,18.0,5.0,8.0,0.0,0.0,0.0,1.0,86.2,100.0,0.0,0.0,667468.0,61666.0,10000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90745204,,12000.0,12000.0,12000.0, 36 months,8.99,381.55,B,B1,,,MORTGAGE,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90745204,,home_improvement,Home improvement,983xx,WA,29.13,0.0,Oct-1978,675.0,679.0,1.0,64.0,,10.0,0.0,17340.0,57.6,34.0,w,0.0,0.0,13161.3609814094,13161.36,12000.0,1161.36,0.0,0.0,0.0,Feb-2018,7471.07,,Jun-2018,664.0,660.0,0.0,69.0,1.0,Individual,,,,0.0,2413.0,293509.0,2.0,3.0,2.0,6.0,6.0,56501.0,77.0,0.0,1.0,8065.0,65.0,30100.0,2.0,2.0,4.0,8.0,29351.0,6152.0,69.4,0.0,0.0,137.0,455.0,15.0,2.0,6.0,15.0,69.0,6.0,69.0,3.0,4.0,5.0,4.0,9.0,16.0,6.0,12.0,5.0,10.0,0.0,0.0,0.0,3.0,88.2,25.0,0.0,0.0,313250.0,73841.0,20100.0,63150.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611418,,20000.0,20000.0,20000.0, 36 months,16.99,712.96,D,D1,Rn,10+ years,MORTGAGE,82000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611418,,debt_consolidation,Debt consolidation,810xx,CO,19.1,1.0,Oct-2003,670.0,674.0,3.0,17.0,,9.0,0.0,4963.0,55.8,24.0,f,0.0,0.0,21776.6724482664,21776.67,20000.0,1776.67,0.0,0.0,0.0,Apr-2017,18098.42,,Jul-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,57877.0,1.0,3.0,2.0,2.0,3.0,52914.0,75.0,0.0,1.0,2300.0,70.0,8900.0,3.0,5.0,4.0,3.0,6431.0,1591.0,69.4,0.0,0.0,144.0,124.0,19.0,3.0,2.0,19.0,,0.0,17.0,0.0,2.0,3.0,3.0,3.0,12.0,6.0,10.0,3.0,9.0,0.0,0.0,0.0,2.0,82.6,33.3,0.0,0.0,73258.0,57877.0,5200.0,64358.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270206,,30000.0,30000.0,30000.0, 36 months,11.49,989.14,B,B5,Contact Center Manager ,9 years,RENT,92000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270206,,debt_consolidation,Debt consolidation,907xx,CA,11.85,0.0,Feb-2005,705.0,709.0,0.0,57.0,,8.0,0.0,3627.0,12.3,10.0,w,6666.13,6666.13,28780.81,28780.81,23333.87,5446.94,0.0,0.0,0.0,Mar-2019,989.14,Apr-2019,Mar-2019,779.0,775.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,13974.0,2.0,2.0,0.0,1.0,20.0,10347.0,37.0,2.0,5.0,833.0,24.0,29500.0,0.0,3.0,0.0,6.0,1747.0,24134.0,5.4,0.0,0.0,139.0,52.0,2.0,2.0,0.0,2.0,,20.0,,1.0,4.0,6.0,4.0,4.0,3.0,6.0,7.0,6.0,8.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,0.0,57155.0,13974.0,25500.0,27655.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90134762,,27600.0,27600.0,27600.0, 36 months,17.99,997.67,D,D2,Parts Manager,10+ years,OWN,75000.0,Not Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90134762,,credit_card,Credit card refinancing,144xx,NY,18.8,1.0,Oct-1981,715.0,719.0,3.0,7.0,,18.0,0.0,23771.0,42.9,24.0,w,7471.65,7471.65,28010.03,28010.03,20128.35,7881.68,0.0,0.0,0.0,Feb-2019,997.67,Apr-2019,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,180270.0,2.0,6.0,0.0,0.0,25.0,49494.0,67.0,2.0,5.0,6513.0,57.0,55400.0,2.0,0.0,5.0,5.0,10015.0,8581.0,61.0,0.0,0.0,160.0,419.0,3.0,3.0,3.0,87.0,,0.0,,0.0,3.0,8.0,3.0,4.0,8.0,10.0,13.0,8.0,18.0,0.0,0.0,0.0,2.0,95.8,33.3,0.0,0.0,260634.0,73265.0,22000.0,74366.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721246,,5000.0,5000.0,5000.0, 36 months,8.99,158.98,B,B1,Teacher,3 years,OWN,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721246,,small_business,Business,300xx,GA,15.28,2.0,Mar-2005,665.0,669.0,5.0,3.0,,19.0,0.0,8702.0,21.0,52.0,w,1080.07,1080.07,4604.18,4604.18,3919.93,684.25,0.0,0.0,0.0,Mar-2019,158.98,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,375353.0,2.0,7.0,1.0,1.0,9.0,139651.0,98.0,3.0,3.0,3435.0,60.0,41500.0,2.0,0.0,14.0,5.0,20853.0,18640.0,18.6,0.0,0.0,138.0,120.0,6.0,1.0,6.0,7.0,,0.0,3.0,0.0,2.0,5.0,5.0,10.0,26.0,11.0,20.0,5.0,19.0,0.0,0.0,0.0,5.0,88.2,0.0,0.0,0.0,391440.0,148353.0,22900.0,122940.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818958,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,Merchandiser supervisor,2 years,RENT,48000.0,Not Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818958,,debt_consolidation,Debt consolidation,211xx,MD,28.03,1.0,Sep-2011,705.0,709.0,0.0,16.0,,7.0,0.0,11214.0,61.6,12.0,f,5287.64,5287.64,12894.17,12894.17,9712.36,3181.81,0.0,0.0,0.0,Nov-2018,516.25,Apr-2019,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,53545.0,1.0,3.0,1.0,2.0,12.0,42331.0,60.0,1.0,1.0,485.0,61.0,18200.0,0.0,6.0,2.0,3.0,7649.0,515.0,48.5,0.0,0.0,48.0,60.0,4.0,4.0,0.0,4.0,,4.0,16.0,0.0,1.0,4.0,1.0,1.0,5.0,4.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,91.7,0.0,0.0,0.0,70519.0,53545.0,1000.0,52319.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Feb-2019,ACTIVE,Feb-2019,2477.0,45.0,18.0 +90246608,,4000.0,4000.0,4000.0, 36 months,13.49,135.73,C,C2,Customer Service ,< 1 year,RENT,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90246608,,debt_consolidation,Debt consolidation,900xx,CA,29.6,0.0,Aug-2008,670.0,674.0,0.0,,,18.0,0.0,19459.0,79.8,19.0,w,0.0,0.0,4605.489143611,4605.49,4000.0,605.49,0.0,0.0,0.0,Feb-2018,2572.54,,Mar-2019,539.0,535.0,0.0,,1.0,Individual,,,,0.0,0.0,40972.0,0.0,9.0,0.0,1.0,14.0,21513.0,78.0,2.0,3.0,4491.0,79.0,24400.0,0.0,0.0,1.0,4.0,2276.0,1864.0,87.1,0.0,0.0,97.0,92.0,12.0,12.0,0.0,12.0,,12.0,,0.0,5.0,9.0,5.0,5.0,10.0,9.0,9.0,9.0,18.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,52050.0,40972.0,14500.0,27650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221705,,12000.0,12000.0,12000.0, 60 months,13.99,279.16,C,C3,NDT SPECIALIST,9 years,MORTGAGE,58000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221705,,debt_consolidation,Debt consolidation,612xx,IL,20.98,0.0,Feb-2000,665.0,669.0,0.0,,32.0,11.0,1.0,11513.0,67.7,31.0,w,7227.58,7227.58,8086.31,8086.31,4772.42,3313.89,0.0,0.0,0.0,Mar-2019,279.16,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,125158.0,1.0,2.0,0.0,1.0,15.0,36001.0,77.0,2.0,4.0,8259.0,73.0,17000.0,0.0,4.0,1.0,5.0,17880.0,3487.0,76.8,0.0,0.0,160.0,199.0,2.0,2.0,2.0,2.0,,11.0,,0.0,3.0,3.0,3.0,11.0,8.0,8.0,21.0,3.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,1.0,0.0,167014.0,47514.0,15000.0,60339.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501806,,9600.0,9600.0,9600.0, 36 months,12.79,322.5,C,C1,Office Clerk,10+ years,RENT,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501806,,debt_consolidation,Debt consolidation,331xx,FL,29.96,0.0,Mar-2003,740.0,744.0,1.0,,,15.0,0.0,10411.0,24.4,18.0,f,2163.91,2163.91,9358.66,9358.66,7436.09,1922.57,0.0,0.0,0.0,Mar-2019,322.5,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,90.0,16833.0,2.0,1.0,0.0,1.0,17.0,6422.0,53.0,2.0,5.0,3032.0,31.0,42600.0,0.0,0.0,1.0,6.0,1122.0,17654.0,27.9,0.0,0.0,17.0,162.0,0.0,0.0,0.0,14.0,,0.0,,0.0,4.0,10.0,6.0,6.0,1.0,14.0,17.0,10.0,15.0,0.0,0.0,0.0,2.0,100.0,16.7,0.0,0.0,54768.0,16833.0,24500.0,12168.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89969037,,40000.0,40000.0,40000.0, 36 months,5.32,1204.6,A,A1,Manager,1 year,OWN,200000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89969037,,credit_card,Credit card refinancing,448xx,OH,11.86,0.0,May-1991,725.0,729.0,2.0,,,23.0,0.0,87851.0,51.2,75.0,w,8284.31,8284.31,34903.84,34903.84,31715.69,3188.15,0.0,0.0,0.0,Mar-2019,1204.6,Apr-2019,Mar-2019,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,436649.0,2.0,2.0,1.0,2.0,9.0,11803.0,75.0,2.0,2.0,23143.0,54.0,150000.0,1.0,2.0,3.0,4.0,18985.0,33169.0,59.1,0.0,0.0,121.0,304.0,2.0,2.0,15.0,3.0,,2.0,,0.0,4.0,7.0,8.0,17.0,32.0,14.0,28.0,7.0,23.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,584648.0,99654.0,81000.0,15724.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696318,,5500.0,5500.0,5500.0, 36 months,12.79,184.77,C,C1,Warehouse Associate,4 years,RENT,33000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696318,,debt_consolidation,Debt consolidation,462xx,IN,13.05,0.0,Jan-2006,670.0,674.0,1.0,71.0,36.0,4.0,1.0,3736.0,37.4,7.0,w,0.0,0.0,6483.0149918463,6483.01,5500.0,983.01,0.0,0.0,0.0,Aug-2018,2597.38,,Mar-2019,679.0,675.0,0.0,71.0,1.0,Individual,,,,0.0,489.0,8341.0,0.0,1.0,0.0,1.0,14.0,4605.0,71.0,0.0,2.0,3139.0,51.0,10000.0,1.0,0.0,1.0,3.0,2085.0,6264.0,37.4,0.0,0.0,104.0,128.0,15.0,14.0,0.0,15.0,,3.0,,1.0,3.0,3.0,3.0,5.0,2.0,3.0,5.0,3.0,4.0,0.0,0.0,0.0,0.0,85.7,0.0,1.0,0.0,16484.0,8341.0,10000.0,6484.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90381818,,6000.0,6000.0,6000.0, 36 months,13.99,205.04,C,C3,prep food,6 years,RENT,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90381818,,credit_card,Credit card refinancing,113xx,NY,18.07,0.0,Feb-2011,700.0,704.0,0.0,,,9.0,0.0,9058.0,46.0,17.0,w,0.0,0.0,1000.98,1000.98,271.75,133.67,0.0,595.56,107.2008,Dec-2016,205.04,,Jun-2017,504.0,500.0,0.0,,1.0,Individual,,,,0.0,0.0,20535.0,0.0,1.0,1.0,1.0,7.0,11477.0,77.0,2.0,4.0,5198.0,59.0,19700.0,0.0,0.0,1.0,5.0,2282.0,5490.0,57.1,0.0,0.0,28.0,67.0,11.0,7.0,0.0,11.0,,12.0,,0.0,3.0,6.0,3.0,11.0,2.0,7.0,15.0,6.0,9.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,34700.0,20535.0,12800.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +86104834,,8400.0,8400.0,8400.0, 36 months,11.49,276.96,B,B5,MANAGER,1 year,OWN,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=86104834,,credit_card,Credit card refinancing,017xx,MA,15.61,0.0,Oct-1982,660.0,664.0,2.0,24.0,20.0,14.0,3.0,10486.0,66.8,24.0,w,1866.49,1866.49,8018.44,8018.44,6533.51,1484.93,0.0,0.0,0.0,Mar-2019,276.96,Apr-2019,Mar-2019,714.0,710.0,0.0,41.0,1.0,Individual,,,,0.0,160.0,13736.0,2.0,1.0,0.0,0.0,64.0,2865.0,14.0,3.0,3.0,2237.0,37.0,15700.0,0.0,0.0,4.0,3.0,981.0,981.0,87.4,0.0,0.0,147.0,407.0,3.0,3.0,0.0,29.0,24.0,0.0,24.0,2.0,6.0,10.0,6.0,9.0,4.0,12.0,19.0,10.0,14.0,0.0,0.0,0.0,3.0,81.8,83.3,0.0,2.0,36786.0,13736.0,7800.0,20080.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671551,,30000.0,30000.0,30000.0, 36 months,17.99,1084.43,D,D2,Internet Sale Manager,2 years,MORTGAGE,120000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671551,,debt_consolidation,Debt consolidation,774xx,TX,11.15,0.0,Aug-2005,710.0,714.0,1.0,,,10.0,0.0,4703.0,16.6,17.0,w,0.0,0.0,4153.28,4153.28,634.68,419.77,0.0,3098.83,557.7894,Nov-2016,1084.43,,Jun-2017,574.0,570.0,0.0,,1.0,Individual,,,,0.0,0.0,30506.0,2.0,2.0,1.0,2.0,8.0,25803.0,78.0,3.0,4.0,2656.0,50.0,28400.0,3.0,0.0,4.0,6.0,3051.0,14097.0,25.0,0.0,0.0,16.0,133.0,2.0,2.0,0.0,3.0,,3.0,,0.0,4.0,4.0,5.0,9.0,2.0,8.0,15.0,4.0,10.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,61326.0,30506.0,18800.0,32926.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90915116,,7500.0,7500.0,7500.0, 36 months,11.49,247.29,B,B5,Banquet Manager ,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90915116,,medical,Medical expenses,601xx,IL,21.6,2.0,Dec-2002,700.0,704.0,0.0,2.0,,7.0,0.0,7877.0,45.5,25.0,w,1667.02,1667.02,7166.62,7166.62,5832.98,1333.64,0.0,0.0,0.0,Mar-2019,247.29,Apr-2019,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,0.0,118337.0,0.0,1.0,0.0,1.0,22.0,13038.0,74.0,0.0,1.0,4908.0,60.0,17300.0,0.0,0.0,0.0,2.0,16905.0,8481.0,46.7,0.0,0.0,130.0,165.0,21.0,21.0,3.0,21.0,,22.0,2.0,0.0,3.0,4.0,3.0,11.0,5.0,5.0,17.0,4.0,7.0,0.0,0.0,0.0,0.0,92.0,0.0,0.0,0.0,146192.0,20915.0,15900.0,17742.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551415,,7600.0,7600.0,7600.0, 36 months,11.49,250.59,B,B5,Management consultant II,< 1 year,RENT,105000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551415,,debt_consolidation,Debt consolidation,208xx,MD,14.45,0.0,Nov-1995,660.0,664.0,0.0,,74.0,17.0,1.0,16098.0,47.9,31.0,w,1688.48,1688.48,7286.47,7286.47,5911.52,1374.95,0.0,0.0,0.0,Mar-2019,250.59,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,32627.0,2.0,2.0,1.0,2.0,8.0,16529.0,79.0,2.0,3.0,7440.0,60.0,33600.0,0.0,0.0,0.0,5.0,2175.0,3285.0,76.9,0.0,0.0,153.0,250.0,4.0,4.0,1.0,4.0,,,,0.0,3.0,10.0,4.0,10.0,5.0,14.0,24.0,10.0,15.0,0.0,0.0,0.0,3.0,100.0,50.0,1.0,0.0,54600.0,32627.0,14200.0,21000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695244,,40000.0,40000.0,40000.0, 36 months,9.49,1281.14,B,B2,Police Sergeant ,8 years,MORTGAGE,180000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695244,,credit_card,Credit card refinancing,060xx,CT,17.01,0.0,Sep-1988,685.0,689.0,1.0,43.0,62.0,17.0,1.0,53085.0,84.1,34.0,w,0.0,0.0,44725.8394465427,44725.84,40000.0,4725.84,0.0,0.0,0.0,May-2018,21686.41,,May-2018,689.0,685.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,423937.0,0.0,3.0,0.0,2.0,19.0,39089.0,59.0,2.0,7.0,6307.0,71.0,63100.0,1.0,5.0,3.0,9.0,26496.0,7086.0,78.7,0.0,0.0,150.0,336.0,12.0,12.0,3.0,12.0,43.0,4.0,43.0,1.0,7.0,10.0,9.0,13.0,10.0,13.0,21.0,10.0,17.0,0.0,0.0,0.0,2.0,90.9,62.5,0.0,1.0,497221.0,92174.0,33200.0,66121.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90723112,,5000.0,5000.0,5000.0, 36 months,6.99,154.37,A,A2,coo,10+ years,MORTGAGE,78000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90723112,,credit_card,Credit card refinancing,325xx,FL,22.18,1.0,Jan-2002,725.0,729.0,0.0,3.0,,9.0,0.0,3311.0,17.2,20.0,w,0.0,0.0,5495.8387454044005,5495.84,5000.0,495.84,0.0,0.0,0.0,Oct-2018,1947.27,,Oct-2018,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,191357.0,0.0,3.0,0.0,2.0,15.0,27194.0,59.0,0.0,0.0,2314.0,47.0,19200.0,0.0,1.0,0.0,2.0,21262.0,12586.0,15.5,0.0,0.0,136.0,176.0,106.0,15.0,2.0,133.0,,,3.0,0.0,1.0,3.0,3.0,3.0,9.0,5.0,9.0,3.0,9.0,0.0,0.0,0.0,0.0,95.0,0.0,0.0,0.0,226288.0,30505.0,14900.0,46088.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695639,,35000.0,35000.0,35000.0, 36 months,8.99,1112.83,B,B1,Consultant,< 1 year,RENT,176800.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695639,,debt_consolidation,Debt consolidation,553xx,MN,2.47,0.0,Oct-1994,710.0,714.0,1.0,,94.0,6.0,1.0,6818.0,50.9,28.0,w,0.0,0.0,9740.64,9740.64,4080.88,1465.79,55.64,4138.33,744.8994,Apr-2017,1168.47,,Sep-2017,589.0,585.0,0.0,,1.0,Individual,,,,0.0,0.0,319705.0,0.0,1.0,0.0,0.0,42.0,9727.0,43.0,1.0,3.0,4335.0,46.0,13400.0,3.0,2.0,4.0,3.0,53284.0,65.0,98.5,0.0,0.0,188.0,263.0,7.0,7.0,3.0,20.0,,0.0,,0.0,1.0,3.0,1.0,7.0,11.0,4.0,14.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,100.0,1.0,0.0,368955.0,16545.0,4400.0,22912.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90408170,,18000.0,18000.0,18000.0, 36 months,14.49,619.49,C,C4,DevOps Engineer,< 1 year,RENT,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90408170,,debt_consolidation,Debt consolidation,805xx,CO,10.67,0.0,Jan-2010,660.0,664.0,0.0,,,9.0,0.0,17553.0,81.6,21.0,f,0.0,0.0,21865.3171739578,21865.32,18000.0,3865.32,0.0,0.0,0.0,Oct-2018,7537.36,,Oct-2018,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,23402.0,0.0,1.0,1.0,3.0,12.0,5849.0,73.0,1.0,4.0,4843.0,79.0,21500.0,0.0,0.0,1.0,7.0,2600.0,1692.0,89.6,0.0,0.0,72.0,80.0,9.0,9.0,0.0,17.0,,7.0,,0.0,5.0,6.0,5.0,8.0,10.0,8.0,11.0,6.0,9.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,29500.0,23402.0,16200.0,8000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571171,,7200.0,7200.0,7200.0, 36 months,10.99,235.69,B,B4,receptionist,< 1 year,MORTGAGE,12000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571171,,home_improvement,Home improvement,085xx,NJ,65.4,0.0,Jul-1991,685.0,689.0,0.0,,83.0,6.0,1.0,11937.0,97.8,10.0,w,1590.8,1590.8,6830.61,6830.61,5609.2,1221.41,0.0,0.0,0.0,Mar-2019,235.69,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Joint App,109000.0,11.97,Not Verified,0.0,0.0,70965.0,0.0,2.0,2.0,2.0,11.0,9827.0,88.0,0.0,1.0,8162.0,93.0,12200.0,0.0,0.0,0.0,3.0,11828.0,263.0,97.8,0.0,0.0,138.0,302.0,14.0,11.0,1.0,14.0,,13.0,,0.0,3.0,3.0,3.0,4.0,3.0,3.0,6.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,1.0,0.0,271725.0,21764.0,12200.0,11150.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471680,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,procurement analyst,10+ years,MORTGAGE,72000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471680,,credit_card,Credit card refinancing,110xx,NY,11.07,3.0,Oct-1989,660.0,664.0,0.0,22.0,,17.0,0.0,16731.0,48.8,32.0,w,4346.99,4346.99,18591.08,18591.08,15653.01,2938.07,0.0,0.0,0.0,Mar-2019,640.57,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,1052.0,208250.0,1.0,0.0,0.0,0.0,,0.0,,4.0,5.0,6269.0,49.0,34300.0,2.0,0.0,2.0,6.0,13883.0,10698.0,53.9,0.0,0.0,,323.0,4.0,4.0,2.0,4.0,22.0,7.0,22.0,0.0,4.0,10.0,8.0,14.0,0.0,16.0,30.0,10.0,17.0,0.0,0.0,0.0,4.0,62.5,42.9,0.0,0.0,233300.0,16731.0,23200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591807,,7200.0,7200.0,7200.0, 36 months,11.49,237.4,B,B5,Property manager,10+ years,MORTGAGE,51000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591807,,debt_consolidation,Debt consolidation,952xx,CA,13.22,1.0,Dec-1988,700.0,704.0,0.0,21.0,63.0,14.0,1.0,5537.0,21.3,25.0,w,0.0,0.0,8476.6697040734,8476.67,7200.0,1276.67,0.0,0.0,0.0,Feb-2019,2069.23,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,9171.0,0.0,1.0,0.0,0.0,27.0,3634.0,46.0,1.0,7.0,1527.0,27.0,26000.0,0.0,10.0,5.0,7.0,655.0,5245.0,25.1,0.0,0.0,333.0,333.0,7.0,7.0,0.0,7.0,,3.0,21.0,0.0,3.0,8.0,3.0,3.0,9.0,13.0,16.0,8.0,14.0,0.0,0.0,0.0,1.0,96.0,0.0,1.0,0.0,33953.0,9171.0,7000.0,7953.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89998166,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Outside Sales Representative,2 years,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89998166,,debt_consolidation,Debt consolidation,300xx,GA,23.06,0.0,Mar-1984,730.0,734.0,0.0,,,7.0,0.0,24000.0,99.2,18.0,w,0.0,0.0,8273.4733115286,8273.47,8000.0,273.47,0.0,0.0,0.0,Feb-2017,7498.16,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,143624.0,0.0,2.0,0.0,2.0,13.0,19800.0,56.0,0.0,0.0,17839.0,75.0,24200.0,1.0,0.0,0.0,3.0,20518.0,200.0,99.2,0.0,0.0,139.0,188.0,25.0,13.0,6.0,25.0,,18.0,,0.0,2.0,2.0,2.0,4.0,6.0,2.0,5.0,2.0,7.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,179179.0,51893.0,24200.0,35665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671775,,12000.0,12000.0,12000.0, 36 months,6.99,370.48,A,A2,Staff Accountant,2 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671775,,credit_card,Credit card refinancing,816xx,CO,13.88,0.0,Oct-2006,750.0,754.0,0.0,,,7.0,0.0,11085.0,32.0,12.0,w,2177.89,2177.89,11080.2,11080.2,9822.11,1258.09,0.0,0.0,0.0,Mar-2019,370.48,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,17674.0,0.0,1.0,0.0,0.0,29.0,6589.0,43.0,2.0,3.0,8259.0,35.0,34600.0,0.0,1.0,0.0,3.0,2525.0,14308.0,40.4,0.0,0.0,29.0,119.0,11.0,11.0,0.0,11.0,,,,0.0,3.0,4.0,4.0,7.0,1.0,6.0,11.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,25.0,0.0,0.0,49857.0,17674.0,24000.0,15257.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581629,,18000.0,18000.0,18000.0, 36 months,14.49,619.49,C,C4,Rate/Financial Analyst I,3 years,MORTGAGE,67752.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581629,,debt_consolidation,Debt consolidation,800xx,CO,20.81,0.0,Nov-2000,675.0,679.0,2.0,56.0,,22.0,0.0,36558.0,55.7,41.0,w,0.0,0.0,19563.282904376,19563.28,18000.0,1563.28,0.0,0.0,0.0,Jun-2017,15263.07,,May-2018,714.0,710.0,0.0,56.0,1.0,Individual,,,,0.0,0.0,140553.0,2.0,4.0,1.0,1.0,4.0,103995.0,114.0,2.0,9.0,7480.0,67.0,65600.0,1.0,0.0,6.0,10.0,6389.0,13588.0,69.1,0.0,0.0,134.0,132.0,4.0,4.0,2.0,4.0,,0.0,,1.0,10.0,15.0,10.0,12.0,16.0,18.0,23.0,15.0,22.0,0.0,0.0,0.0,3.0,94.9,30.0,0.0,0.0,154790.0,140553.0,44000.0,89190.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681696,,12000.0,12000.0,12000.0, 60 months,14.49,282.28,C,C4,Facilities manager,10+ years,OWN,122000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681696,,credit_card,Credit card refinancing,014xx,MA,7.46,0.0,Aug-2002,670.0,674.0,2.0,,52.0,5.0,3.0,5304.0,45.3,21.0,f,0.0,0.0,13628.9085752992,13628.91,12000.0,1628.91,0.0,0.0,0.0,Oct-2017,9933.49,,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,23969.0,0.0,2.0,2.0,2.0,7.0,18665.0,83.0,0.0,2.0,4733.0,70.0,11700.0,1.0,1.0,5.0,4.0,4794.0,4467.0,51.4,0.0,0.0,94.0,169.0,22.0,7.0,2.0,22.0,,0.0,,0.0,1.0,2.0,2.0,14.0,3.0,3.0,16.0,2.0,5.0,0.0,0.0,0.0,2.0,100.0,0.0,3.0,0.0,34312.0,23969.0,9200.0,22612.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581679,,5000.0,5000.0,5000.0, 36 months,16.99,178.24,D,D1,,,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581679,,other,Other,532xx,WI,4.41,0.0,May-1999,720.0,724.0,2.0,,,5.0,0.0,106819.0,25.3,10.0,f,0.0,0.0,6227.3768624715,6227.38,5000.0,1227.38,0.0,0.0,0.0,Oct-2018,2132.58,,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,107080.0,1.0,0.0,0.0,0.0,106.0,0.0,,2.0,2.0,5364.0,26.0,126500.0,0.0,1.0,3.0,3.0,21416.0,19798.0,25.3,0.0,0.0,158.0,208.0,1.0,1.0,0.0,1.0,,0.0,,0.0,2.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,5.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,126761.0,107080.0,26500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90294161,,36000.0,36000.0,36000.0, 36 months,11.49,1186.97,B,B5,C.O.O.,4 years,RENT,350000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90294161,,other,Other,852xx,AZ,7.63,1.0,Apr-1987,685.0,689.0,0.0,4.0,,5.0,0.0,43162.0,63.7,9.0,w,7999.29,7999.29,34399.15,34399.15,28000.71,6398.44,0.0,0.0,0.0,Mar-2019,1186.97,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,59649.0,0.0,2.0,0.0,0.0,51.0,16487.0,,0.0,1.0,24506.0,64.0,57300.0,0.0,0.0,0.0,1.0,11930.0,14138.0,63.7,0.0,0.0,121.0,353.0,13.0,13.0,1.0,13.0,,,,0.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,0.0,77.8,33.3,0.0,0.0,134571.0,59649.0,57300.0,77271.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89794656,,22500.0,22500.0,22500.0, 36 months,16.99,802.08,D,D1,RFP Team Lead,< 1 year,MORTGAGE,85000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89794656,,home_improvement,Debt consolidation,441xx,OH,27.84,0.0,Aug-2002,675.0,679.0,1.0,58.0,87.0,32.0,1.0,28344.0,69.1,46.0,w,0.0,0.0,25283.3493538164,25283.35,22500.0,2783.35,0.0,0.0,0.0,Jul-2017,18245.16,,Mar-2019,684.0,680.0,0.0,58.0,1.0,Individual,,,,0.0,0.0,292420.0,0.0,14.0,0.0,3.0,15.0,86300.0,90.0,3.0,10.0,7936.0,84.0,41000.0,1.0,0.0,2.0,13.0,9138.0,731.0,96.1,0.0,0.0,169.0,153.0,11.0,11.0,2.0,12.0,,6.0,,1.0,6.0,15.0,6.0,10.0,23.0,17.0,21.0,15.0,32.0,0.0,0.0,0.0,3.0,97.8,100.0,1.0,0.0,328877.0,114644.0,18600.0,95919.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88848117,,35000.0,35000.0,35000.0, 60 months,9.49,734.9,B,B2,president,10+ years,MORTGAGE,260000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88848117,,debt_consolidation,Debt consolidation,223xx,VA,13.55,0.0,Mar-2006,715.0,719.0,0.0,,78.0,11.0,2.0,23255.0,46.5,24.0,w,20140.55,20140.55,21293.65,21293.65,14859.45,6434.2,0.0,0.0,0.0,Mar-2019,734.9,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,536290.0,0.0,5.0,1.0,3.0,8.0,69664.0,66.0,0.0,0.0,13773.0,59.0,50000.0,0.0,0.0,0.0,4.0,48754.0,26745.0,46.5,0.0,0.0,109.0,126.0,26.0,8.0,3.0,26.0,,,,0.0,4.0,4.0,4.0,7.0,12.0,4.0,9.0,4.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,2.0,667118.0,92919.0,50000.0,118318.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186220,,27600.0,27600.0,27600.0, 36 months,10.99,903.46,B,B4,Public Relations Specialist,10+ years,MORTGAGE,97000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186220,,debt_consolidation,Debt consolidation,921xx,CA,27.61,0.0,Jul-1995,670.0,674.0,2.0,,60.0,14.0,1.0,16077.0,55.1,32.0,w,0.0,0.0,19256.21,19256.21,12500.63,2420.58,0.0,4335.0,780.3,Sep-2017,903.46,,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,0.0,105090.0,2.0,10.0,1.0,2.0,2.0,89013.0,73.0,1.0,1.0,8384.0,70.0,29200.0,1.0,2.0,4.0,3.0,7506.0,3030.0,82.7,0.0,0.0,135.0,254.0,2.0,2.0,1.0,36.0,,1.0,,0.0,2.0,3.0,2.0,8.0,11.0,4.0,20.0,3.0,14.0,0.0,0.0,0.0,2.0,100.0,100.0,1.0,0.0,150406.0,105090.0,17500.0,121206.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Feb-2018,ACTIVE,Feb-2018,7127.0,45.01,18.0 +90694713,,35000.0,35000.0,35000.0, 36 months,18.99,1282.79,D,D3,Federal Officer,10+ years,RENT,105000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694713,,debt_consolidation,Debt consolidation,603xx,IL,16.21,0.0,Dec-2006,690.0,694.0,0.0,,,13.0,0.0,32103.0,87.2,25.0,w,11083.6,11083.6,34694.37,34694.37,23916.4,10777.97,0.0,0.0,0.0,Mar-2019,1282.79,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,190994.0,0.0,1.0,0.0,0.0,31.0,14899.0,49.0,2.0,4.0,4904.0,70.0,36800.0,0.0,0.0,2.0,4.0,15916.0,591.0,94.6,0.0,0.0,106.0,117.0,7.0,7.0,1.0,13.0,,0.0,,0.0,5.0,10.0,5.0,7.0,7.0,10.0,15.0,10.0,13.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,234795.0,47002.0,10900.0,30254.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89937086,,30000.0,30000.0,30000.0, 36 months,8.99,953.86,B,B1,Ticket agent,3 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937086,,debt_consolidation,Debt consolidation,025xx,AK,14.5,0.0,Jan-1989,685.0,689.0,0.0,65.0,73.0,12.0,1.0,13276.0,39.6,16.0,w,0.0,0.0,31429.3626424638,31429.36,30000.0,1429.36,0.0,0.0,0.0,Apr-2017,26675.04,,Mar-2019,739.0,735.0,0.0,65.0,1.0,Individual,,,,0.0,0.0,158083.0,2.0,2.0,0.0,2.0,13.0,33086.0,72.0,2.0,4.0,9188.0,57.0,33500.0,1.0,2.0,1.0,6.0,13174.0,6624.0,66.7,0.0,0.0,147.0,332.0,0.0,0.0,1.0,16.0,,12.0,,1.0,5.0,5.0,5.0,5.0,4.0,8.0,10.0,5.0,12.0,0.0,0.0,0.0,2.0,87.5,20.0,0.0,0.0,232084.0,46861.0,19900.0,46129.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191049,,3050.0,3050.0,3050.0, 36 months,14.49,104.97,C,C4,Management Analyst,10+ years,MORTGAGE,110000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191049,,major_purchase,Major purchase,200xx,DC,5.86,0.0,May-2004,665.0,669.0,0.0,35.0,,11.0,0.0,17776.0,62.6,21.0,w,0.0,0.0,3675.7317791114,3675.73,3050.0,625.73,0.0,0.0,0.0,Sep-2018,1363.12,,Mar-2019,714.0,710.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,19615.0,2.0,1.0,1.0,1.0,9.0,1839.0,86.0,2.0,5.0,7891.0,64.0,28400.0,0.0,1.0,2.0,7.0,1783.0,1324.0,93.1,0.0,0.0,112.0,148.0,2.0,2.0,1.0,2.0,35.0,4.0,35.0,0.0,6.0,6.0,6.0,11.0,4.0,10.0,16.0,6.0,11.0,0.0,0.0,0.0,3.0,95.2,83.3,0.0,0.0,30550.0,19615.0,19100.0,2150.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221239,,15000.0,15000.0,15000.0, 60 months,9.49,314.96,B,B2,Admin Analyst,10+ years,OWN,95500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221239,,debt_consolidation,Debt consolidation,305xx,GA,26.63,0.0,Apr-1982,705.0,709.0,0.0,48.0,,36.0,0.0,55130.0,45.4,56.0,w,8628.63,8628.63,9157.56,9157.56,6371.37,2786.19,0.0,0.0,0.0,Mar-2019,314.96,Apr-2019,Mar-2019,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,180258.0,2.0,4.0,1.0,1.0,3.0,61182.0,76.0,2.0,4.0,11138.0,51.0,121417.0,1.0,5.0,0.0,6.0,5462.0,32544.0,59.2,0.0,0.0,123.0,413.0,3.0,3.0,3.0,3.0,,23.0,,0.0,13.0,21.0,14.0,20.0,12.0,31.0,41.0,21.0,36.0,0.0,0.0,0.0,3.0,96.4,28.6,0.0,0.0,264142.0,116312.0,79800.0,67725.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694883,,5000.0,5000.0,5000.0, 36 months,8.59,158.05,A,A5,CRO,10+ years,OWN,130000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694883,,major_purchase,Major purchase,302xx,GA,14.02,1.0,Nov-1993,720.0,724.0,0.0,19.0,37.0,11.0,1.0,14997.0,37.4,20.0,w,1075.2,1075.2,4581.06,4581.06,3924.8,656.26,0.0,0.0,0.0,Mar-2019,158.05,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,298704.0,2.0,3.0,2.0,2.0,1.0,37683.0,87.0,0.0,2.0,6588.0,63.0,40100.0,0.0,12.0,0.0,5.0,27155.0,5437.0,60.9,0.0,0.0,140.0,274.0,24.0,1.0,1.0,24.0,19.0,,19.0,0.0,3.0,6.0,3.0,4.0,10.0,7.0,9.0,6.0,11.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,1.0,338623.0,52680.0,13900.0,43148.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90309474,,20000.0,20000.0,20000.0, 36 months,8.99,635.91,B,B1,EVP,8 years,RENT,102000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90309474,,credit_card,Credit card refinancing,750xx,TX,14.31,0.0,Apr-2006,665.0,669.0,0.0,54.0,,21.0,0.0,29008.0,50.4,36.0,w,0.0,0.0,22453.06,22453.06,20000.0,2453.06,0.0,0.0,0.0,Jul-2018,9679.93,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,34016.0,1.0,1.0,0.0,1.0,22.0,5008.0,76.0,4.0,8.0,2759.0,53.0,57500.0,0.0,0.0,2.0,9.0,1620.0,20704.0,49.1,0.0,0.0,80.0,125.0,6.0,6.0,0.0,6.0,54.0,8.0,54.0,0.0,15.0,19.0,15.0,22.0,6.0,20.0,30.0,19.0,21.0,0.0,0.0,0.0,4.0,97.2,6.7,0.0,0.0,64100.0,34016.0,40700.0,6600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89904727,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,Sr. Executive IT Recruiter,2 years,MORTGAGE,114000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89904727,,debt_consolidation,Debt consolidation,064xx,CT,25.13,0.0,Sep-1987,705.0,709.0,1.0,64.0,59.0,24.0,1.0,22686.0,48.6,41.0,w,0.0,0.0,10309.45,10309.45,6022.49,4286.96,0.0,0.0,0.0,May-2018,543.5,,Dec-2018,524.0,520.0,0.0,,1.0,Individual,,,,0.0,0.0,331117.0,1.0,10.0,3.0,8.0,4.0,90268.0,84.0,1.0,2.0,3349.0,74.0,46700.0,2.0,9.0,1.0,10.0,13797.0,5300.0,66.5,0.0,0.0,119.0,348.0,9.0,4.0,3.0,25.0,64.0,5.0,64.0,0.0,5.0,13.0,5.0,7.0,16.0,13.0,22.0,13.0,24.0,0.0,0.0,0.0,4.0,97.6,40.0,0.0,0.0,417648.0,112954.0,15800.0,106948.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89908987,,7000.0,7000.0,7000.0, 36 months,12.79,235.16,C,C1,Correctional Officer,5 years,MORTGAGE,84000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89908987,,vacation,Vacation,957xx,CA,1.16,0.0,Nov-1992,665.0,669.0,3.0,47.0,50.0,7.0,1.0,4267.0,14.3,40.0,w,0.0,0.0,7280.8089123525,7280.81,7000.0,280.81,0.0,0.0,0.0,Jan-2017,6815.46,,Feb-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,4267.0,1.0,0.0,2.0,4.0,7.0,0.0,,1.0,6.0,2626.0,14.0,29900.0,1.0,3.0,6.0,10.0,610.0,13233.0,24.4,0.0,0.0,140.0,286.0,1.0,1.0,2.0,18.0,,0.0,,0.0,3.0,3.0,3.0,15.0,12.0,7.0,26.0,3.0,7.0,0.0,0.0,0.0,3.0,96.9,0.0,1.0,0.0,29900.0,4267.0,17500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692802,,11200.0,11200.0,11200.0, 36 months,10.49,363.98,B,B3,Warehouse Manager,7 years,MORTGAGE,65000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692802,,debt_consolidation,Debt consolidation,972xx,OR,10.76,0.0,Dec-2004,715.0,719.0,2.0,37.0,,12.0,0.0,7721.0,18.8,17.0,w,2056.68,2056.68,10876.95,10876.95,9143.32,1733.63,0.0,0.0,0.0,Mar-2019,363.98,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Joint App,107000.0,8.85,Not Verified,0.0,0.0,36717.0,2.0,1.0,1.0,1.0,3.0,28996.0,98.0,1.0,5.0,3373.0,52.0,41100.0,0.0,2.0,3.0,6.0,3338.0,13169.0,28.8,0.0,0.0,141.0,122.0,3.0,3.0,0.0,15.0,,3.0,,0.0,2.0,4.0,5.0,5.0,5.0,11.0,12.0,4.0,12.0,0.0,0.0,0.0,2.0,94.1,0.0,0.0,0.0,70689.0,36717.0,18500.0,29589.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90382341,,15000.0,15000.0,15000.0, 36 months,11.49,494.57,B,B5,owner,10+ years,MORTGAGE,145000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90382341,,home_improvement,Home improvement,275xx,NC,16.99,0.0,Jan-2001,710.0,714.0,3.0,45.0,66.0,13.0,2.0,11880.0,36.4,31.0,w,0.0,0.0,17034.321151108998,17034.32,15000.0,2034.32,0.0,0.0,0.0,Mar-2018,9130.78,,Jul-2018,694.0,690.0,0.0,78.0,1.0,Individual,,,,0.0,0.0,96005.0,5.0,4.0,1.0,3.0,3.0,80809.0,83.0,4.0,10.0,6243.0,66.0,32600.0,7.0,1.0,8.0,15.0,7385.0,11570.0,47.4,0.0,0.0,123.0,188.0,3.0,2.0,3.0,4.0,77.0,1.0,45.0,1.0,4.0,5.0,5.0,10.0,10.0,8.0,17.0,5.0,13.0,0.0,0.0,0.0,6.0,96.3,20.0,0.0,2.0,125410.0,96005.0,22000.0,89494.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90151774,,7200.0,7200.0,7200.0, 36 months,13.99,246.05,C,C3,Accounts Receivable Associate,< 1 year,RENT,55000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90151774,,debt_consolidation,Debt consolidation,300xx,GA,21.27,1.0,Apr-2000,660.0,664.0,0.0,4.0,,20.0,0.0,4688.0,34.5,26.0,w,1644.52,1644.52,7149.43,7149.43,5555.48,1593.95,0.0,0.0,0.0,Mar-2019,246.05,Apr-2019,Mar-2019,699.0,695.0,0.0,4.0,1.0,Individual,,,,0.0,1928.0,73218.0,0.0,14.0,0.0,2.0,24.0,68530.0,109.0,2.0,4.0,2380.0,96.0,13600.0,1.0,1.0,3.0,6.0,3661.0,6843.0,35.4,0.0,0.0,197.0,65.0,9.0,9.0,0.0,9.0,,0.0,,0.0,4.0,6.0,4.0,4.0,20.0,6.0,6.0,6.0,20.0,0.0,0.0,1.0,2.0,92.0,0.0,0.0,0.0,76556.0,73218.0,10600.0,62956.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695823,,7000.0,7000.0,7000.0, 36 months,13.49,237.52,C,C2,loan officer,3 years,OWN,175000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695823,,debt_consolidation,Debt consolidation,917xx,CA,5.54,0.0,Jan-2004,700.0,704.0,1.0,27.0,46.0,9.0,1.0,2320.0,27.0,13.0,w,0.0,0.0,7322.2797501793,7322.28,7000.0,322.28,0.0,0.0,0.0,Mar-2017,3377.45,,Mar-2017,729.0,725.0,0.0,48.0,1.0,Individual,,,,0.0,0.0,28546.0,1.0,2.0,2.0,3.0,7.0,26226.0,89.0,5.0,7.0,2285.0,75.0,8600.0,4.0,0.0,4.0,10.0,3172.0,4680.0,33.1,0.0,0.0,152.0,22.0,6.0,6.0,0.0,6.0,,4.0,,1.0,2.0,2.0,5.0,5.0,5.0,7.0,7.0,2.0,9.0,0.0,0.0,0.0,7.0,100.0,0.0,0.0,1.0,38228.0,28546.0,7000.0,29628.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611115,,16000.0,16000.0,16000.0, 36 months,6.99,493.97,A,A2,Violation Removal Specialist,4 years,MORTGAGE,115000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611115,,home_improvement,Home improvement,115xx,NY,9.73,1.0,Mar-1991,720.0,724.0,1.0,13.0,,9.0,0.0,25036.0,55.0,22.0,w,3378.24,3378.24,14318.92,14318.92,12621.76,1697.16,0.0,0.0,0.0,Mar-2019,493.97,Apr-2019,Mar-2019,724.0,720.0,0.0,39.0,1.0,Individual,,,,0.0,0.0,333616.0,1.0,1.0,0.0,0.0,46.0,6565.0,26.0,1.0,2.0,12128.0,45.0,45500.0,0.0,3.0,1.0,3.0,47659.0,16487.0,54.8,0.0,0.0,166.0,305.0,2.0,2.0,1.0,2.0,13.0,2.0,13.0,1.0,3.0,5.0,3.0,7.0,6.0,7.0,13.0,5.0,8.0,0.0,0.0,0.0,1.0,90.9,33.3,0.0,0.0,379500.0,31601.0,36500.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631543,,10000.0,10000.0,10000.0, 60 months,17.99,253.88,D,D2,Maintenance Supervisor,10+ years,MORTGAGE,38000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631543,,debt_consolidation,Debt consolidation,657xx,MO,19.87,0.0,Dec-2005,660.0,664.0,1.0,,30.0,8.0,1.0,5310.0,60.3,62.0,f,7314.09,7314.09,5929.66,5929.66,2685.91,3228.75,15.0,0.0,0.0,Dec-2018,109.66,Apr-2019,Mar-2019,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,16904.0,2.0,3.0,7.0,11.0,3.0,11594.0,86.0,0.0,3.0,2449.0,76.0,8800.0,6.0,1.0,5.0,14.0,2113.0,1613.0,74.4,0.0,0.0,129.0,111.0,17.0,3.0,0.0,26.0,,0.0,,0.0,2.0,3.0,2.0,3.0,53.0,5.0,9.0,3.0,8.0,0.0,0.0,0.0,7.0,100.0,50.0,1.0,0.0,22311.0,16904.0,6300.0,13511.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,INCOME_CURTAILMENT,COMPLETED,3.0,109.66,Oct-2018,Dec-2018,Oct-2018,3.0,17.0,Late (16-30 days),328.98,7500.88,193.1,Cash,N,,,,,, +90693549,,35000.0,35000.0,35000.0, 60 months,13.49,805.17,C,C2,special education teacher,10+ years,MORTGAGE,68840.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693549,,debt_consolidation,Debt consolidation,149xx,NY,15.1,0.0,Jan-1996,760.0,764.0,2.0,,,20.0,0.0,17892.0,18.9,54.0,w,20976.43,20976.43,23387.78,23387.78,14023.57,9364.21,0.0,0.0,0.0,Mar-2019,805.17,Apr-2019,Mar-2019,799.0,795.0,0.0,,1.0,Joint App,143840.0,27.57,Not Verified,0.0,0.0,110241.0,1.0,1.0,0.0,1.0,23.0,7436.0,24.0,3.0,5.0,2797.0,20.0,94800.0,1.0,6.0,3.0,6.0,5802.0,66263.0,16.4,0.0,0.0,248.0,237.0,5.0,5.0,1.0,13.0,,3.0,,0.0,7.0,11.0,10.0,19.0,10.0,18.0,42.0,11.0,20.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,220160.0,25328.0,79300.0,30776.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230865,,40000.0,40000.0,40000.0, 60 months,13.99,930.53,C,C3,Branch Manager,10+ years,RENT,135000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230865,,debt_consolidation,Debt consolidation,907xx,CA,12.36,0.0,May-1987,685.0,689.0,2.0,50.0,,9.0,0.0,49160.0,78.9,17.0,w,0.0,0.0,45947.3371489293,45947.34,40000.0,5947.34,0.0,0.0,0.0,Nov-2017,34780.99,,Dec-2018,699.0,695.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,61350.0,0.0,1.0,0.0,1.0,18.0,12190.0,75.0,0.0,0.0,9930.0,78.0,62300.0,1.0,4.0,2.0,1.0,6817.0,5370.0,64.9,0.0,0.0,119.0,352.0,103.0,18.0,1.0,103.0,,0.0,50.0,3.0,1.0,3.0,4.0,4.0,3.0,8.0,13.0,3.0,9.0,0.0,0.0,0.0,0.0,82.4,25.0,0.0,0.0,78600.0,61350.0,15300.0,16300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695897,,5000.0,5000.0,5000.0, 36 months,10.99,163.67,B,B4,Smg,4 years,MORTGAGE,92000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695897,,vacation,Vacation,070xx,NJ,10.37,1.0,Jul-2002,660.0,664.0,2.0,1.0,,13.0,0.0,9169.0,32.5,31.0,w,0.0,0.0,5009.4,5009.4,5000.0,9.4,0.0,0.0,0.0,Oct-2016,5012.45,,Sep-2016,664.0,660.0,0.0,1.0,1.0,Individual,,,,1.0,0.0,458370.0,0.0,1.0,0.0,0.0,44.0,8825.0,32.0,1.0,4.0,2638.0,32.0,28200.0,1.0,0.0,3.0,4.0,35259.0,14554.0,37.3,0.0,65000.0,130.0,170.0,8.0,8.0,3.0,8.0,,1.0,24.0,2.0,7.0,8.0,7.0,16.0,2.0,10.0,25.0,8.0,12.0,1.0,0.0,1.0,1.0,90.3,0.0,0.0,0.0,532463.0,17994.0,23200.0,27863.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88819393,,40000.0,40000.0,40000.0, 36 months,14.49,1376.65,C,C4,Operations Lead,< 1 year,MORTGAGE,90000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88819393,,home_improvement,Home improvement,950xx,CA,15.32,0.0,Feb-2009,700.0,704.0,0.0,,,9.0,0.0,37418.0,78.8,17.0,w,0.0,0.0,42923.3179803194,42923.32,40000.0,2923.32,0.0,0.0,0.0,Apr-2017,36072.27,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,467324.0,0.0,1.0,0.0,0.0,30.0,10657.0,57.0,0.0,10.0,10271.0,73.0,47500.0,0.0,0.0,0.0,10.0,51925.0,10082.0,78.8,0.0,0.0,45.0,91.0,18.0,18.0,3.0,18.0,,18.0,,0.0,7.0,7.0,7.0,12.0,2.0,7.0,12.0,7.0,9.0,0.0,0.0,0.0,0.0,100.0,85.7,0.0,0.0,522080.0,48075.0,47500.0,18580.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404084,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Upkeep,10+ years,MORTGAGE,110000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404084,,debt_consolidation,Debt consolidation,630xx,MO,7.15,0.0,May-2002,670.0,674.0,0.0,75.0,,4.0,0.0,0.0,,11.0,w,23871.26,23871.26,24221.72,24221.72,11128.74,12959.69,133.29,0.0,0.0,Mar-2019,933.01,Apr-2019,Mar-2019,749.0,745.0,0.0,79.0,1.0,Joint App,138000.0,12.35,Not Verified,0.0,0.0,95783.0,0.0,2.0,0.0,0.0,32.0,30903.0,64.0,0.0,0.0,0.0,64.0,0.0,0.0,1.0,1.0,0.0,31928.0,,,0.0,0.0,172.0,82.0,52.0,32.0,4.0,,,2.0,,1.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,90.9,,0.0,0.0,124470.0,30903.0,0.0,48314.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89078807,,14025.0,14025.0,14025.0, 60 months,26.99,428.18,F,F3,Quality Control,3 years,MORTGAGE,39000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89078807,,debt_consolidation,Debt consolidation,310xx,GA,20.03,0.0,Mar-2007,675.0,679.0,0.0,,6.0,8.0,1.0,10209.0,71.4,20.0,f,9483.65,9483.65,12364.65,12364.65,4541.35,7823.3,0.0,0.0,0.0,Mar-2019,428.18,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,26394.0,0.0,2.0,1.0,3.0,12.0,16185.0,79.0,1.0,2.0,5122.0,76.0,14300.0,5.0,0.0,2.0,5.0,3299.0,1163.0,88.4,0.0,0.0,114.0,107.0,7.0,7.0,0.0,7.0,,3.0,,0.0,2.0,3.0,3.0,3.0,11.0,6.0,9.0,3.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,1.0,34848.0,26394.0,10000.0,20548.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90290489,,17000.0,17000.0,17000.0, 60 months,26.99,519.0,F,F3,Business developmental manager,3 years,MORTGAGE,80000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90290489,,debt_consolidation,Debt consolidation,350xx,AL,16.76,1.0,May-2007,675.0,679.0,2.0,6.0,,19.0,0.0,13123.0,40.9,24.0,w,11495.57,11495.57,15025.51,15025.51,5504.43,9521.08,0.0,0.0,0.0,Mar-2019,519.0,Apr-2019,Mar-2019,574.0,570.0,0.0,,1.0,Individual,,,,0.0,0.0,235499.0,1.0,2.0,2.0,2.0,6.0,48747.0,90.0,2.0,9.0,5033.0,52.0,32100.0,1.0,2.0,4.0,12.0,15700.0,14710.0,36.0,0.0,0.0,110.0,112.0,10.0,6.0,1.0,11.0,,1.0,6.0,0.0,3.0,5.0,11.0,11.0,6.0,16.0,17.0,5.0,19.0,0.0,0.0,0.0,4.0,95.8,14.3,0.0,0.0,261524.0,61870.0,23000.0,51976.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631182,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Service Mechanic,10+ years,RENT,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631182,,debt_consolidation,Debt consolidation,923xx,CA,15.36,0.0,May-2002,670.0,674.0,0.0,,83.0,6.0,1.0,3418.0,35.2,11.0,w,20193.39,20193.39,20879.56,20879.56,9806.61,11072.95,0.0,0.0,0.0,Mar-2019,761.64,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,45524.0,0.0,3.0,0.0,3.0,13.0,42106.0,79.0,0.0,0.0,3418.0,72.0,9700.0,0.0,1.0,1.0,3.0,7587.0,3082.0,52.6,0.0,0.0,122.0,172.0,30.0,13.0,0.0,46.0,,11.0,,0.0,1.0,1.0,1.0,2.0,6.0,3.0,5.0,1.0,6.0,0.0,0.0,0.0,0.0,100.0,0.0,1.0,0.0,63103.0,45524.0,6500.0,53403.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,EXCESSIVE_OBLIGATIONS,COMPLETED,3.0,316.39,Dec-2018,Mar-2019,Dec-2018,3.0,19.0,In Grace Period,949.17,20861.66,605.88,Cash,N,,,,,, +90461710,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,Shipping Supervisor ,2 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461710,,debt_consolidation,Debt consolidation,450xx,OH,17.5,0.0,Sep-2005,670.0,674.0,1.0,,77.0,15.0,1.0,14439.0,45.8,22.0,w,3486.54,3486.54,15192.58,15192.58,11513.46,3679.12,0.0,0.0,0.0,Mar-2019,524.33,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,122.0,118406.0,2.0,1.0,0.0,1.0,16.0,21219.0,82.0,4.0,7.0,3930.0,62.0,31500.0,3.0,1.0,4.0,10.0,7894.0,14903.0,49.1,0.0,0.0,121.0,132.0,4.0,4.0,4.0,5.0,,0.0,,0.0,10.0,11.0,10.0,11.0,4.0,13.0,14.0,11.0,15.0,0.0,0.0,0.0,5.0,100.0,0.0,1.0,0.0,140970.0,35658.0,29300.0,25788.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641239,,7850.0,7850.0,7850.0, 36 months,13.49,266.36,C,C2,hosstes/cashier,10+ years,MORTGAGE,27000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641239,,credit_card,Credit card refinancing,891xx,NV,26.22,0.0,Feb-2001,670.0,674.0,2.0,,73.0,9.0,1.0,9173.0,42.7,22.0,w,1783.19,1783.19,7718.56,7718.56,6066.81,1651.75,0.0,0.0,0.0,Mar-2019,266.36,Apr-2019,Mar-2019,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,131315.0,1.0,1.0,1.0,1.0,9.0,2848.0,81.0,3.0,4.0,3491.0,48.0,21500.0,3.0,1.0,4.0,7.0,14591.0,8762.0,49.1,0.0,0.0,128.0,187.0,6.0,6.0,4.0,6.0,,5.0,,0.0,5.0,7.0,5.0,11.0,3.0,7.0,15.0,7.0,9.0,0.0,0.0,0.0,4.0,100.0,20.0,1.0,0.0,147735.0,12021.0,17200.0,3500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571715,,12000.0,12000.0,12000.0, 36 months,8.99,381.55,B,B1,Senior Nuclear Medicine Technologist,10+ years,MORTGAGE,94000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571715,,credit_card,Credit card refinancing,633xx,MO,12.24,0.0,May-1984,705.0,709.0,2.0,,,14.0,0.0,10413.0,36.2,20.0,w,2592.23,2592.23,11058.96,11058.96,9407.77,1651.19,0.0,0.0,0.0,Mar-2019,381.55,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,288514.0,1.0,6.0,2.0,2.0,10.0,119103.0,101.0,1.0,4.0,3568.0,88.0,28800.0,1.0,0.0,7.0,7.0,20608.0,5675.0,54.6,0.0,0.0,117.0,388.0,5.0,5.0,4.0,5.0,,0.0,,0.0,3.0,5.0,3.0,3.0,8.0,7.0,8.0,5.0,14.0,0.0,0.0,0.0,4.0,100.0,66.7,0.0,0.0,309358.0,129516.0,12500.0,118377.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581463,,2000.0,2000.0,2000.0, 36 months,7.59,62.3,A,A3,Clerk,10+ years,MORTGAGE,45000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581463,,home_improvement,Home improvement,620xx,IL,5.36,1.0,Oct-1992,700.0,704.0,1.0,3.0,,6.0,0.0,28433.0,85.6,31.0,w,389.24,389.24,1835.86,1835.86,1610.76,225.1,0.0,0.0,0.0,Mar-2019,62.3,Apr-2019,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,124925.0,0.0,0.0,0.0,0.0,147.0,0.0,,1.0,1.0,0.0,86.0,33200.0,0.0,5.0,1.0,2.0,20821.0,,,0.0,0.0,167.0,287.0,9.0,9.0,3.0,,3.0,5.0,3.0,0.0,0.0,3.0,0.0,11.0,4.0,5.0,24.0,3.0,6.0,0.0,0.0,0.0,1.0,87.1,,0.0,0.0,139550.0,28433.0,0.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541567,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Business Consultant,3 years,MORTGAGE,95000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541567,,debt_consolidation,Debt consolidation,554xx,MN,28.02,0.0,Sep-2000,735.0,739.0,0.0,,,12.0,0.0,53959.0,70.6,24.0,w,0.0,0.0,42666.5551245279,42666.56,35000.0,7666.56,0.0,0.0,0.0,Apr-2018,28356.86,,May-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,239527.0,0.0,2.0,0.0,1.0,21.0,32180.0,57.0,1.0,2.0,19812.0,65.0,76400.0,0.0,0.0,0.0,3.0,19961.0,17016.0,75.3,0.0,0.0,165.0,192.0,12.0,12.0,1.0,12.0,,,,0.0,4.0,5.0,6.0,7.0,9.0,9.0,14.0,5.0,12.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,300486.0,86139.0,69000.0,56447.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150894,,23350.0,23350.0,23350.0, 60 months,24.49,678.39,E,E3,Taxi and Lodging chief,10+ years,RENT,73000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150894,,debt_consolidation,Debt consolidation,306xx,GA,21.42,0.0,Jun-2004,660.0,664.0,0.0,35.0,,14.0,0.0,6671.0,64.1,32.0,w,15487.03,15487.03,19816.26,19816.26,7862.97,11953.29,0.0,0.0,0.0,Mar-2019,678.39,Apr-2019,Mar-2019,609.0,605.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,36725.0,1.0,3.0,1.0,4.0,11.0,30054.0,78.0,2.0,6.0,1791.0,75.0,10400.0,0.0,2.0,1.0,10.0,2623.0,1533.0,76.4,1.0,0.0,142.0,147.0,2.0,2.0,0.0,2.0,35.0,10.0,35.0,2.0,6.0,9.0,7.0,13.0,11.0,11.0,21.0,9.0,14.0,0.0,0.0,0.0,3.0,90.6,42.9,0.0,0.0,48866.0,36725.0,6500.0,38466.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405595,,36000.0,36000.0,36000.0, 60 months,14.49,846.84,C,C4,Senior Technical Writer,10+ years,MORTGAGE,55000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405595,,medical,Medical expenses,630xx,MO,57.41,0.0,Jul-1999,750.0,754.0,1.0,,,25.0,0.0,24932.0,30.9,64.0,w,21616.92,21616.92,24679.38,24679.38,14383.08,10296.3,0.0,0.0,0.0,Mar-2019,846.84,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Joint App,135000.0,23.39,Not Verified,0.0,0.0,259059.0,2.0,4.0,2.0,3.0,0.0,169960.0,69.0,0.0,5.0,7189.0,48.0,80600.0,2.0,4.0,2.0,8.0,11263.0,26978.0,45.7,0.0,0.0,163.0,206.0,13.0,0.0,2.0,20.0,,0.0,,0.0,6.0,8.0,8.0,16.0,24.0,19.0,38.0,8.0,25.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,331685.0,194892.0,49700.0,176674.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90152350,,8500.0,8500.0,8500.0, 36 months,16.99,303.01,D,D1,Bartender,1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90152350,,debt_consolidation,Debt consolidation,532xx,WI,27.05,0.0,Apr-2009,695.0,699.0,3.0,,,7.0,0.0,8520.0,44.6,11.0,w,0.0,0.0,9820.7575575668,9820.76,8500.0,1320.76,0.0,0.0,0.0,Oct-2017,6495.67,,Oct-2017,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,16198.0,0.0,1.0,0.0,1.0,18.0,7678.0,53.0,0.0,2.0,2841.0,48.0,19100.0,4.0,0.0,3.0,4.0,2314.0,6940.0,52.1,0.0,0.0,89.0,65.0,13.0,13.0,0.0,13.0,,0.0,,0.0,4.0,5.0,4.0,4.0,3.0,6.0,6.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,25.0,0.0,0.0,33587.0,16198.0,14500.0,14487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90275881,,21000.0,21000.0,21000.0, 36 months,7.99,657.97,A,A4,Owner Vice President,10+ years,MORTGAGE,189000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90275881,,debt_consolidation,Debt consolidation,245xx,VA,21.66,0.0,Sep-1991,730.0,734.0,1.0,,,29.0,0.0,155991.0,42.0,46.0,w,4485.41,4485.41,19071.81,19071.81,16514.59,2557.22,0.0,0.0,0.0,Mar-2019,657.97,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,503705.0,1.0,2.0,0.0,0.0,31.0,22203.0,48.0,1.0,2.0,21025.0,43.0,292200.0,0.0,2.0,1.0,2.0,17369.0,96335.0,46.2,0.0,0.0,120.0,300.0,5.0,5.0,6.0,5.0,,5.0,,0.0,16.0,22.0,17.0,21.0,8.0,26.0,32.0,22.0,29.0,0.0,0.0,0.0,1.0,100.0,5.9,0.0,0.0,734684.0,178194.0,179100.0,46046.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591418,,8000.0,8000.0,8000.0, 36 months,12.79,268.75,C,C1,Manager,2 years,MORTGAGE,109000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591418,,debt_consolidation,Debt consolidation,951xx,CA,14.0,1.0,Aug-2006,695.0,699.0,2.0,20.0,,12.0,0.0,79295.0,56.2,27.0,w,0.0,0.0,8751.016780259,8751.02,8000.0,751.02,0.0,0.0,0.0,Jul-2017,6569.76,,Mar-2019,749.0,745.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,701777.0,4.0,1.0,0.0,0.0,36.0,1142.0,6.0,3.0,3.0,4950.0,34.0,91800.0,4.0,1.0,7.0,4.0,70178.0,5245.0,70.0,0.0,0.0,121.0,121.0,2.0,2.0,1.0,2.0,20.0,0.0,20.0,0.0,4.0,5.0,5.0,10.0,8.0,10.0,18.0,5.0,12.0,0.0,0.0,0.0,4.0,96.2,40.0,0.0,0.0,735300.0,80437.0,17500.0,18000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90242018,,8000.0,8000.0,8000.0, 36 months,22.39,307.15,E,E1,Paralegal,8 years,RENT,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242018,,debt_consolidation,Debt consolidation,331xx,FL,22.41,0.0,Oct-1998,665.0,669.0,0.0,35.0,,8.0,0.0,10234.0,81.9,22.0,w,0.0,0.0,8889.841005881999,8889.84,8000.0,889.84,0.0,0.0,0.0,May-2017,4699.43,,Mar-2019,674.0,670.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,35134.0,1.0,2.0,2.0,2.0,8.0,24900.0,86.0,1.0,4.0,5811.0,85.0,12500.0,2.0,2.0,4.0,6.0,4392.0,295.0,96.9,0.0,0.0,132.0,215.0,4.0,4.0,0.0,4.0,,8.0,38.0,2.0,3.0,5.0,3.0,8.0,6.0,6.0,16.0,5.0,8.0,0.0,0.0,0.0,3.0,86.4,100.0,0.0,0.0,41432.0,35134.0,9500.0,28932.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451497,,17600.0,17600.0,17600.0, 36 months,18.99,645.06,D,D3,Clinic Assistant Manager,9 years,MORTGAGE,36748.8,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451497,,debt_consolidation,Debt consolidation,973xx,OR,33.9,1.0,Aug-2011,680.0,684.0,0.0,9.0,,6.0,0.0,5706.0,52.8,11.0,w,0.0,0.0,20417.3643110579,20417.36,17600.0,2817.36,0.0,0.0,0.0,Aug-2017,14041.04,,Mar-2019,574.0,570.0,0.0,,1.0,Joint App,72537.6,20.07,Not Verified,0.0,0.0,173602.0,0.0,2.0,1.0,3.0,12.0,29667.0,79.0,1.0,1.0,4595.0,73.0,10800.0,2.0,2.0,1.0,4.0,28934.0,0.0,102.1,0.0,0.0,20.0,61.0,9.0,9.0,1.0,61.0,,9.0,9.0,0.0,1.0,3.0,1.0,3.0,3.0,3.0,7.0,3.0,6.0,0.0,0.0,0.0,2.0,90.9,100.0,0.0,0.0,200509.0,35373.0,4500.0,37669.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141995,,28000.0,28000.0,28000.0, 60 months,24.49,813.49,E,E3,Lead Security,10+ years,MORTGAGE,52000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141995,,debt_consolidation,Debt consolidation,850xx,AZ,15.7,1.0,Jan-1984,660.0,664.0,0.0,4.0,,8.0,0.0,6486.0,63.6,15.0,w,0.0,0.0,16510.3,16510.3,4526.1,8658.54,0.0,3325.66,598.6188,Feb-2018,813.49,,Aug-2018,524.0,520.0,0.0,4.0,1.0,Joint App,84000.0,18.68,Not Verified,0.0,1807.0,115263.0,1.0,2.0,2.0,3.0,8.0,13333.0,88.0,3.0,4.0,1234.0,78.0,10200.0,0.0,2.0,2.0,7.0,14408.0,232.0,90.3,0.0,0.0,392.0,117.0,2.0,2.0,2.0,8.0,,7.0,54.0,2.0,2.0,4.0,2.0,2.0,8.0,4.0,5.0,4.0,8.0,0.0,0.0,1.0,5.0,86.7,100.0,0.0,0.0,226261.0,19819.0,2400.0,15135.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481753,,2500.0,2500.0,2500.0, 36 months,6.99,77.19,A,A2,MRI Technologist,10+ years,MORTGAGE,57000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481753,,car,Car financing,180xx,PA,6.46,0.0,May-1999,750.0,754.0,0.0,,,5.0,0.0,13038.0,46.1,20.0,w,527.62,527.62,2237.54,2237.54,1972.38,265.16,0.0,0.0,0.0,Mar-2019,77.19,Apr-2019,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,77518.0,1.0,1.0,1.0,1.0,4.0,3786.0,98.0,0.0,0.0,9276.0,52.0,28300.0,0.0,1.0,0.0,1.0,15504.0,13762.0,48.6,0.0,0.0,182.0,208.0,25.0,4.0,4.0,201.0,,,,0.0,2.0,2.0,2.0,4.0,5.0,3.0,11.0,2.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,103536.0,16824.0,26800.0,3849.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541204,,9800.0,9800.0,9800.0, 36 months,17.99,354.25,D,D2,Chief Parks Mechanic,10+ years,MORTGAGE,49000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541204,,debt_consolidation,Debt consolidation,750xx,TX,31.5,1.0,May-2009,660.0,664.0,0.0,12.0,118.0,7.0,1.0,13832.0,78.6,9.0,w,0.0,0.0,12486.252535326,12486.25,9800.0,2686.25,0.0,0.0,0.0,Nov-2018,3954.87,,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,24117.0,1.0,3.0,2.0,4.0,3.0,10285.0,35.0,0.0,2.0,3199.0,51.0,17600.0,2.0,0.0,4.0,6.0,3445.0,860.0,89.9,0.0,0.0,88.0,39.0,22.0,3.0,0.0,22.0,,12.0,,0.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,7.0,0.0,0.0,0.0,2.0,88.9,100.0,1.0,0.0,47238.0,24117.0,8500.0,29638.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611755,,10000.0,10000.0,10000.0, 36 months,10.99,327.34,B,B4,Project Manager,4 years,MORTGAGE,82000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611755,,debt_consolidation,Debt consolidation,587xx,ND,10.55,0.0,Aug-2003,660.0,664.0,0.0,,77.0,9.0,1.0,7159.0,63.4,25.0,w,0.0,0.0,11684.361685156002,11684.36,10000.0,1684.36,0.0,0.0,0.0,Dec-2018,3461.18,,Jan-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,189.0,150395.0,2.0,4.0,2.0,4.0,1.0,28698.0,95.0,2.0,2.0,5580.0,87.0,11300.0,0.0,2.0,0.0,7.0,16711.0,341.0,95.5,0.0,0.0,134.0,157.0,6.0,1.0,1.0,7.0,,17.0,,0.0,2.0,2.0,2.0,7.0,11.0,4.0,13.0,2.0,9.0,0.0,0.0,0.0,4.0,100.0,100.0,1.0,0.0,158213.0,35857.0,7500.0,30069.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392976,,8000.0,8000.0,8000.0, 36 months,8.99,254.37,B,B1,CEO,4 years,MORTGAGE,345000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392976,,home_improvement,Home improvement,981xx,WA,12.57,0.0,Feb-1986,685.0,689.0,0.0,24.0,,18.0,0.0,131005.0,65.1,34.0,w,1728.04,1728.04,7372.73,7372.73,6271.96,1100.77,0.0,0.0,0.0,Mar-2019,254.37,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,230.0,560555.0,0.0,1.0,0.0,0.0,26.0,7530.0,35.0,0.0,1.0,14677.0,57.0,161500.0,0.0,3.0,0.0,1.0,32974.0,20705.0,69.5,0.0,0.0,256.0,367.0,13.0,13.0,2.0,13.0,,13.0,,0.0,6.0,9.0,8.0,15.0,5.0,14.0,25.0,9.0,18.0,0.0,0.0,0.0,0.0,97.1,42.9,0.0,0.0,640395.0,187784.0,67800.0,21613.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90312575,,7000.0,7000.0,7000.0, 36 months,13.99,239.21,C,C3,Market manger,8 years,OWN,39000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90312575,,debt_consolidation,Debt consolidation,313xx,GA,30.68,0.0,Mar-2006,675.0,679.0,0.0,,2.0,12.0,3.0,8781.0,52.6,15.0,w,0.0,0.0,3821.92,3821.92,2754.57,1067.35,0.0,0.0,0.0,Feb-2018,239.21,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,36437.0,1.0,2.0,0.0,1.0,13.0,27656.0,74.0,4.0,6.0,5185.0,68.0,16700.0,1.0,0.0,2.0,7.0,3312.0,477.0,94.4,0.0,0.0,126.0,67.0,4.0,4.0,0.0,20.0,,7.0,,0.0,3.0,5.0,3.0,4.0,4.0,10.0,11.0,5.0,12.0,0.0,0.0,0.0,4.0,100.0,100.0,0.0,3.0,53872.0,36437.0,8500.0,37172.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621593,,16000.0,16000.0,16000.0, 36 months,18.99,586.42,D,D3,Auditor,10+ years,RENT,65000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621593,,debt_consolidation,Debt consolidation,481xx,MI,26.92,1.0,Feb-1996,695.0,699.0,1.0,9.0,94.0,14.0,1.0,6896.0,64.4,57.0,f,0.0,0.0,18152.7093094402,18152.71,16000.0,2152.71,0.0,0.0,0.0,Jul-2017,13478.23,,Mar-2019,649.0,645.0,0.0,9.0,1.0,Individual,,,,0.0,0.0,203962.0,2.0,9.0,1.0,1.0,1.0,197066.0,93.0,1.0,3.0,4248.0,89.0,10700.0,0.0,5.0,2.0,4.0,14569.0,1423.0,76.3,0.0,0.0,247.0,74.0,5.0,1.0,1.0,22.0,,5.0,,1.0,2.0,5.0,2.0,5.0,42.0,5.0,14.0,5.0,14.0,0.0,0.0,1.0,2.0,100.0,50.0,1.0,0.0,191344.0,203962.0,6000.0,180644.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693915,,8000.0,8000.0,8000.0, 36 months,7.99,250.66,A,A4,Maintenance Tech,3 years,RENT,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693915,,credit_card,Credit card refinancing,532xx,WI,3.22,0.0,Jun-2011,760.0,764.0,0.0,,,3.0,0.0,6663.0,27.2,4.0,w,0.0,0.0,8711.9528501275,8711.95,8000.0,711.95,0.0,0.0,0.0,Feb-2018,4955.6,,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,6756.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,5277.0,28.0,24500.0,0.0,0.0,0.0,0.0,2252.0,17837.0,27.2,0.0,0.0,,63.0,40.0,40.0,0.0,40.0,,,,0.0,2.0,2.0,2.0,2.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,24593.0,6756.0,24500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90101488,,8000.0,8000.0,8000.0, 36 months,16.99,285.19,D,D1,Catering Associate ,3 years,OWN,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90101488,,debt_consolidation,Debt consolidation,103xx,NY,28.98,1.0,May-1995,660.0,664.0,1.0,6.0,,23.0,0.0,4922.0,24.7,30.0,w,0.0,0.0,9485.3072374311,9485.31,8000.0,1485.31,0.0,0.0,0.0,Jan-2018,5500.2,,May-2018,659.0,655.0,0.0,6.0,1.0,Individual,,,,0.0,0.0,52113.0,1.0,12.0,0.0,0.0,47.0,47191.0,88.0,2.0,3.0,3288.0,71.0,19900.0,0.0,0.0,4.0,3.0,2606.0,3870.0,55.0,1.0,0.0,115.0,256.0,2.0,2.0,0.0,2.0,44.0,0.0,6.0,1.0,2.0,4.0,3.0,5.0,14.0,11.0,16.0,4.0,23.0,0.0,0.0,1.0,2.0,90.0,0.0,0.0,0.0,73779.0,52113.0,8600.0,53879.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601759,,13025.0,13025.0,13025.0, 36 months,16.99,464.32,D,D1,PTP Resolution Specialist,< 1 year,MORTGAGE,51000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601759,,debt_consolidation,Debt consolidation,553xx,MN,17.74,0.0,May-2005,665.0,669.0,1.0,74.0,110.0,14.0,1.0,6593.0,43.1,21.0,f,0.0,0.0,16325.5728436154,16325.57,13025.0,3277.35,23.2200000507,0.0,0.0,Oct-2018,5635.28,,Oct-2018,609.0,605.0,0.0,74.0,1.0,Individual,,,,0.0,0.0,140004.0,0.0,1.0,1.0,1.0,7.0,13210.0,88.0,1.0,4.0,3000.0,65.0,15300.0,0.0,3.0,1.0,5.0,10000.0,1920.0,71.8,0.0,0.0,124.0,136.0,8.0,7.0,1.0,21.0,,0.0,74.0,2.0,4.0,8.0,4.0,7.0,4.0,12.0,16.0,8.0,14.0,0.0,0.0,0.0,2.0,85.7,25.0,0.0,1.0,177484.0,19803.0,6800.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90170179,,15000.0,15000.0,15000.0, 36 months,11.49,494.57,B,B5,Owner/Operator,1 year,MORTGAGE,127000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90170179,,debt_consolidation,Debt consolidation,986xx,WA,10.95,0.0,Jul-2005,675.0,679.0,0.0,26.0,69.0,26.0,1.0,15036.0,34.6,52.0,w,0.0,0.0,9719.43,9719.43,2903.47,1100.96,0.0,5715.0,1028.7,Jun-2017,494.57,,Feb-2019,589.0,585.0,0.0,26.0,1.0,Individual,,,,0.0,0.0,189312.0,4.0,1.0,1.0,2.0,8.0,18057.0,86.0,8.0,16.0,5978.0,51.0,43500.0,1.0,2.0,4.0,18.0,7572.0,16631.0,46.7,0.0,0.0,134.0,103.0,2.0,2.0,5.0,2.0,,1.0,,2.0,7.0,11.0,8.0,10.0,19.0,24.0,27.0,11.0,26.0,0.0,0.0,0.0,9.0,94.2,0.0,0.0,1.0,266372.0,33093.0,31200.0,21000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,COMPLETE,Dec-2017,5715.0,45.0,12.0 +90621625,,14000.0,14000.0,14000.0, 36 months,11.49,461.6,B,B5,Computer Scientist,3 years,MORTGAGE,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621625,,credit_card,Credit card refinancing,327xx,FL,21.28,0.0,Feb-2000,700.0,704.0,0.0,,,19.0,0.0,59497.0,91.1,40.0,w,0.0,0.0,15890.3302443803,15890.33,14000.0,1890.33,0.0,0.0,0.0,Apr-2018,2.54,,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,546893.0,3.0,10.0,3.0,10.0,2.0,164810.0,85.0,3.0,3.0,21420.0,88.0,65300.0,0.0,7.0,1.0,13.0,28784.0,1684.0,95.1,0.0,0.0,145.0,199.0,8.0,2.0,3.0,8.0,,8.0,,0.0,2.0,4.0,3.0,5.0,28.0,7.0,9.0,4.0,19.0,0.0,0.0,0.0,6.0,100.0,66.7,0.0,0.0,590606.0,224307.0,34200.0,180473.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471682,,10000.0,10000.0,10000.0, 36 months,7.99,313.32,A,A4,respiratory therapist,10+ years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471682,,debt_consolidation,Debt consolidation,014xx,MA,16.02,1.0,Nov-1992,705.0,709.0,0.0,23.0,,11.0,0.0,6850.0,52.3,38.0,w,2135.87,2135.87,9088.93,9088.93,7864.13,1224.8,0.0,0.0,0.0,Mar-2019,313.32,Apr-2019,Mar-2019,709.0,705.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,34083.0,0.0,3.0,0.0,2.0,13.0,27233.0,55.0,1.0,2.0,4000.0,54.0,13100.0,2.0,4.0,2.0,4.0,3408.0,4447.0,58.0,0.0,0.0,142.0,286.0,10.0,10.0,6.0,10.0,23.0,2.0,23.0,9.0,3.0,5.0,3.0,15.0,6.0,8.0,25.0,5.0,11.0,0.0,0.0,1.0,1.0,76.3,33.3,0.0,0.0,62725.0,34083.0,10600.0,49625.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90125594,,9700.0,9700.0,9700.0, 36 months,9.49,310.68,B,B2,Behavior Analyst,2 years,RENT,65000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90125594,,credit_card,Credit card refinancing,959xx,CA,19.98,0.0,Jun-2003,675.0,679.0,1.0,40.0,54.0,26.0,1.0,821.0,3.3,59.0,w,0.0,0.0,10490.022555507,10490.02,9700.0,790.02,0.0,0.0,0.0,Oct-2017,7077.65,,Mar-2019,684.0,680.0,0.0,40.0,1.0,Individual,,,,0.0,73.0,97892.0,1.0,11.0,0.0,2.0,17.0,97071.0,95.0,1.0,2.0,173.0,65.0,24600.0,4.0,1.0,1.0,4.0,4079.0,20673.0,1.1,0.0,0.0,157.0,159.0,1.0,1.0,0.0,1.0,,3.0,,1.0,3.0,5.0,9.0,14.0,35.0,15.0,24.0,5.0,26.0,0.0,0.0,0.0,1.0,94.3,0.0,1.0,0.0,119035.0,97892.0,20900.0,94435.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280856,,35000.0,35000.0,35000.0, 60 months,26.99,1068.53,F,F3,Registered Nurse,6 years,RENT,98169.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280856,,major_purchase,Major purchase,372xx,TN,2.61,0.0,Apr-2008,745.0,749.0,2.0,,,15.0,0.0,24277.0,14.7,26.0,w,0.0,0.0,11221.12,11221.12,1781.82,4576.88,53.43,4808.99,865.6182,Apr-2017,1068.53,,Oct-2017,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,24277.0,3.0,0.0,0.0,0.0,32.0,0.0,,5.0,8.0,7000.0,15.0,165400.0,0.0,0.0,2.0,8.0,1734.0,107135.0,9.3,0.0,0.0,77.0,101.0,0.0,0.0,0.0,0.0,,0.0,,0.0,3.0,5.0,10.0,15.0,2.0,15.0,24.0,5.0,15.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,165400.0,24277.0,118100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491695,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,maintenance ,3 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491695,,debt_consolidation,Debt consolidation,724xx,AR,30.51,0.0,Aug-1994,705.0,709.0,1.0,32.0,,13.0,0.0,7452.0,41.6,36.0,w,0.0,0.0,11386.331336802199,11386.33,10000.0,1386.33,0.0,0.0,0.0,Nov-2018,3704.64,,Mar-2019,744.0,740.0,1.0,44.0,1.0,Individual,,,,0.0,280.0,111571.0,0.0,8.0,0.0,3.0,13.0,45558.0,73.0,0.0,3.0,6943.0,66.0,17900.0,2.0,1.0,2.0,7.0,8582.0,6557.0,51.4,0.0,0.0,160.0,265.0,17.0,8.0,4.0,17.0,45.0,1.0,44.0,0.0,1.0,2.0,2.0,4.0,21.0,4.0,11.0,2.0,13.0,0.0,0.0,0.0,1.0,72.2,50.0,0.0,0.0,139038.0,53010.0,13500.0,62038.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696191,,24000.0,24000.0,24000.0, 60 months,18.99,622.45,D,D3,Financial Representative,10+ years,RENT,120000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696191,,debt_consolidation,Debt consolidation,927xx,CA,15.66,2.0,Apr-2003,670.0,674.0,0.0,11.0,84.0,6.0,2.0,710.0,39.4,11.0,w,15179.93,15179.93,18172.45,18172.45,8820.07,9352.38,0.0,0.0,0.0,Mar-2019,622.45,Apr-2019,Mar-2019,634.0,630.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,62431.0,1.0,4.0,1.0,3.0,2.0,61721.0,98.0,0.0,0.0,656.0,96.0,1800.0,1.0,2.0,2.0,3.0,10405.0,1090.0,39.4,0.0,0.0,161.0,125.0,52.0,2.0,0.0,52.0,25.0,2.0,25.0,3.0,2.0,2.0,2.0,3.0,8.0,2.0,3.0,2.0,6.0,0.0,0.0,0.0,1.0,54.5,0.0,1.0,1.0,64824.0,62431.0,1800.0,63024.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271358,,12000.0,12000.0,12000.0, 36 months,9.49,384.34,B,B2,VDC Coordinator,2 years,MORTGAGE,85000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271358,,debt_consolidation,Debt consolidation,301xx,GA,26.29,2.0,Nov-2010,670.0,674.0,0.0,7.0,,18.0,0.0,10758.0,70.8,21.0,w,0.0,0.0,12359.463520521002,12359.46,12000.0,359.46,0.0,0.0,0.0,Feb-2017,87.77,,Sep-2017,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,315540.0,0.0,12.0,1.0,2.0,12.0,81597.0,71.0,0.0,1.0,3812.0,71.0,15200.0,1.0,0.0,1.0,4.0,17530.0,2066.0,81.6,0.0,0.0,70.0,61.0,22.0,12.0,1.0,37.0,,12.0,,0.0,3.0,4.0,4.0,4.0,14.0,5.0,6.0,4.0,18.0,0.0,0.0,0.0,1.0,90.5,75.0,0.0,0.0,352382.0,92355.0,11200.0,106439.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90308296,,38500.0,38500.0,38500.0, 36 months,10.99,1260.26,B,B4,Teacher,10+ years,MORTGAGE,65000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90308296,,debt_consolidation,Debt consolidation,760xx,TX,27.47,1.0,Jan-2002,700.0,704.0,0.0,7.0,,11.0,0.0,32306.0,59.9,22.0,w,8507.26,8507.26,36524.03,36524.03,29992.74,6531.29,0.0,0.0,0.0,Mar-2019,1260.26,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Joint App,110000.0,17.41,Not Verified,0.0,0.0,205699.0,1.0,2.0,0.0,1.0,14.0,31711.0,86.0,1.0,1.0,20290.0,67.0,53900.0,2.0,0.0,0.0,2.0,18700.0,14652.0,66.9,0.0,0.0,170.0,176.0,1.0,1.0,3.0,26.0,,14.0,7.0,0.0,3.0,6.0,4.0,5.0,7.0,8.0,12.0,6.0,11.0,0.0,0.0,0.0,1.0,90.9,50.0,0.0,0.0,261514.0,64017.0,44300.0,58001.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551712,,7000.0,7000.0,7000.0, 36 months,5.32,210.81,A,A1,Teacher/professor,10+ years,MORTGAGE,91000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551712,,home_improvement,Home improvement,066xx,CT,15.13,0.0,Oct-2003,700.0,704.0,1.0,55.0,,8.0,0.0,480.0,3.1,45.0,w,0.0,0.0,7282.8247561688,7282.82,7000.0,282.82,0.0,0.0,0.0,Nov-2017,1755.17,,Mar-2019,779.0,775.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,224709.0,1.0,3.0,3.0,5.0,11.0,45571.0,86.0,1.0,2.0,480.0,70.0,15600.0,3.0,0.0,6.0,7.0,32101.0,15120.0,3.1,0.0,0.0,94.0,155.0,2.0,2.0,3.0,2.0,55.0,0.0,55.0,1.0,1.0,1.0,2.0,9.0,23.0,3.0,18.0,1.0,7.0,0.0,0.0,0.0,4.0,95.5,0.0,0.0,0.0,257408.0,52986.0,15600.0,53173.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90166941,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Flight Attendant ,5 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90166941,,credit_card,Credit card refinancing,105xx,NY,29.53,0.0,Apr-2013,720.0,724.0,0.0,,,9.0,0.0,16477.0,35.7,10.0,w,4597.59,4597.59,19856.39,19856.39,15402.41,4453.98,0.0,0.0,0.0,Mar-2019,683.46,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,30989.0,2.0,1.0,0.0,1.0,21.0,14393.0,44.0,3.0,4.0,6596.0,39.0,46200.0,2.0,0.0,0.0,5.0,3443.0,22838.0,36.4,0.0,0.0,21.0,41.0,6.0,6.0,0.0,6.0,,13.0,,0.0,5.0,7.0,5.0,6.0,1.0,7.0,8.0,7.0,9.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,80443.0,30989.0,35900.0,32385.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571609,,5000.0,5000.0,5000.0, 36 months,7.59,155.74,A,A3,Management,10+ years,MORTGAGE,65000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571609,,small_business,Business,541xx,WI,24.83,1.0,Nov-2004,685.0,689.0,0.0,4.0,,13.0,0.0,14516.0,57.6,44.0,w,0.0,0.0,5506.3562823874,5506.36,5000.0,506.36,0.0,0.0,0.0,Feb-2019,712.76,,Feb-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,168749.0,1.0,2.0,1.0,4.0,10.0,16067.0,47.0,1.0,5.0,4803.0,51.0,25200.0,2.0,1.0,2.0,10.0,12981.0,10084.0,59.0,0.0,0.0,127.0,142.0,7.0,3.0,6.0,7.0,,4.0,4.0,0.0,6.0,6.0,8.0,8.0,27.0,9.0,10.0,6.0,13.0,0.0,0.0,0.0,3.0,95.5,37.5,0.0,0.0,198001.0,30583.0,24600.0,34421.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90098289,,4800.0,4800.0,4800.0, 36 months,15.59,167.79,C,C5,Child Care Provider,2 years,RENT,16320.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90098289,,debt_consolidation,Debt consolidation,327xx,FL,29.12,0.0,Dec-2000,660.0,664.0,1.0,25.0,54.0,7.0,1.0,2238.0,21.7,32.0,w,1115.54,1115.54,4861.75,4861.75,3684.46,1177.29,0.0,0.0,0.0,Mar-2019,167.79,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,4497.0,3.0,1.0,0.0,1.0,20.0,2259.0,65.0,5.0,9.0,663.0,33.0,10300.0,1.0,0.0,3.0,10.0,642.0,697.0,53.5,0.0,0.0,189.0,145.0,2.0,2.0,0.0,2.0,,5.0,25.0,0.0,2.0,4.0,2.0,4.0,14.0,6.0,18.0,4.0,7.0,0.0,0.0,0.0,5.0,96.6,50.0,1.0,0.0,13785.0,4497.0,1500.0,3485.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571803,,8000.0,8000.0,8000.0, 36 months,16.99,285.19,D,D1,Power Scheduler,10+ years,RENT,126000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571803,,debt_consolidation,Debt consolidation,770xx,TX,24.36,0.0,Jan-2006,665.0,669.0,3.0,42.0,,25.0,0.0,9940.0,40.6,78.0,f,0.0,0.0,2024.4,2024.4,707.44,430.77,5.0,881.19,158.6142,Apr-2017,5.0,,Aug-2017,549.0,545.0,0.0,,1.0,Individual,,,,0.0,100.0,97261.0,4.0,6.0,11.0,20.0,4.0,87321.0,80.0,1.0,8.0,2070.0,61.0,25300.0,5.0,12.0,15.0,28.0,4421.0,7788.0,35.1,0.0,0.0,128.0,113.0,9.0,4.0,0.0,9.0,,0.0,,0.0,6.0,9.0,8.0,12.0,53.0,19.0,25.0,9.0,25.0,0.0,0.0,0.0,12.0,97.4,0.0,0.0,0.0,120553.0,97261.0,11600.0,95253.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121551,,24000.0,24000.0,24000.0, 36 months,13.99,820.15,C,C3,Contract Manager,1 year,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121551,,debt_consolidation,Debt consolidation,330xx,FL,22.01,0.0,Jan-1994,665.0,669.0,0.0,57.0,45.0,11.0,1.0,7895.0,31.3,24.0,w,0.0,0.0,27195.317785926803,27195.32,24000.0,3195.32,0.0,0.0,0.0,Nov-2017,17372.17,,Mar-2019,684.0,680.0,0.0,75.0,1.0,Individual,,,,0.0,0.0,45337.0,0.0,5.0,2.0,5.0,8.0,37442.0,57.0,1.0,3.0,3166.0,50.0,25200.0,2.0,0.0,5.0,8.0,4122.0,17305.0,31.3,0.0,0.0,128.0,272.0,10.0,8.0,3.0,10.0,75.0,2.0,75.0,1.0,5.0,5.0,6.0,11.0,10.0,6.0,11.0,5.0,11.0,0.0,0.0,0.0,3.0,90.5,33.3,1.0,0.0,91107.0,45337.0,25200.0,65907.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90029229,,20000.0,20000.0,20000.0, 36 months,21.49,758.55,D,D5,Owner,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90029229,,small_business,Business,928xx,CA,7.0,0.0,Feb-2011,710.0,714.0,0.0,42.0,,10.0,0.0,6768.0,31.5,11.0,w,0.0,0.0,26050.790469144904,26050.79,20000.0,6050.79,0.0,0.0,0.0,Aug-2018,10145.12,,Aug-2018,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,11858.0,0.0,2.0,0.0,0.0,46.0,5090.0,75.0,3.0,5.0,4066.0,42.0,21500.0,0.0,0.0,1.0,5.0,1186.0,5104.0,50.4,0.0,0.0,60.0,67.0,10.0,10.0,0.0,10.0,,8.0,42.0,0.0,2.0,3.0,4.0,4.0,2.0,8.0,9.0,3.0,10.0,0.0,0.0,0.0,3.0,90.9,25.0,0.0,0.0,28250.0,11858.0,10300.0,6750.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611698,,12800.0,12800.0,12800.0, 36 months,21.49,485.47,D,D5,Sr Payroll Consultant,1 year,RENT,61214.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611698,,other,Other,730xx,OK,15.82,0.0,Sep-2004,670.0,674.0,1.0,41.0,,7.0,0.0,5592.0,50.4,22.0,w,0.0,0.0,16345.5411368104,16345.54,12800.0,3545.54,0.0,0.0,0.0,May-2018,7622.36,,Mar-2019,664.0,660.0,1.0,,1.0,Individual,,,,0.0,793.0,57279.0,1.0,3.0,2.0,4.0,3.0,51687.0,97.0,0.0,0.0,3769.0,79.0,11100.0,2.0,1.0,1.0,4.0,8183.0,108.0,98.1,0.0,0.0,144.0,144.0,66.0,3.0,0.0,66.0,,3.0,41.0,0.0,2.0,2.0,2.0,2.0,16.0,4.0,6.0,2.0,7.0,0.0,0.0,0.0,2.0,95.5,100.0,0.0,0.0,64480.0,57279.0,5700.0,53380.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414073,,18000.0,18000.0,18000.0, 60 months,24.99,528.22,E,E4,Medical Assistant,10+ years,RENT,46848.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414073,,debt_consolidation,Debt consolidation,941xx,CA,24.41,0.0,Jun-2004,670.0,674.0,0.0,,,6.0,0.0,8699.0,85.3,23.0,w,0.0,0.0,21728.7720569624,21728.77,18000.0,3728.77,0.0,0.0,0.0,Aug-2017,16925.45,,Aug-2017,679.0,675.0,0.0,,1.0,Joint App,95808.0,20.65,Not Verified,0.0,0.0,45193.0,2.0,2.0,3.0,4.0,2.0,36494.0,98.0,1.0,2.0,2711.0,90.0,10200.0,0.0,4.0,0.0,6.0,7532.0,0.0,100.4,0.0,0.0,147.0,48.0,2.0,2.0,0.0,47.0,,,,0.0,1.0,4.0,1.0,1.0,18.0,4.0,5.0,4.0,6.0,0.0,0.0,0.0,4.0,100.0,100.0,0.0,0.0,58228.0,45193.0,2700.0,48028.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90291131,,7800.0,7800.0,7800.0, 36 months,19.99,289.84,D,D4,apprentice ,1 year,RENT,36000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90291131,,debt_consolidation,Debt consolidation,531xx,WI,27.47,1.0,Jul-2009,715.0,719.0,0.0,14.0,,8.0,0.0,1548.0,15.6,11.0,f,0.0,0.0,4049.1,4049.1,2497.99,1551.11,0.0,0.0,0.0,Dec-2017,289.84,,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,23820.0,3.0,4.0,2.0,2.0,6.0,22183.0,79.0,0.0,0.0,516.0,63.0,9900.0,0.0,1.0,2.0,3.0,2978.0,2784.0,15.6,0.0,0.0,83.0,86.0,31.0,3.0,0.0,31.0,,6.0,,0.0,1.0,2.0,1.0,1.0,5.0,3.0,5.0,2.0,8.0,0.0,0.0,0.0,3.0,90.9,0.0,0.0,0.0,38062.0,23820.0,3300.0,28073.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90208190,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Registered Nurse Supervisor,< 1 year,RENT,64000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90208190,,other,Other,427xx,KY,8.94,2.0,Mar-2007,670.0,674.0,0.0,23.0,,22.0,0.0,1002.0,43.6,38.0,w,1192.47,1192.47,5236.46,5236.46,3807.53,1428.93,0.0,0.0,0.0,Mar-2019,180.74,Apr-2019,Mar-2019,699.0,695.0,0.0,23.0,1.0,Individual,,,,0.0,95.0,70666.0,0.0,17.0,2.0,8.0,12.0,69664.0,96.0,2.0,3.0,623.0,94.0,2300.0,0.0,1.0,2.0,11.0,3212.0,498.0,66.8,1.0,0.0,108.0,114.0,8.0,8.0,0.0,8.0,23.0,8.0,23.0,5.0,2.0,2.0,2.0,10.0,23.0,5.0,14.0,2.0,22.0,0.0,0.0,2.0,4.0,84.2,50.0,0.0,0.0,75274.0,70666.0,1500.0,72974.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90211620,,35000.0,35000.0,35000.0, 36 months,9.49,1120.99,B,B2,Managing Partner,7 years,MORTGAGE,360000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90211620,,debt_consolidation,Debt consolidation,891xx,NV,8.96,0.0,Aug-1996,700.0,704.0,0.0,,,11.0,0.0,50539.0,85.8,27.0,w,7604.47,7604.47,32490.26,32490.26,27395.53,5094.73,0.0,0.0,0.0,Mar-2019,1120.99,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,289636.0,0.0,4.0,0.0,0.0,25.0,82964.0,68.0,0.0,0.0,22521.0,76.0,58887.0,1.0,0.0,6.0,0.0,32182.0,3643.0,89.2,0.0,0.0,240.0,178.0,51.0,25.0,2.0,51.0,,6.0,,0.0,2.0,3.0,5.0,8.0,15.0,6.0,9.0,4.0,11.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,315456.0,133503.0,33887.0,97569.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591806,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Project Manager ,10+ years,MORTGAGE,225000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591806,,debt_consolidation,Debt consolidation,117xx,NY,13.94,0.0,Sep-2001,675.0,679.0,0.0,24.0,,12.0,0.0,57934.0,83.1,21.0,w,18775.84,18775.84,22223.79,22223.79,11224.16,10999.63,0.0,0.0,0.0,Mar-2019,761.64,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,665434.0,2.0,3.0,0.0,0.0,30.0,11053.0,21.0,1.0,2.0,19352.0,56.0,69700.0,0.0,0.0,6.0,3.0,55453.0,1959.0,96.6,0.0,0.0,180.0,137.0,5.0,5.0,2.0,5.0,,6.0,,0.0,6.0,8.0,6.0,6.0,8.0,8.0,11.0,8.0,12.0,0.0,0.0,0.0,2.0,95.0,83.3,0.0,0.0,722759.0,68987.0,56800.0,53059.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591746,,35000.0,35000.0,35000.0, 36 months,12.79,1175.76,C,C1,Integrated Marketing,2 years,RENT,140000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591746,,major_purchase,Major purchase,941xx,CA,17.62,2.0,Jun-1986,690.0,694.0,0.0,8.0,,13.0,0.0,27640.0,92.1,21.0,w,7901.39,7901.39,34197.4,34197.4,27098.61,7040.0,58.79,0.0,0.0,Mar-2019,1175.76,Apr-2019,Mar-2019,704.0,700.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,162725.0,0.0,9.0,0.0,0.0,33.0,135085.0,91.0,1.0,1.0,26069.0,91.0,30000.0,0.0,0.0,0.0,1.0,14793.0,2360.0,92.1,0.0,0.0,157.0,363.0,11.0,11.0,0.0,11.0,8.0,,8.0,1.0,2.0,2.0,3.0,5.0,14.0,3.0,7.0,2.0,13.0,0.0,0.0,1.0,1.0,85.7,100.0,0.0,0.0,169340.0,162725.0,30000.0,139340.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681772,,25000.0,25000.0,25000.0, 36 months,9.49,800.71,B,B2,Vice President,10+ years,MORTGAGE,158000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681772,,debt_consolidation,Debt consolidation,371xx,TN,29.34,1.0,Sep-1984,660.0,664.0,2.0,23.0,,12.0,0.0,11770.0,58.0,28.0,w,0.0,0.0,28115.012633846,28115.01,25000.0,3115.01,0.0,0.0,0.0,Jul-2018,12113.99,,Mar-2019,719.0,715.0,1.0,48.0,1.0,Individual,,,,0.0,237.0,567227.0,1.0,5.0,1.0,3.0,4.0,158454.0,84.0,0.0,2.0,3078.0,79.0,20300.0,1.0,0.0,2.0,7.0,47269.0,0.0,100.0,0.0,0.0,151.0,384.0,13.0,4.0,3.0,71.0,23.0,3.0,23.0,1.0,2.0,5.0,2.0,9.0,8.0,5.0,16.0,5.0,12.0,0.0,0.0,0.0,1.0,85.7,50.0,0.0,0.0,664502.0,179233.0,3300.0,238030.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631731,,6000.0,6000.0,6000.0, 36 months,8.99,190.78,B,B1,Systems Analyst,10+ years,MORTGAGE,84000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631731,,other,Other,181xx,PA,19.81,0.0,Mar-1999,790.0,794.0,0.0,,,7.0,0.0,9676.0,37.1,19.0,w,0.0,0.0,6677.254487869201,6677.25,6000.0,677.25,0.0,0.0,0.0,Jun-2018,210.61,,Mar-2019,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,246333.0,0.0,2.0,2.0,2.0,7.0,45212.0,88.0,1.0,1.0,9037.0,71.0,26100.0,0.0,2.0,2.0,3.0,35190.0,9424.0,50.7,0.0,0.0,56.0,210.0,12.0,7.0,1.0,101.0,,10.0,,0.0,2.0,2.0,2.0,4.0,5.0,4.0,13.0,2.0,7.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,317361.0,54888.0,19100.0,51341.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681702,,35000.0,35000.0,35000.0, 36 months,15.59,1223.43,C,C5,Director - Sales Support & Acct Mgmt,10+ years,OWN,145000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681702,,credit_card,Credit card refinancing,553xx,MN,16.74,0.0,Feb-1989,675.0,679.0,0.0,72.0,,9.0,0.0,41131.0,75.5,22.0,w,0.0,0.0,39296.620999588,39296.62,35000.0,4296.62,0.0,0.0,0.0,Aug-2017,28361.53,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,78131.0,1.0,1.0,2.0,4.0,2.0,37000.0,,0.0,0.0,33820.0,76.0,54500.0,0.0,0.0,0.0,4.0,8681.0,3572.0,92.0,0.0,0.0,163.0,331.0,41.0,2.0,2.0,41.0,,,,0.0,4.0,6.0,5.0,6.0,11.0,8.0,9.0,6.0,9.0,0.0,0.0,0.0,2.0,95.5,60.0,0.0,0.0,91500.0,78131.0,44600.0,37000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461630,,3500.0,3500.0,3500.0, 36 months,14.49,120.46,C,C4,,,MORTGAGE,33600.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461630,,credit_card,Credit card refinancing,802xx,CO,14.29,0.0,Jan-1983,670.0,674.0,0.0,,77.0,6.0,1.0,3178.0,64.9,12.0,w,803.77,803.77,3486.3,3486.3,2696.23,790.07,0.0,0.0,0.0,Mar-2019,120.46,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,90264.0,0.0,2.0,1.0,2.0,10.0,10287.0,84.0,1.0,1.0,3020.0,78.0,4900.0,0.0,2.0,0.0,4.0,15044.0,480.0,86.3,0.0,0.0,43.0,404.0,8.0,8.0,1.0,8.0,,,,0.0,1.0,2.0,2.0,2.0,4.0,3.0,7.0,2.0,6.0,0.0,0.0,0.0,3.0,100.0,50.0,1.0,0.0,95000.0,13465.0,3500.0,12325.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90078141,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Comptroller,10+ years,MORTGAGE,88000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90078141,,small_business,Business,750xx,TX,17.18,1.0,Feb-2002,685.0,689.0,0.0,9.0,,12.0,0.0,76732.0,58.2,26.0,w,0.0,0.0,8391.43,8391.43,3258.79,2707.52,92.04,2333.08,209.9772,Nov-2017,943.21,,May-2018,534.0,530.0,0.0,,1.0,Individual,,,,0.0,0.0,224527.0,0.0,1.0,0.0,0.0,27.0,11908.0,54.0,0.0,1.0,10259.0,57.0,95600.0,0.0,1.0,2.0,1.0,18711.0,13822.0,61.2,0.0,0.0,159.0,175.0,21.0,21.0,3.0,21.0,9.0,1.0,9.0,0.0,6.0,8.0,8.0,10.0,9.0,10.0,14.0,8.0,12.0,0.0,0.0,0.0,0.0,96.0,37.5,0.0,0.0,317842.0,88640.0,35600.0,22242.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89799084,,6000.0,6000.0,6000.0, 36 months,19.99,222.96,D,D4,Flight attendant ,2 years,RENT,68000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89799084,,moving,Moving and relocation,553xx,MN,11.44,1.0,Jan-2003,660.0,664.0,0.0,9.0,,9.0,0.0,4373.0,29.2,11.0,f,0.0,0.0,4452.54,4452.54,2889.43,1563.11,0.0,0.0,0.0,Jun-2018,222.96,,Mar-2019,529.0,525.0,0.0,9.0,1.0,Individual,,,,0.0,211.0,23051.0,0.0,1.0,1.0,1.0,12.0,18678.0,85.0,1.0,1.0,1649.0,62.0,15000.0,3.0,0.0,3.0,2.0,2561.0,9677.0,30.4,0.0,0.0,134.0,164.0,11.0,11.0,0.0,11.0,,0.0,,1.0,5.0,6.0,5.0,5.0,3.0,8.0,8.0,6.0,9.0,0.0,0.0,1.0,2.0,90.9,40.0,0.0,0.0,37056.0,23051.0,13900.0,22056.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90384094,,5000.0,5000.0,5000.0, 36 months,14.49,172.09,C,C4,Owner,9 years,RENT,70000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90384094,,debt_consolidation,Debt consolidation,773xx,TX,16.54,1.0,Apr-1989,685.0,689.0,1.0,22.0,45.0,12.0,1.0,4652.0,26.9,19.0,w,0.0,0.0,2548.5,2548.5,1432.79,628.27,0.0,487.44,43.8696,Oct-2017,172.09,,Apr-2018,614.0,610.0,1.0,61.0,1.0,Individual,,,,0.0,125.0,63821.0,2.0,2.0,0.0,2.0,14.0,23332.0,83.0,5.0,5.0,1172.0,62.0,17300.0,5.0,0.0,3.0,7.0,5318.0,5654.0,27.5,0.0,0.0,169.0,329.0,5.0,5.0,2.0,6.0,,0.0,,1.0,4.0,8.0,4.0,4.0,6.0,9.0,11.0,8.0,12.0,0.0,0.0,0.0,5.0,89.5,0.0,0.0,1.0,111937.0,27984.0,7800.0,28237.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90416024,,8000.0,8000.0,8000.0, 36 months,5.32,240.92,A,A1,,,OWN,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90416024,,medical,Medical expenses,315xx,GA,14.63,0.0,Feb-1968,800.0,804.0,0.0,,,13.0,0.0,19364.0,10.9,23.0,w,0.0,0.0,8515.6972512803,8515.7,8000.0,515.7,0.0,0.0,0.0,Jun-2018,3740.58,,Jul-2018,829.0,825.0,0.0,,1.0,Individual,,,,0.0,0.0,48647.0,1.0,1.0,1.0,1.0,4.0,29283.0,91.0,0.0,1.0,11020.0,23.0,177000.0,0.0,0.0,1.0,2.0,4054.0,139836.0,12.2,0.0,0.0,4.0,583.0,13.0,4.0,0.0,186.0,,4.0,,0.0,3.0,3.0,8.0,10.0,1.0,12.0,22.0,3.0,13.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,209118.0,48647.0,159200.0,32118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693021,,32000.0,32000.0,32000.0, 60 months,17.99,812.42,D,D2,Team Lead,2 years,MORTGAGE,33000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693021,,debt_consolidation,Debt consolidation,461xx,IN,32.4,0.0,Nov-2006,665.0,669.0,0.0,77.0,,11.0,0.0,16452.0,62.8,18.0,w,0.0,0.0,18653.68,18653.68,9056.58,9597.1,0.0,0.0,0.0,Sep-2018,812.42,,Mar-2019,539.0,535.0,0.0,,1.0,Joint App,109000.0,22.29,Not Verified,0.0,0.0,138201.0,2.0,1.0,1.0,1.0,6.0,27710.0,95.0,2.0,3.0,10679.0,80.0,26200.0,0.0,0.0,1.0,4.0,12564.0,3357.0,80.7,0.0,0.0,118.0,108.0,4.0,4.0,1.0,17.0,77.0,6.0,77.0,0.0,3.0,6.0,3.0,6.0,4.0,9.0,13.0,6.0,11.0,0.0,0.0,0.0,3.0,94.4,66.7,0.0,0.0,158332.0,44162.0,17400.0,29309.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jan-2019,ACTIVE,Jan-2019,10962.0,45.0,18.0 +90396082,,2100.0,2100.0,2100.0, 36 months,12.79,70.55,C,C1,,,RENT,13825.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90396082,,credit_card,Credit card refinancing,431xx,OH,34.98,0.0,Mar-1981,665.0,669.0,1.0,,68.0,9.0,1.0,2498.0,29.0,23.0,w,473.25,473.25,2045.95,2045.95,1626.75,419.2,0.0,0.0,0.0,Mar-2019,70.55,Apr-2019,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,15786.0,1.0,1.0,1.0,1.0,7.0,13288.0,94.0,3.0,4.0,2236.0,69.0,8600.0,1.0,0.0,6.0,5.0,1973.0,1648.0,58.8,0.0,0.0,7.0,426.0,6.0,6.0,0.0,33.0,,6.0,,0.0,2.0,5.0,2.0,10.0,1.0,8.0,22.0,5.0,9.0,0.0,0.0,0.0,4.0,100.0,50.0,1.0,0.0,22763.0,15786.0,4000.0,14163.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692587,,16000.0,16000.0,16000.0, 36 months,8.59,505.75,A,A5,Sales,4 years,RENT,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692587,,credit_card,Credit card refinancing,605xx,IL,15.53,0.0,Jun-2006,710.0,714.0,1.0,,,11.0,0.0,14454.0,51.1,34.0,w,0.0,0.0,16772.378644251203,16772.38,16000.0,772.38,0.0,0.0,0.0,May-2017,13745.52,,Oct-2018,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,79682.0,0.0,7.0,1.0,1.0,7.0,65228.0,103.0,0.0,0.0,9346.0,87.0,28300.0,2.0,1.0,5.0,1.0,7244.0,13546.0,51.6,0.0,0.0,123.0,111.0,25.0,7.0,0.0,25.0,,4.0,,0.0,2.0,2.0,3.0,8.0,24.0,4.0,10.0,2.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,91748.0,79682.0,28000.0,63448.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197368,,11700.0,11700.0,11700.0, 36 months,12.79,393.04,C,C1,driver ,10+ years,MORTGAGE,59400.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197368,,debt_consolidation,Debt consolidation,781xx,TX,34.95,0.0,Jul-1999,660.0,664.0,1.0,,39.0,10.0,2.0,5969.0,84.1,25.0,w,2637.51,2637.51,11389.85,11389.85,9062.49,2327.36,0.0,0.0,0.0,Mar-2019,393.04,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,0.0,59578.0,1.0,5.0,1.0,7.0,5.0,53609.0,81.0,0.0,0.0,1950.0,81.0,7100.0,4.0,1.0,1.0,7.0,5958.0,773.0,85.1,0.0,0.0,206.0,70.0,29.0,5.0,0.0,29.0,,5.0,,0.0,3.0,5.0,3.0,4.0,19.0,5.0,6.0,5.0,10.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,73688.0,59578.0,5200.0,66588.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696069,,8000.0,8000.0,8000.0, 36 months,18.99,293.21,D,D3,Cashier,< 1 year,RENT,30000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696069,,debt_consolidation,Debt consolidation,945xx,CA,26.08,0.0,Aug-2004,690.0,694.0,0.0,,,14.0,0.0,16414.0,58.8,18.0,w,0.0,0.0,1316.89,1316.89,335.86,242.12,0.0,738.91,133.0038,Dec-2016,293.21,,Jul-2017,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,23622.0,1.0,1.0,0.0,0.0,44.0,7208.0,50.0,2.0,2.0,4856.0,56.0,27900.0,0.0,0.0,0.0,2.0,1687.0,9059.0,62.3,0.0,0.0,68.0,145.0,4.0,4.0,0.0,4.0,,,,0.0,7.0,9.0,10.0,13.0,2.0,13.0,16.0,9.0,14.0,0.0,0.0,0.0,2.0,100.0,40.0,0.0,0.0,42300.0,23622.0,24000.0,14400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692530,,8000.0,8000.0,8000.0, 36 months,16.99,285.19,D,D1,Transplant Coordinator,10+ years,RENT,67000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692530,,debt_consolidation,Debt consolidation,021xx,MA,31.11,0.0,Jun-2003,715.0,719.0,0.0,,,17.0,0.0,37006.0,54.3,39.0,w,1887.57,1887.57,8262.96,8262.96,6112.43,2150.53,0.0,0.0,0.0,Mar-2019,285.19,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,287274.0,1.0,3.0,1.0,1.0,12.0,24764.0,58.0,3.0,4.0,14067.0,56.0,68200.0,0.0,0.0,0.0,5.0,16898.0,29992.0,44.9,0.0,0.0,159.0,144.0,2.0,2.0,2.0,2.0,,22.0,,0.0,6.0,8.0,10.0,16.0,11.0,13.0,26.0,8.0,17.0,0.0,0.0,0.0,4.0,100.0,20.0,0.0,0.0,351597.0,61770.0,54400.0,42483.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90162188,,9000.0,9000.0,9000.0, 36 months,6.99,277.86,A,A2,owner,10+ years,RENT,65000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90162188,,debt_consolidation,Debt consolidation,112xx,NY,7.32,0.0,Jun-1990,755.0,759.0,0.0,,,12.0,0.0,15636.0,20.0,13.0,w,1900.71,1900.71,8054.44,8054.44,7099.29,955.15,0.0,0.0,0.0,Mar-2019,277.86,Apr-2019,Mar-2019,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,15854.0,0.0,0.0,0.0,0.0,,0.0,,2.0,3.0,9074.0,20.0,78300.0,0.0,0.0,1.0,3.0,1321.0,60524.0,20.2,0.0,0.0,,315.0,8.0,8.0,0.0,12.0,,8.0,,0.0,6.0,7.0,10.0,11.0,0.0,11.0,12.0,7.0,12.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,79873.0,15854.0,75800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695920,,14400.0,14400.0,14400.0, 60 months,12.79,326.1,C,C1,Technical Engineer I,7 years,MORTGAGE,50476.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695920,,debt_consolidation,Debt consolidation,294xx,SC,24.68,0.0,Jan-1999,695.0,699.0,0.0,,60.0,6.0,2.0,4106.0,91.2,14.0,f,0.0,0.0,18057.6242972586,18057.62,14400.0,3657.62,0.0,0.0,0.0,Mar-2019,8911.47,,Mar-2019,719.0,715.0,0.0,,1.0,Joint App,108358.0,13.67,Not Verified,0.0,0.0,315578.0,1.0,3.0,0.0,2.0,22.0,38860.0,73.0,0.0,1.0,3681.0,74.0,4500.0,0.0,0.0,0.0,4.0,52596.0,394.0,91.2,0.0,0.0,212.0,109.0,21.0,4.0,3.0,21.0,,22.0,,0.0,2.0,2.0,2.0,2.0,9.0,2.0,2.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,2.0,332387.0,42966.0,4500.0,53487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90416068,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Mail carrier,10+ years,RENT,60000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90416068,,debt_consolidation,Debt consolidation,150xx,PA,18.64,0.0,Dec-1996,660.0,664.0,1.0,74.0,57.0,15.0,1.0,8120.0,63.4,21.0,f,0.0,0.0,6864.21,6864.21,4097.83,1952.89,0.0,813.49,146.4282,Mar-2018,356.48,,Oct-2018,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,30310.0,3.0,2.0,0.0,1.0,13.0,22190.0,73.0,6.0,8.0,2844.0,70.0,12800.0,2.0,0.0,4.0,9.0,2165.0,960.0,88.1,0.0,0.0,136.0,237.0,0.0,0.0,0.0,0.0,,0.0,,0.0,6.0,9.0,7.0,8.0,5.0,13.0,16.0,9.0,15.0,0.0,0.0,0.0,6.0,95.2,85.7,0.0,0.0,43163.0,30310.0,8100.0,30363.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90182263,,3000.0,3000.0,3000.0, 36 months,13.49,101.8,C,C2,Driver,3 years,OWN,33000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90182263,,other,Other,142xx,NY,19.2,0.0,Nov-2003,680.0,684.0,1.0,70.0,,13.0,0.0,15038.0,47.0,26.0,w,0.0,0.0,2277.35,2277.35,1688.41,553.94,15.0,20.0,3.6,Jan-2019,20.0,,Mar-2019,569.0,565.0,1.0,,1.0,Individual,,,,0.0,395.0,19890.0,1.0,1.0,1.0,1.0,6.0,4852.0,87.0,0.0,3.0,7833.0,53.0,32000.0,0.0,1.0,1.0,4.0,1658.0,12772.0,52.9,0.0,0.0,101.0,154.0,19.0,6.0,0.0,24.0,70.0,6.0,70.0,0.0,4.0,5.0,5.0,7.0,2.0,12.0,24.0,5.0,13.0,0.0,0.0,0.0,1.0,95.8,20.0,0.0,0.0,37550.0,19890.0,27100.0,5550.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,624.0,45.04,8.0 +90661640,,30000.0,30000.0,29975.0, 36 months,13.99,1025.19,C,C3,Clinical Pharmacist,7 years,OWN,120000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661640,,debt_consolidation,Debt consolidation,300xx,GA,30.8,1.0,Jul-1993,695.0,699.0,0.0,15.0,45.0,16.0,1.0,33715.0,56.6,49.0,f,6852.77,6847.06,29823.77,29798.92,23147.23,6676.54,0.0,0.0,0.0,Mar-2019,1025.19,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,75839.0,2.0,3.0,0.0,1.0,15.0,19604.0,44.0,2.0,4.0,12506.0,60.0,59600.0,2.0,0.0,0.0,5.0,4740.0,9956.0,76.7,0.0,0.0,105.0,216.0,2.0,2.0,0.0,4.0,,14.0,,0.0,7.0,9.0,8.0,16.0,10.0,12.0,38.0,9.0,16.0,0.0,0.0,0.0,2.0,97.9,75.0,0.0,1.0,127392.0,75839.0,42700.0,44961.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88963512,,7125.0,7125.0,7125.0, 36 months,16.99,254.0,D,D1,Administrative Assistant,3 years,RENT,21000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88963512,,debt_consolidation,Debt consolidation,111xx,NY,18.17,0.0,Aug-2001,700.0,704.0,1.0,31.0,,20.0,0.0,9192.0,18.1,23.0,w,591.43,591.43,8159.27,8159.27,6533.57,1625.7,0.0,0.0,0.0,Mar-2019,254.0,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,11006.0,1.0,1.0,0.0,0.0,69.0,1814.0,104.0,3.0,6.0,3895.0,21.0,50700.0,0.0,0.0,2.0,6.0,550.0,31113.0,22.4,0.0,0.0,69.0,181.0,1.0,1.0,0.0,1.0,31.0,6.0,31.0,1.0,8.0,9.0,12.0,14.0,1.0,19.0,22.0,9.0,20.0,0.0,0.0,0.0,3.0,87.0,16.7,0.0,0.0,52450.0,11006.0,40100.0,1750.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621829,,10000.0,10000.0,10000.0, 36 months,11.49,329.72,B,B5,,,OWN,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621829,,credit_card,Credit card refinancing,064xx,CT,9.48,0.0,Apr-2002,675.0,679.0,0.0,,39.0,7.0,2.0,6234.0,34.4,26.0,w,2221.82,2221.82,9555.5,9555.5,7778.18,1777.32,0.0,0.0,0.0,Mar-2019,329.72,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,30708.0,0.0,2.0,1.0,1.0,10.0,24474.0,72.0,0.0,2.0,5392.0,59.0,18100.0,0.0,1.0,0.0,3.0,4387.0,7542.0,44.5,0.0,0.0,139.0,173.0,18.0,10.0,2.0,21.0,,21.0,,0.0,2.0,3.0,2.0,7.0,6.0,4.0,15.0,3.0,7.0,0.0,0.0,0.0,1.0,100.0,0.0,2.0,0.0,52144.0,30708.0,13600.0,34044.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90136806,,11000.0,11000.0,11000.0, 36 months,6.99,339.6,A,A2,Sr IT Analyst,8 years,MORTGAGE,80000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90136806,,credit_card,Credit card refinancing,761xx,TX,18.72,0.0,Nov-1988,750.0,754.0,0.0,32.0,,17.0,0.0,16486.0,24.9,32.0,w,2322.68,2322.68,9844.13,9844.13,8677.32,1166.81,0.0,0.0,0.0,Mar-2019,339.6,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,109162.0,0.0,6.0,0.0,1.0,23.0,27951.0,45.0,1.0,3.0,8486.0,35.0,66300.0,0.0,2.0,0.0,5.0,6421.0,19199.0,43.5,0.0,0.0,121.0,334.0,7.0,7.0,4.0,7.0,32.0,,32.0,0.0,2.0,4.0,3.0,7.0,11.0,9.0,17.0,4.0,17.0,0.0,0.0,0.0,2.0,93.8,33.3,0.0,0.0,222081.0,44437.0,34000.0,61916.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90439613,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Merchandising Manager,1 year,MORTGAGE,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90439613,,credit_card,Credit card refinancing,535xx,WI,52.46,0.0,Sep-1996,700.0,704.0,1.0,,,9.0,0.0,46068.0,77.8,14.0,w,0.0,0.0,46397.9010640997,46397.9,35000.0,11397.9,0.0,0.0,0.0,Nov-2018,25106.96,,Nov-2018,709.0,705.0,0.0,,1.0,Joint App,131500.0,22.98,Not Verified,0.0,0.0,333446.0,1.0,2.0,1.0,2.0,3.0,22660.0,60.0,0.0,0.0,18346.0,71.0,59200.0,1.0,2.0,5.0,3.0,37050.0,13132.0,77.8,0.0,0.0,114.0,240.0,64.0,3.0,1.0,64.0,,2.0,,0.0,5.0,5.0,6.0,7.0,6.0,6.0,7.0,5.0,9.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,364942.0,68728.0,59200.0,37599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90320950,,36000.0,36000.0,36000.0, 60 months,15.59,867.63,C,C5,Nurse Practitioner,2 years,RENT,125000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320950,,credit_card,Credit card refinancing,581xx,ND,27.48,0.0,May-2000,690.0,694.0,0.0,,,24.0,0.0,33727.0,70.3,57.0,w,0.0,0.0,19924.31,19924.31,10640.63,9283.68,0.0,0.0,0.0,Sep-2018,867.63,,Mar-2019,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,133690.0,1.0,13.0,1.0,2.0,5.0,99963.0,71.0,4.0,8.0,9259.0,71.0,48000.0,2.0,0.0,5.0,10.0,5570.0,3856.0,89.1,0.0,0.0,184.0,196.0,9.0,5.0,1.0,9.0,,5.0,,0.0,6.0,8.0,7.0,14.0,22.0,11.0,34.0,8.0,24.0,0.0,0.0,0.0,5.0,100.0,71.4,0.0,0.0,188520.0,133690.0,35400.0,140520.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481654,,8000.0,8000.0,8000.0, 36 months,9.49,256.23,B,B2,Registered Veterinary Technician,10+ years,RENT,36000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481654,,other,Other,926xx,CA,14.2,0.0,Mar-1997,815.0,819.0,0.0,,,6.0,0.0,2509.0,11.4,12.0,w,1738.04,1738.04,7433.53,7433.53,6261.96,1171.57,0.0,0.0,0.0,Mar-2019,256.23,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,16928.0,0.0,1.0,0.0,0.0,28.0,14419.0,64.0,0.0,2.0,2356.0,38.0,22000.0,0.0,0.0,0.0,2.0,2821.0,11867.0,17.0,0.0,0.0,111.0,234.0,20.0,20.0,0.0,21.0,,,,0.0,2.0,3.0,2.0,4.0,3.0,5.0,9.0,3.0,6.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,44565.0,16928.0,14300.0,22565.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501567,,20000.0,20000.0,20000.0, 60 months,17.99,507.76,D,D2,Cloud Operations Manager,1 year,RENT,120000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501567,,house,Home buying,088xx,NJ,16.89,0.0,Feb-2000,680.0,684.0,0.0,59.0,,18.0,0.0,20389.0,64.7,27.0,f,13142.57,13142.57,13739.5,13739.5,6857.43,6882.07,0.0,0.0,0.0,Jan-2019,507.76,Apr-2019,Mar-2019,604.0,600.0,0.0,,1.0,Individual,,,,0.0,311.0,97436.0,2.0,10.0,2.0,3.0,6.0,77047.0,98.0,0.0,1.0,6759.0,86.0,31500.0,0.0,0.0,0.0,4.0,5413.0,748.0,94.7,0.0,0.0,199.0,181.0,15.0,6.0,0.0,66.0,,13.0,,0.0,4.0,5.0,4.0,6.0,15.0,8.0,12.0,6.0,18.0,0.0,0.0,0.0,2.0,96.2,100.0,0.0,0.0,123588.0,97436.0,14100.0,92088.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88974517,,20000.0,20000.0,20000.0, 60 months,17.99,507.76,D,D2,Journeyman electrician,10+ years,RENT,52000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88974517,,credit_card,Credit card refinancing,908xx,CA,23.58,1.0,Mar-1996,660.0,664.0,1.0,22.0,,11.0,0.0,31145.0,89.8,19.0,f,12515.83,12515.83,14745.17,14745.17,7484.17,7261.0,0.0,0.0,0.0,Mar-2019,507.76,Apr-2019,Mar-2019,699.0,695.0,1.0,,1.0,Individual,,,,0.0,11780.0,32389.0,1.0,3.0,0.0,0.0,132.0,1244.0,8.0,1.0,1.0,16287.0,65.0,34700.0,0.0,0.0,1.0,1.0,2944.0,1290.0,95.8,0.0,0.0,153.0,246.0,5.0,5.0,0.0,119.0,22.0,5.0,22.0,0.0,4.0,6.0,5.0,10.0,4.0,8.0,15.0,6.0,11.0,0.0,0.0,0.0,1.0,84.2,60.0,0.0,0.0,49936.0,32389.0,30600.0,15236.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641703,,15000.0,15000.0,15000.0, 36 months,11.49,494.57,B,B5,Senior Accountant,1 year,OWN,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641703,,debt_consolidation,Debt consolidation,958xx,CA,27.04,0.0,Aug-2004,705.0,709.0,2.0,24.0,,19.0,0.0,7904.0,43.2,30.0,w,0.0,0.0,17428.1702927953,17428.17,15000.0,2428.17,0.0,0.0,0.0,Sep-2018,6537.83,,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,41884.0,2.0,3.0,0.0,1.0,20.0,33980.0,49.0,3.0,5.0,3073.0,47.0,18300.0,0.0,1.0,2.0,6.0,2618.0,2762.0,67.9,0.0,0.0,43.0,145.0,1.0,1.0,0.0,57.0,,1.0,,0.0,5.0,9.0,5.0,8.0,3.0,16.0,27.0,9.0,19.0,0.0,0.0,0.0,3.0,96.7,40.0,0.0,0.0,88418.0,41884.0,8600.0,70118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89904629,,20000.0,20000.0,20000.0, 60 months,21.49,546.6,D,D5,Sr. Test Technician,4 years,MORTGAGE,71000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89904629,,debt_consolidation,Debt consolidation,925xx,CA,8.28,0.0,Oct-2004,660.0,664.0,2.0,,,7.0,0.0,13068.0,37.8,24.0,f,0.0,0.0,11418.91,11418.91,4751.28,6667.63,0.0,0.0,0.0,Jul-2018,546.6,,Mar-2019,599.0,595.0,1.0,,1.0,Individual,,,,0.0,3061.0,457445.0,1.0,2.0,3.0,5.0,3.0,70046.0,82.0,0.0,3.0,177.0,45.0,34600.0,4.0,1.0,8.0,8.0,65349.0,749.0,25.1,0.0,0.0,143.0,26.0,18.0,3.0,1.0,18.0,,2.0,,0.0,2.0,3.0,2.0,2.0,18.0,4.0,4.0,3.0,7.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,548910.0,83114.0,1000.0,71263.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2019,BROKEN,Jan-2019,7489.0,45.0,24.0 +90438598,,12000.0,12000.0,12000.0, 60 months,19.99,317.86,D,D4,Superintendent ,2 years,MORTGAGE,120000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90438598,,major_purchase,Major purchase,117xx,NY,10.2,0.0,Aug-2006,670.0,674.0,1.0,45.0,,11.0,0.0,13242.0,70.4,29.0,w,0.0,0.0,15622.4488638196,15622.45,12000.0,3622.45,0.0,0.0,0.0,Jan-2019,5291.46,,Mar-2019,719.0,715.0,0.0,45.0,1.0,Joint App,175000.0,12.33,Not Verified,0.0,50.0,55902.0,0.0,2.0,0.0,2.0,15.0,42660.0,88.0,2.0,4.0,3717.0,83.0,18800.0,3.0,0.0,6.0,6.0,5082.0,2945.0,77.2,0.0,0.0,121.0,97.0,9.0,9.0,0.0,9.0,,2.0,,8.0,6.0,9.0,6.0,7.0,18.0,9.0,11.0,9.0,11.0,0.0,0.0,0.0,2.0,69.2,50.0,0.0,0.0,67386.0,55902.0,12900.0,48586.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90329276,,6025.0,6025.0,6025.0, 36 months,17.99,217.79,D,D2,Server,< 1 year,RENT,25000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90329276,,other,Other,011xx,MA,18.29,0.0,Jan-2013,715.0,719.0,1.0,,,2.0,0.0,4072.0,86.6,3.0,w,1436.98,1436.98,6309.89,6309.89,4588.02,1721.87,0.0,0.0,0.0,Mar-2019,217.79,Apr-2019,Mar-2019,654.0,650.0,1.0,,1.0,Individual,,,,0.0,80.0,17370.0,0.0,1.0,1.0,1.0,11.0,13298.0,87.0,0.0,0.0,4072.0,87.0,4700.0,1.0,1.0,2.0,1.0,8685.0,628.0,86.6,0.0,0.0,11.0,44.0,29.0,11.0,0.0,29.0,,0.0,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,20049.0,17370.0,4700.0,15349.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90278253,,8000.0,8000.0,8000.0, 36 months,19.99,297.27,D,D4,OWNER,3 years,RENT,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90278253,,other,Other,381xx,TN,12.07,0.0,Apr-2012,695.0,699.0,0.0,32.0,,15.0,0.0,4577.0,23.8,22.0,w,0.0,0.0,7125.6,7125.6,4754.61,2370.99,0.0,0.0,0.0,Oct-2018,297.27,,Mar-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,14926.0,0.0,1.0,0.0,2.0,13.0,10349.0,85.0,4.0,6.0,1531.0,48.0,19200.0,0.0,0.0,5.0,8.0,995.0,1469.0,51.0,0.0,0.0,48.0,53.0,7.0,7.0,0.0,7.0,32.0,7.0,32.0,0.0,1.0,7.0,2.0,3.0,5.0,14.0,17.0,7.0,15.0,0.0,0.0,0.0,4.0,95.5,50.0,0.0,0.0,31389.0,14926.0,3000.0,12189.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511140,,24000.0,24000.0,24000.0, 60 months,21.49,655.92,D,D5,Inside Sales manger going to manager,< 1 year,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511140,,small_business,Business,276xx,NC,22.77,0.0,Apr-1990,660.0,664.0,1.0,28.0,,18.0,0.0,16023.0,54.9,41.0,f,0.0,0.0,27910.2115986696,27910.21,24000.0,3910.21,0.0,0.0,0.0,Jul-2017,22533.91,,Nov-2017,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,202083.0,2.0,3.0,0.0,1.0,15.0,46628.0,67.0,3.0,8.0,1016.0,62.0,29200.0,0.0,3.0,3.0,11.0,12630.0,0.0,100.8,0.0,0.0,317.0,105.0,6.0,6.0,4.0,25.0,,6.0,,0.0,2.0,11.0,2.0,5.0,11.0,14.0,26.0,11.0,18.0,0.0,0.0,0.0,5.0,97.6,100.0,0.0,0.0,249148.0,62651.0,1700.0,79048.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407958,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,Section laborer,8 years,RENT,52000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407958,,debt_consolidation,Debt consolidation,585xx,ND,22.22,0.0,Oct-2001,680.0,684.0,0.0,42.0,80.0,8.0,1.0,12361.0,38.7,11.0,w,9390.71,9390.71,11081.26,11081.26,5609.29,5471.97,0.0,0.0,0.0,Mar-2019,380.82,Apr-2019,Mar-2019,564.0,560.0,0.0,42.0,1.0,Individual,,,,0.0,462.0,39218.0,2.0,2.0,1.0,2.0,6.0,26857.0,83.0,1.0,5.0,4318.0,61.0,31900.0,0.0,1.0,1.0,7.0,4902.0,5501.0,64.7,0.0,0.0,24.0,179.0,6.0,6.0,1.0,6.0,,1.0,,1.0,5.0,6.0,5.0,6.0,2.0,6.0,7.0,6.0,8.0,0.0,0.0,0.0,2.0,90.9,60.0,0.0,1.0,64430.0,39218.0,15600.0,32530.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90174350,,13750.0,13750.0,13750.0, 36 months,11.49,453.36,B,B5,Table games Supervisor/dealer,2 years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90174350,,debt_consolidation,Debt consolidation,891xx,NV,16.87,0.0,May-2004,715.0,719.0,1.0,76.0,66.0,8.0,2.0,4115.0,16.1,18.0,w,0.0,0.0,14414.7845233466,14414.78,13750.0,664.78,0.0,0.0,0.0,Mar-2017,12610.12,,Apr-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,21023.0,1.0,2.0,0.0,3.0,14.0,16908.0,71.0,3.0,4.0,3992.0,42.0,25600.0,3.0,0.0,2.0,7.0,2628.0,21485.0,16.1,0.0,0.0,125.0,148.0,6.0,6.0,1.0,6.0,,1.0,,0.0,2.0,2.0,6.0,7.0,9.0,6.0,8.0,2.0,8.0,0.0,0.0,0.0,3.0,94.4,0.0,0.0,2.0,49558.0,21023.0,25600.0,23958.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461678,,1600.0,1600.0,1600.0, 36 months,9.49,51.25,B,B2,Route Sales,10+ years,RENT,53500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461678,,other,Other,240xx,VA,7.92,0.0,Aug-2002,785.0,789.0,0.0,,,6.0,0.0,383.0,2.4,17.0,w,0.0,0.0,1682.2501000179998,1682.25,1600.0,82.25,0.0,0.0,0.0,Apr-2017,1424.03,,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,17776.0,1.0,1.0,1.0,3.0,3.0,17393.0,97.0,0.0,1.0,314.0,52.0,16200.0,0.0,5.0,0.0,4.0,2963.0,10817.0,3.4,0.0,0.0,169.0,137.0,23.0,3.0,0.0,110.0,,23.0,,0.0,2.0,2.0,2.0,6.0,7.0,5.0,10.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,34113.0,17776.0,11200.0,17913.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681283,,20200.0,20200.0,20200.0, 60 months,29.96,653.05,G,G4,coater ,1 year,RENT,55000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681283,,debt_consolidation,Debt consolidation,932xx,CA,34.61,0.0,Nov-2005,735.0,739.0,1.0,,,22.0,0.0,6203.0,15.5,33.0,w,0.0,0.0,3271.5,3271.5,301.16,971.32,0.0,1999.02,359.8236,Dec-2016,653.05,,Dec-2018,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,51429.0,3.0,4.0,3.0,4.0,2.0,45226.0,69.0,2.0,5.0,1932.0,49.0,40200.0,1.0,2.0,6.0,9.0,2338.0,4673.0,45.0,0.0,0.0,130.0,112.0,4.0,2.0,0.0,41.0,,0.0,,0.0,5.0,11.0,5.0,6.0,12.0,18.0,21.0,11.0,22.0,0.0,0.0,0.0,5.0,100.0,20.0,0.0,0.0,105721.0,51429.0,8500.0,65521.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451601,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Paramedic ,2 years,MORTGAGE,120000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451601,,debt_consolidation,Debt consolidation,031xx,NH,15.3,3.0,Jul-1992,670.0,674.0,3.0,15.0,,16.0,0.0,9750.0,46.0,27.0,f,3539.6,3539.6,15577.67,15577.67,11460.4,4117.27,0.0,0.0,0.0,Mar-2019,534.72,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,398221.0,6.0,8.0,9.0,9.0,1.0,77941.0,95.0,4.0,4.0,6597.0,78.0,21200.0,1.0,2.0,8.0,13.0,26548.0,11450.0,46.0,0.0,0.0,38.0,290.0,2.0,1.0,3.0,2.0,15.0,0.0,15.0,0.0,2.0,2.0,6.0,9.0,13.0,7.0,11.0,2.0,16.0,0.0,0.0,0.0,13.0,88.5,16.7,0.0,0.0,391164.0,87691.0,21200.0,79881.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511813,,12000.0,12000.0,12000.0, 60 months,21.49,327.96,D,D5,managefr,10+ years,RENT,33000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511813,,debt_consolidation,Debt consolidation,190xx,PA,3.09,2.0,Jun-2006,685.0,689.0,0.0,11.0,,6.0,0.0,1603.0,14.3,13.0,w,0.0,0.0,2488.46,2488.46,345.29,710.22,0.0,1432.95,257.931,Jan-2017,327.96,,Jul-2017,559.0,555.0,0.0,19.0,1.0,Individual,,,,0.0,0.0,1603.0,1.0,0.0,0.0,1.0,20.0,0.0,,3.0,3.0,1005.0,14.0,11200.0,1.0,0.0,3.0,4.0,321.0,8097.0,16.5,0.0,0.0,123.0,55.0,6.0,6.0,0.0,34.0,,2.0,11.0,1.0,3.0,3.0,3.0,3.0,5.0,6.0,8.0,3.0,6.0,0.0,0.0,1.0,3.0,76.9,0.0,0.0,0.0,11200.0,1603.0,9700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90210791,,25000.0,25000.0,25000.0, 36 months,8.99,794.88,B,B1,Vice President ,10+ years,OWN,400000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90210791,,debt_consolidation,Debt consolidation,440xx,OH,7.52,0.0,Sep-1995,675.0,679.0,0.0,35.0,,8.0,0.0,23250.0,90.1,15.0,w,0.0,0.0,28427.724790766802,28427.72,25000.0,3427.72,0.0,0.0,0.0,Feb-2019,6978.45,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,102.0,532044.0,0.0,2.0,0.0,0.0,26.0,43736.0,,0.0,0.0,14740.0,90.0,25800.0,0.0,1.0,0.0,0.0,76006.0,2550.0,90.1,0.0,0.0,147.0,117.0,52.0,26.0,2.0,52.0,35.0,15.0,35.0,0.0,4.0,4.0,4.0,5.0,6.0,4.0,5.0,4.0,8.0,0.0,0.0,0.0,0.0,93.3,50.0,0.0,0.0,626293.0,66986.0,25800.0,99493.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90137061,,7000.0,7000.0,7000.0, 36 months,10.49,227.49,B,B3,Business sales,10+ years,MORTGAGE,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90137061,,credit_card,Credit card refinancing,032xx,NH,33.76,3.0,Dec-1998,660.0,664.0,0.0,4.0,,12.0,0.0,38707.0,71.7,33.0,w,0.0,0.0,7016.32,7016.32,7000.0,16.32,0.0,0.0,0.0,Oct-2016,7020.4,,Mar-2017,644.0,640.0,0.0,,1.0,Joint App,130000.0,21.6,Not Verified,0.0,0.0,271562.0,0.0,3.0,0.0,3.0,17.0,39061.0,89.0,0.0,0.0,15217.0,79.0,54000.0,2.0,4.0,2.0,3.0,22630.0,7285.0,83.1,0.0,0.0,213.0,191.0,32.0,17.0,6.0,73.0,4.0,0.0,4.0,0.0,4.0,6.0,4.0,9.0,8.0,8.0,19.0,6.0,12.0,0.0,0.0,0.0,0.0,90.9,50.0,0.0,0.0,308647.0,77768.0,43000.0,43947.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631678,,5000.0,5000.0,5000.0, 36 months,9.49,160.15,B,B2,firefighter,5 years,OWN,56000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631678,,credit_card,Credit card refinancing,473xx,IN,21.6,0.0,Dec-2004,670.0,674.0,2.0,31.0,,10.0,0.0,8528.0,46.3,49.0,w,0.0,0.0,5343.8205789263,5343.82,5000.0,328.82,15.0,0.0,0.0,Jul-2017,3915.51,,Feb-2019,674.0,670.0,0.0,36.0,1.0,Individual,,,,0.0,1099.0,57861.0,1.0,2.0,1.0,1.0,12.0,49333.0,87.0,2.0,7.0,4241.0,77.0,18400.0,4.0,8.0,3.0,8.0,6429.0,1694.0,80.5,0.0,0.0,133.0,141.0,0.0,0.0,0.0,27.0,31.0,0.0,31.0,8.0,2.0,3.0,2.0,5.0,29.0,8.0,20.0,3.0,10.0,0.0,0.0,0.0,3.0,73.5,100.0,0.0,0.0,75242.0,57861.0,8700.0,56842.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90302309,,15000.0,15000.0,15000.0, 36 months,10.49,487.47,B,B3,Account Executive,< 1 year,RENT,96000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90302309,,debt_consolidation,Debt consolidation,802xx,CO,18.33,0.0,Jul-2000,670.0,674.0,4.0,56.0,43.0,6.0,1.0,11745.0,56.7,21.0,w,0.0,0.0,17332.5810547242,17332.58,15000.0,2332.58,0.0,0.0,0.0,Dec-2018,5154.57,,Dec-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,66815.0,2.0,2.0,2.0,3.0,6.0,55070.0,95.0,1.0,3.0,8522.0,68.0,20700.0,6.0,0.0,16.0,6.0,11136.0,7742.0,56.3,0.0,0.0,128.0,194.0,6.0,6.0,0.0,14.0,,2.0,,0.0,2.0,3.0,3.0,11.0,7.0,4.0,14.0,3.0,6.0,0.0,0.0,0.0,3.0,93.8,33.3,1.0,0.0,80332.0,66815.0,17700.0,59632.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89917409,,40000.0,40000.0,40000.0, 36 months,11.49,1318.86,B,B5,CFO,10+ years,MORTGAGE,300000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89917409,,debt_consolidation,Debt consolidation,852xx,AZ,12.49,0.0,Apr-1988,715.0,719.0,0.0,47.0,,9.0,0.0,23988.0,73.6,29.0,w,8887.95,8887.95,38221.41,38221.41,31112.05,7109.36,0.0,0.0,0.0,Mar-2019,1318.86,Apr-2019,Mar-2019,744.0,740.0,0.0,47.0,1.0,Individual,,,,0.0,0.0,707295.0,1.0,3.0,1.0,2.0,4.0,68527.0,81.0,0.0,1.0,17384.0,68.0,32600.0,0.0,0.0,2.0,5.0,88412.0,8612.0,73.6,0.0,0.0,143.0,341.0,14.0,4.0,9.0,14.0,,0.0,,2.0,3.0,3.0,4.0,6.0,9.0,4.0,8.0,3.0,9.0,0.0,0.0,0.0,2.0,92.9,33.3,0.0,0.0,771279.0,93509.0,32600.0,111580.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301792,,12000.0,12000.0,12000.0, 60 months,10.99,260.85,B,B4,Sales Manager,5 years,RENT,108000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301792,,home_improvement,Home improvement,926xx,CA,8.29,0.0,Oct-2002,680.0,684.0,0.0,,71.0,5.0,1.0,763.0,5.5,16.0,w,0.0,0.0,13891.713931118798,13891.71,12000.0,1891.71,0.0,0.0,0.0,Dec-2018,5377.79,,Dec-2018,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,27733.0,0.0,2.0,0.0,2.0,14.0,26970.0,66.0,0.0,0.0,360.0,51.0,14000.0,0.0,2.0,1.0,2.0,5547.0,13237.0,5.5,0.0,0.0,152.0,167.0,27.0,14.0,0.0,27.0,,1.0,,0.0,3.0,3.0,3.0,6.0,7.0,3.0,9.0,3.0,5.0,0.0,0.0,0.0,0.0,100.0,0.0,1.0,0.0,54867.0,27733.0,14000.0,40867.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693932,,20000.0,20000.0,20000.0, 36 months,8.59,632.19,A,A5,officer,8 years,RENT,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693932,,debt_consolidation,Debt consolidation,615xx,IL,32.81,0.0,Nov-2002,725.0,729.0,0.0,,,10.0,0.0,19079.0,39.7,25.0,w,4301.1,4301.1,18323.97,18323.97,15698.9,2625.07,0.0,0.0,0.0,Mar-2019,632.19,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,75798.0,0.0,4.0,1.0,2.0,7.0,56719.0,72.0,0.0,1.0,4975.0,60.0,48100.0,0.0,0.0,0.0,3.0,7580.0,23521.0,44.8,0.0,0.0,98.0,166.0,14.0,7.0,0.0,14.0,,14.0,,0.0,5.0,5.0,5.0,9.0,13.0,6.0,12.0,5.0,10.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,0.0,127368.0,75798.0,42600.0,79268.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141720,,24000.0,24000.0,24000.0, 60 months,16.99,596.34,D,D1,Heavy Equipment Operator,2 years,RENT,54000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141720,,credit_card,Credit card refinancing,922xx,CA,33.0,0.0,Oct-1997,680.0,684.0,0.0,,68.0,19.0,3.0,15553.0,20.1,34.0,f,0.0,0.0,4248.98,4248.98,516.71,709.95,0.0,3022.32,544.0176,Dec-2016,596.34,,May-2018,659.0,655.0,1.0,,1.0,Individual,,,,0.0,2064.0,56094.0,1.0,2.0,1.0,2.0,12.0,40541.0,27.0,4.0,7.0,12522.0,22.0,77300.0,0.0,3.0,3.0,9.0,2952.0,23547.0,34.8,0.0,0.0,150.0,227.0,4.0,4.0,2.0,4.0,,10.0,,0.0,2.0,3.0,7.0,9.0,8.0,17.0,24.0,3.0,19.0,0.0,0.0,0.0,5.0,100.0,14.3,0.0,3.0,144350.0,56094.0,36100.0,67050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88828962,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,Vice President,4 years,MORTGAGE,160000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88828962,,credit_card,Credit card refinancing,973xx,OR,10.69,0.0,Aug-1998,660.0,664.0,0.0,24.0,73.0,17.0,1.0,10985.0,23.4,40.0,w,12237.01,12237.01,14055.53,14055.53,7762.99,6292.54,0.0,0.0,0.0,Mar-2019,482.02,Apr-2019,Mar-2019,659.0,655.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,145343.0,3.0,1.0,1.0,1.0,6.0,134358.0,,4.0,8.0,4523.0,23.0,46900.0,1.0,7.0,3.0,9.0,8550.0,12116.0,47.5,0.0,0.0,174.0,217.0,3.0,3.0,0.0,3.0,,3.0,,4.0,10.0,11.0,13.0,21.0,12.0,16.0,27.0,11.0,17.0,0.0,0.0,0.0,5.0,84.8,23.1,1.0,0.0,158264.0,145343.0,23100.0,111364.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300615,,35000.0,35000.0,34725.0, 36 months,14.49,1204.57,C,C4,VP operations,10+ years,OWN,390000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300615,,debt_consolidation,Debt consolidation,193xx,PA,17.98,1.0,Nov-1995,690.0,694.0,5.0,11.0,,26.0,0.0,137380.0,63.4,52.0,f,8089.61,8026.04,35230.56,34953.75,26910.39,8139.48,180.69,0.0,0.0,Mar-2019,1204.57,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,574757.0,2.0,4.0,1.0,3.0,3.0,56033.0,91.0,1.0,1.0,37749.0,73.0,177300.0,2.0,3.0,7.0,4.0,22990.0,37382.0,63.3,0.0,0.0,141.0,250.0,2.0,2.0,2.0,29.0,,0.0,,0.0,10.0,11.0,15.0,24.0,12.0,18.0,34.0,11.0,26.0,0.0,0.0,0.0,2.0,98.0,33.3,0.0,0.0,707038.0,234184.0,170100.0,61643.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693852,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Firefighter,10+ years,RENT,80000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693852,,debt_consolidation,Debt consolidation,450xx,OH,16.13,0.0,Jun-1997,685.0,689.0,2.0,,47.0,14.0,1.0,3300.0,21.7,54.0,w,0.0,0.0,9136.703420623,9136.7,8000.0,1136.7,0.0,0.0,0.0,Aug-2018,3681.57,,Dec-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,41353.0,2.0,3.0,1.0,3.0,6.0,38053.0,74.0,1.0,4.0,2784.0,62.0,15200.0,0.0,9.0,3.0,7.0,4135.0,7700.0,30.0,0.0,0.0,163.0,231.0,2.0,2.0,3.0,16.0,,0.0,,0.0,2.0,2.0,5.0,18.0,13.0,11.0,36.0,2.0,12.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,0.0,66836.0,41353.0,11000.0,51636.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90107443,,22225.0,22225.0,22225.0, 36 months,14.49,764.9,C,C4,Finance Manager,10+ years,RENT,60000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90107443,,credit_card,Credit card refinancing,271xx,NC,13.54,0.0,Jan-2002,665.0,669.0,1.0,,,4.0,0.0,3202.0,53.4,7.0,w,0.0,0.0,23918.6567708545,23918.66,22225.0,1693.66,0.0,0.0,0.0,Apr-2017,20112.05,,Aug-2018,664.0,660.0,0.0,,1.0,Individual,,,,0.0,308.0,19093.0,2.0,1.0,1.0,1.0,4.0,15891.0,99.0,3.0,3.0,1784.0,87.0,6000.0,0.0,0.0,2.0,4.0,4773.0,1428.0,66.0,0.0,0.0,176.0,12.0,6.0,4.0,0.0,6.0,,5.0,,0.0,2.0,3.0,2.0,2.0,4.0,3.0,3.0,3.0,4.0,0.0,0.0,0.0,4.0,100.0,50.0,0.0,0.0,22000.0,19093.0,4200.0,16000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249426,,16000.0,16000.0,16000.0, 60 months,18.99,414.97,D,D3,Electrician,5 years,MORTGAGE,42000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249426,,credit_card,Credit card refinancing,040xx,ME,22.97,0.0,Nov-2006,675.0,679.0,3.0,,,7.0,0.0,51433.0,72.3,10.0,f,0.0,0.0,21003.471339058,21003.47,16000.0,5003.47,0.0,0.0,0.0,Aug-2018,12229.43,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,59793.0,1.0,1.0,0.0,0.0,56.0,8360.0,30.0,1.0,3.0,2539.0,40.0,53600.0,3.0,1.0,15.0,3.0,8542.0,1823.0,71.1,0.0,0.0,118.0,112.0,6.0,6.0,0.0,38.0,,0.0,,0.0,2.0,6.0,2.0,3.0,2.0,6.0,8.0,6.0,7.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,81128.0,59793.0,6300.0,27528.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111181,,18000.0,18000.0,17750.0, 60 months,25.69,535.63,F,F1,Registered Nurse,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111181,,other,Other,325xx,FL,29.51,0.0,Jul-1999,685.0,689.0,2.0,41.0,95.0,19.0,1.0,14474.0,59.3,28.0,f,0.0,0.0,26557.4911475392,26188.64,18000.0,8557.49,0.0,0.0,0.0,Nov-2018,13728.06,,Mar-2019,684.0,680.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,106895.0,2.0,4.0,0.0,4.0,17.0,49423.0,61.0,3.0,8.0,4466.0,60.0,24400.0,1.0,3.0,6.0,12.0,5939.0,1609.0,89.6,0.0,0.0,148.0,206.0,1.0,1.0,2.0,14.0,41.0,1.0,41.0,1.0,6.0,8.0,7.0,8.0,8.0,14.0,18.0,8.0,19.0,0.0,0.0,0.0,3.0,92.9,100.0,1.0,0.0,206031.0,63897.0,15500.0,81631.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100781,,3500.0,3500.0,3500.0, 36 months,12.79,117.58,C,C1,lamp room attendant,< 1 year,RENT,22000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100781,,house,Home buying,153xx,PA,20.51,0.0,Nov-1997,660.0,664.0,0.0,52.0,,8.0,0.0,1735.0,11.1,20.0,w,788.87,788.87,3407.33,3407.33,2711.13,696.2,0.0,0.0,0.0,Mar-2019,117.5781028782,Apr-2019,Mar-2019,669.0,665.0,1.0,68.0,1.0,Individual,,,,0.0,373.0,18040.0,2.0,1.0,1.0,1.0,5.0,16305.0,95.0,5.0,5.0,884.0,55.0,15700.0,0.0,0.0,1.0,6.0,2255.0,11390.0,10.3,0.0,0.0,92.0,226.0,5.0,5.0,0.0,10.0,52.0,10.0,52.0,1.0,2.0,4.0,4.0,11.0,5.0,7.0,15.0,4.0,8.0,0.0,0.0,0.0,6.0,85.0,0.0,0.0,0.0,32876.0,18040.0,12700.0,17176.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90329345,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,production,9 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90329345,,debt_consolidation,Debt consolidation,469xx,IN,22.4,0.0,Sep-1993,685.0,689.0,1.0,48.0,71.0,11.0,1.0,10134.0,70.4,27.0,f,9386.88,9386.88,11006.3,11006.3,5613.12,5393.18,0.0,0.0,0.0,Mar-2019,380.82,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Joint App,78000.0,22.48,Not Verified,0.0,0.0,100942.0,1.0,3.0,1.0,3.0,6.0,15396.0,61.0,0.0,1.0,2652.0,65.0,14400.0,1.0,14.0,2.0,5.0,9177.0,3443.0,73.5,0.0,0.0,276.0,52.0,19.0,6.0,3.0,19.0,,6.0,,0.0,5.0,7.0,5.0,5.0,16.0,7.0,8.0,7.0,11.0,0.0,0.0,0.0,2.0,92.6,60.0,1.0,0.0,118103.0,25530.0,13000.0,25085.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693906,,14000.0,14000.0,14000.0, 60 months,27.79,434.13,F,F5,sales representative,< 1 year,RENT,44000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693906,,debt_consolidation,Debt consolidation,927xx,CA,8.76,0.0,Feb-2007,670.0,674.0,3.0,,,20.0,0.0,14683.0,55.6,29.0,f,0.0,0.0,15259.747061588501,15259.75,14000.0,1259.75,0.0,0.0,0.0,Feb-2017,13978.97,,Oct-2017,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,52140.0,4.0,10.0,4.0,7.0,2.0,37457.0,100.0,2.0,2.0,2145.0,82.0,26400.0,1.0,7.0,5.0,9.0,2744.0,10052.0,30.2,0.0,0.0,106.0,115.0,4.0,2.0,0.0,6.0,,0.0,,0.0,4.0,6.0,8.0,11.0,14.0,10.0,15.0,6.0,20.0,0.0,0.0,0.0,6.0,100.0,14.3,0.0,0.0,63857.0,52140.0,14400.0,37457.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471760,,17500.0,17500.0,17500.0, 36 months,16.99,623.84,D,D1,president,7 years,OWN,97500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471760,,credit_card,Credit card refinancing,441xx,OH,4.05,0.0,Feb-2013,735.0,739.0,3.0,26.0,,8.0,0.0,1740.0,9.8,9.0,w,4162.83,4162.83,18143.63,18143.63,13337.17,4712.89,93.57,0.0,0.0,Mar-2019,623.84,Apr-2019,Mar-2019,559.0,555.0,0.0,26.0,1.0,Individual,,,,0.0,0.0,7589.0,1.0,1.0,0.0,1.0,13.0,5849.0,64.0,2.0,3.0,1010.0,28.0,17800.0,0.0,0.0,5.0,4.0,949.0,14590.0,6.5,0.0,0.0,13.0,36.0,0.0,0.0,0.0,8.0,,0.0,,1.0,1.0,2.0,6.0,6.0,1.0,7.0,7.0,2.0,8.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,26955.0,7589.0,15600.0,9155.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186743,,2000.0,2000.0,2000.0, 36 months,9.49,64.06,B,B2,Manager,10+ years,MORTGAGE,54000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186743,,home_improvement,Home improvement,480xx,MI,13.78,0.0,Jul-2002,725.0,729.0,0.0,43.0,,18.0,0.0,3968.0,26.5,48.0,w,0.0,0.0,2097.503678576,2097.5,2000.0,97.5,0.0,0.0,0.0,Apr-2017,1778.25,,Jan-2019,709.0,705.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,221242.0,1.0,13.0,1.0,3.0,6.0,73525.0,72.0,0.0,1.0,3957.0,67.0,15000.0,1.0,0.0,0.0,5.0,12291.0,11032.0,26.5,0.0,0.0,156.0,170.0,22.0,6.0,5.0,22.0,43.0,15.0,43.0,5.0,2.0,2.0,4.0,12.0,27.0,4.0,16.0,2.0,18.0,0.0,0.0,0.0,1.0,79.5,0.0,0.0,0.0,263887.0,77493.0,15000.0,101604.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521451,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Technician ,3 years,RENT,52000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521451,,other,Other,587xx,ND,19.78,0.0,Jul-2009,660.0,664.0,0.0,53.0,,6.0,0.0,2253.0,75.1,10.0,w,1192.47,1192.47,5236.46,5236.46,3807.53,1428.93,0.0,0.0,0.0,Mar-2019,180.74,Apr-2019,Mar-2019,759.0,755.0,0.0,53.0,1.0,Individual,,,,0.0,0.0,28867.0,1.0,3.0,1.0,2.0,2.0,26614.0,70.0,0.0,1.0,389.0,71.0,3000.0,1.0,2.0,0.0,3.0,4811.0,111.0,77.8,0.0,0.0,71.0,86.0,16.0,2.0,0.0,37.0,,14.0,,0.0,1.0,3.0,1.0,1.0,6.0,3.0,4.0,3.0,6.0,0.0,0.0,0.0,1.0,90.0,100.0,0.0,0.0,40842.0,28867.0,500.0,37842.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591726,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,Senior Support Engineer,10+ years,MORTGAGE,100868.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591726,,debt_consolidation,Debt consolidation,086xx,NJ,9.04,1.0,Apr-2000,695.0,699.0,0.0,17.0,75.0,7.0,1.0,18682.0,93.9,16.0,w,4345.27,4345.27,18550.17,18550.17,15654.73,2895.44,0.0,0.0,0.0,Mar-2019,640.57,Apr-2019,Aug-2017,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,354483.0,1.0,1.0,0.0,0.0,78.0,5238.0,30.0,1.0,2.0,9695.0,64.0,19900.0,0.0,0.0,2.0,2.0,50640.0,943.0,95.0,0.0,0.0,141.0,197.0,4.0,4.0,3.0,20.0,17.0,4.0,17.0,0.0,3.0,4.0,3.0,5.0,4.0,4.0,9.0,4.0,7.0,0.0,0.0,0.0,1.0,93.3,100.0,0.0,1.0,412434.0,23920.0,19000.0,17534.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88225736,,6000.0,6000.0,6000.0, 36 months,9.49,192.17,B,B2,,,MORTGAGE,44000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88225736,,credit_card,Credit card refinancing,160xx,PA,14.32,0.0,Jul-2008,680.0,684.0,1.0,38.0,76.0,6.0,2.0,4365.0,61.5,9.0,w,0.0,0.0,6793.1731642358,6793.17,6000.0,793.17,0.0,0.0,0.0,Sep-2018,2568.59,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,6734.0,1.0,1.0,0.0,0.0,30.0,2369.0,19.0,1.0,2.0,1473.0,35.0,7100.0,0.0,0.0,1.0,2.0,1122.0,2383.0,64.4,0.0,0.0,97.0,98.0,6.0,6.0,0.0,20.0,,6.0,,0.0,4.0,5.0,4.0,6.0,2.0,5.0,7.0,5.0,6.0,0.0,0.0,0.0,1.0,88.9,0.0,1.0,1.0,19285.0,6734.0,6700.0,12185.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695079,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Store Manager ,7 years,MORTGAGE,82000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695079,,debt_consolidation,Debt consolidation,027xx,MA,9.88,0.0,Nov-1997,680.0,684.0,1.0,,82.0,10.0,1.0,8176.0,35.1,19.0,w,0.0,0.0,8575.1360650446,8575.14,8000.0,575.14,0.0,0.0,0.0,Aug-2017,2760.82,,Jan-2019,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,271343.0,1.0,1.0,0.0,1.0,19.0,6781.0,44.0,5.0,5.0,3766.0,39.0,23300.0,2.0,0.0,2.0,7.0,27134.0,12052.0,39.7,0.0,0.0,139.0,226.0,5.0,5.0,2.0,10.0,,5.0,,0.0,4.0,5.0,4.0,5.0,3.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,5.0,100.0,0.0,1.0,0.0,302233.0,14957.0,20000.0,15258.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90318442,,33875.0,33875.0,33875.0, 60 months,16.99,841.7,D,D1,Nurse Practitioner,< 1 year,RENT,77000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90318442,,debt_consolidation,Debt consolidation,372xx,TN,29.72,0.0,Sep-2005,670.0,674.0,0.0,27.0,,23.0,0.0,13760.0,29.9,32.0,w,0.0,0.0,15178.04,15178.04,5119.57,5906.38,84.18,4067.91,366.1119,Feb-2018,200.0,,May-2018,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,158701.0,0.0,12.0,0.0,6.0,15.0,144941.0,93.0,0.0,1.0,8444.0,86.0,26800.0,5.0,0.0,4.0,7.0,6900.0,9843.0,23.2,0.0,0.0,132.0,121.0,20.0,15.0,0.0,35.0,27.0,0.0,27.0,0.0,4.0,6.0,6.0,6.0,19.0,11.0,13.0,6.0,23.0,0.0,0.0,0.0,0.0,93.5,66.7,0.0,0.0,182964.0,158701.0,21100.0,156164.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631527,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Senior Maintence Inspector,10+ years,MORTGAGE,130000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631527,,debt_consolidation,Debt consolidation,601xx,IL,11.03,0.0,Jul-1995,665.0,669.0,2.0,25.0,,12.0,0.0,32641.0,70.0,31.0,w,7995.07,7995.07,34658.25,34658.25,27004.93,7653.32,0.0,0.0,0.0,Mar-2019,1196.05,Apr-2019,Mar-2019,704.0,700.0,1.0,,1.0,Individual,,,,0.0,1155.0,270368.0,3.0,1.0,2.0,2.0,1.0,10188.0,100.0,1.0,1.0,7229.0,76.0,46600.0,3.0,10.0,5.0,3.0,24579.0,6471.0,67.3,0.0,0.0,136.0,254.0,2.0,1.0,3.0,2.0,,1.0,25.0,0.0,4.0,9.0,4.0,6.0,8.0,10.0,19.0,9.0,12.0,0.0,0.0,0.0,3.0,96.8,50.0,0.0,0.0,317758.0,42829.0,19800.0,10158.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89067971,,10000.0,10000.0,10000.0, 36 months,10.99,327.34,B,B4,Instrument Technician,10+ years,RENT,57000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89067971,,debt_consolidation,Debt consolidation,104xx,NY,17.89,0.0,Jun-2002,695.0,699.0,1.0,37.0,,10.0,0.0,6665.0,35.5,24.0,w,0.0,0.0,7850.05,7850.05,6296.1,1553.95,0.0,0.0,0.0,Oct-2018,327.34,,Mar-2019,589.0,585.0,0.0,37.0,1.0,Individual,,,,0.0,0.0,41296.0,1.0,4.0,2.0,2.0,2.0,34631.0,88.0,2.0,3.0,3307.0,71.0,18800.0,0.0,3.0,1.0,5.0,4588.0,8193.0,28.8,0.0,0.0,171.0,120.0,11.0,2.0,0.0,12.0,37.0,4.0,37.0,2.0,1.0,3.0,3.0,8.0,12.0,6.0,12.0,3.0,10.0,0.0,0.0,0.0,4.0,77.3,33.3,0.0,0.0,58328.0,41296.0,11500.0,39528.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724126,,8400.0,8400.0,8400.0, 36 months,16.99,299.45,D,D1,Caser operator,10+ years,OWN,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724126,,debt_consolidation,Debt consolidation,141xx,NY,12.94,2.0,Oct-1997,690.0,694.0,0.0,15.0,,10.0,0.0,1458.0,22.1,21.0,w,1983.18,1983.18,8676.12,8676.12,6416.82,2259.3,0.0,0.0,0.0,Mar-2019,299.45,Apr-2019,Mar-2019,599.0,595.0,0.0,15.0,1.0,Individual,,,,0.0,0.0,20220.0,2.0,5.0,0.0,0.0,47.0,18762.0,54.0,4.0,5.0,511.0,49.0,6600.0,0.0,1.0,1.0,5.0,2022.0,789.0,39.3,0.0,0.0,227.0,59.0,0.0,0.0,3.0,0.0,,9.0,,3.0,1.0,2.0,2.0,2.0,12.0,5.0,6.0,2.0,10.0,0.0,0.0,2.0,4.0,81.0,0.0,0.0,0.0,41071.0,20220.0,1300.0,34471.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90706139,,16575.0,16575.0,16575.0, 36 months,17.99,599.15,D,D2,,,MORTGAGE,57399.72,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90706139,,debt_consolidation,Debt consolidation,350xx,AL,30.06,0.0,Jan-1998,715.0,719.0,0.0,,,7.0,0.0,12535.0,74.6,39.0,f,0.0,0.0,8842.09,8842.09,4572.86,2600.37,0.0,1668.86,300.3948000015,Oct-2017,599.15,,Aug-2018,569.0,565.0,0.0,,1.0,Individual,,,,0.0,0.0,257485.0,0.0,3.0,1.0,2.0,8.0,150186.0,81.0,1.0,2.0,9407.0,79.0,16800.0,1.0,5.0,2.0,4.0,36784.0,1000.0,92.2,0.0,0.0,130.0,224.0,9.0,8.0,2.0,14.0,,7.0,,0.0,2.0,3.0,2.0,4.0,30.0,3.0,7.0,3.0,7.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,272889.0,162721.0,12800.0,146089.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571325,,5000.0,5000.0,5000.0, 36 months,9.49,160.15,B,B2,,,RENT,18636.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571325,,credit_card,Credit card refinancing,836xx,ID,11.27,0.0,Jun-1983,695.0,699.0,0.0,,51.0,6.0,2.0,4864.0,31.2,10.0,w,1086.07,1086.07,4641.71,4641.71,3913.93,727.78,0.0,0.0,0.0,Mar-2019,160.15,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,346.0,4864.0,0.0,0.0,0.0,0.0,59.0,0.0,,2.0,3.0,1466.0,31.0,15600.0,0.0,1.0,1.0,3.0,811.0,3605.0,50.6,0.0,0.0,59.0,399.0,9.0,9.0,0.0,13.0,,9.0,,0.0,3.0,5.0,3.0,4.0,1.0,6.0,9.0,5.0,6.0,0.0,0.0,0.0,2.0,100.0,33.3,1.0,1.0,15600.0,4864.0,7300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90706289,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Sergeant ,10+ years,RENT,100000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90706289,,debt_consolidation,Debt consolidation,330xx,FL,29.44,0.0,Sep-1995,675.0,679.0,0.0,,68.0,21.0,1.0,26232.0,54.0,59.0,w,0.0,0.0,18869.99,18869.99,9318.68,9551.31,0.0,0.0,0.0,Oct-2018,843.53,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,129056.0,0.0,3.0,0.0,2.0,14.0,102824.0,70.0,3.0,9.0,6381.0,59.0,48600.0,1.0,2.0,4.0,11.0,6146.0,7335.0,64.0,0.0,0.0,120.0,252.0,10.0,10.0,3.0,11.0,,7.0,,0.0,7.0,15.0,7.0,9.0,30.0,18.0,25.0,15.0,21.0,0.0,0.0,0.0,3.0,100.0,14.3,1.0,0.0,168068.0,129056.0,20400.0,119468.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,NATURAL_DISASTER,COMPLETED,3.0,395.39,Sep-2017,Dec-2017,Oct-2017,3.0,0.0,Current,1186.17,30737.14,0.08,Cash,N,,,,,, +90242190,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Meat dept,2 years,MORTGAGE,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242190,,debt_consolidation,Debt consolidation,983xx,WA,26.49,4.0,Nov-2004,660.0,664.0,3.0,6.0,104.0,19.0,1.0,6114.0,52.3,35.0,w,0.0,0.0,6343.8720336821,6343.87,5000.0,1343.87,0.0,0.0,0.0,Nov-2018,2011.11,,Nov-2018,614.0,610.0,0.0,46.0,1.0,Individual,,,,0.0,1229.0,158550.0,3.0,1.0,0.0,0.0,33.0,10210.0,69.0,4.0,6.0,1323.0,61.0,11700.0,0.0,6.0,4.0,6.0,8808.0,3558.0,58.6,0.0,0.0,134.0,142.0,2.0,2.0,4.0,2.0,9.0,3.0,6.0,2.0,9.0,13.0,9.0,13.0,7.0,17.0,24.0,13.0,19.0,0.0,0.0,0.0,4.0,74.3,55.6,1.0,0.0,239072.0,16324.0,8600.0,14872.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197688,,6000.0,6000.0,6000.0, 36 months,9.49,192.17,B,B2,,,RENT,32360.16,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197688,,credit_card,Credit card refinancing,354xx,AL,23.0,0.0,Oct-1974,660.0,664.0,1.0,,29.0,6.0,1.0,4136.0,47.0,20.0,w,0.0,0.0,6419.9227718797,6419.92,6000.0,419.92,0.0,0.0,0.0,Aug-2017,4693.55,,Jan-2018,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,34880.0,2.0,1.0,1.0,1.0,6.0,30744.0,96.0,1.0,4.0,2445.0,91.0,6100.0,2.0,1.0,5.0,5.0,6976.0,64.0,99.5,0.0,0.0,172.0,503.0,3.0,3.0,0.0,17.0,,3.0,,0.0,2.0,2.0,2.0,7.0,9.0,5.0,11.0,2.0,5.0,0.0,0.0,0.0,2.0,100.0,100.0,1.0,0.0,38172.0,34880.0,4200.0,32072.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89898200,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,Project Manager,10+ years,OWN,100000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89898200,,credit_card,Credit card refinancing,705xx,LA,16.82,0.0,Mar-1989,670.0,674.0,0.0,31.0,,20.0,0.0,15585.0,47.4,24.0,w,2173.42,2173.42,9283.14,9283.14,7826.58,1456.56,0.0,0.0,0.0,Mar-2019,320.29,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,533.0,27231.0,2.0,2.0,0.0,1.0,18.0,11646.0,31.0,4.0,6.0,2454.0,38.0,32900.0,0.0,0.0,0.0,7.0,1433.0,16620.0,40.9,0.0,0.0,56.0,330.0,4.0,4.0,0.0,4.0,32.0,14.0,31.0,0.0,14.0,16.0,15.0,16.0,4.0,18.0,20.0,16.0,20.0,0.0,0.0,0.0,4.0,87.5,7.1,0.0,0.0,70901.0,27231.0,28100.0,38001.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571683,,13500.0,13500.0,13500.0, 36 months,8.99,429.24,B,B1,Marketing Program Lead,3 years,MORTGAGE,130000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571683,,credit_card,Credit card refinancing,483xx,MI,12.18,0.0,Jul-2001,720.0,724.0,2.0,,,15.0,0.0,26428.0,31.8,41.0,w,0.0,0.0,14279.4879176999,14279.49,13500.0,779.49,0.0,0.0,0.0,Jun-2017,11281.55,,Jun-2017,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,66201.0,2.0,3.0,2.0,2.0,4.0,39773.0,77.0,2.0,5.0,7719.0,49.0,83100.0,4.0,8.0,5.0,8.0,4729.0,27609.0,39.3,0.0,0.0,169.0,182.0,1.0,1.0,3.0,1.0,,1.0,,0.0,3.0,5.0,5.0,16.0,13.0,12.0,25.0,5.0,15.0,0.0,0.0,0.0,5.0,100.0,40.0,0.0,0.0,134704.0,66201.0,45500.0,51604.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414847,,15000.0,15000.0,15000.0, 36 months,6.99,463.09,A,A2,CEO,2 years,OWN,75000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414847,,debt_consolidation,Debt consolidation,008xx,IN,6.96,0.0,Sep-1983,740.0,744.0,0.0,33.0,,19.0,0.0,13917.0,16.0,30.0,w,3167.32,3167.32,13423.79,13423.79,11832.68,1591.11,0.0,0.0,0.0,Mar-2019,463.09,Apr-2019,Mar-2019,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,13917.0,0.0,0.0,0.0,0.0,95.0,0.0,,1.0,2.0,2939.0,16.0,87000.0,1.0,0.0,3.0,2.0,994.0,65787.0,14.7,0.0,0.0,101.0,396.0,8.0,8.0,1.0,8.0,,8.0,33.0,0.0,8.0,10.0,14.0,18.0,2.0,19.0,27.0,10.0,19.0,0.0,0.0,0.0,1.0,96.7,10.0,0.0,0.0,87000.0,13917.0,77100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571698,,4800.0,4800.0,4800.0, 36 months,13.49,162.87,C,C2,Respiratory therapist,< 1 year,RENT,36000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571698,,vacation,Vacation,919xx,CA,16.4,0.0,Sep-2002,660.0,664.0,3.0,68.0,26.0,5.0,1.0,5771.0,38.5,24.0,w,0.0,0.0,5725.309845761601,5725.31,4800.0,925.31,0.0,0.0,0.0,Oct-2018,1982.9,,Mar-2019,704.0,700.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,13574.0,0.0,2.0,0.0,1.0,15.0,7803.0,71.0,0.0,3.0,4000.0,52.0,15000.0,1.0,0.0,3.0,4.0,2715.0,723.0,85.2,0.0,0.0,151.0,168.0,15.0,15.0,2.0,15.0,,0.0,,4.0,2.0,3.0,2.0,4.0,12.0,3.0,10.0,3.0,5.0,0.0,0.0,0.0,0.0,82.6,50.0,1.0,0.0,26017.0,13574.0,4900.0,11017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611626,,4000.0,4000.0,4000.0, 36 months,14.49,137.67,C,C4,Station Agent ,4 years,RENT,56000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611626,,other,Other,112xx,NY,26.25,2.0,Sep-2006,670.0,674.0,1.0,20.0,76.0,9.0,1.0,11082.0,59.9,16.0,w,0.0,0.0,4738.51500679,4738.52,4000.0,738.52,0.0,0.0,0.0,Mar-2019,133.98,,Feb-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,38959.0,1.0,4.0,1.0,3.0,9.0,27877.0,84.0,1.0,5.0,3148.0,75.0,18500.0,1.0,3.0,1.0,8.0,4329.0,3911.0,64.1,0.0,0.0,120.0,70.0,5.0,5.0,0.0,5.0,20.0,5.0,20.0,0.0,4.0,5.0,4.0,6.0,9.0,5.0,7.0,5.0,9.0,0.0,0.0,0.0,2.0,87.5,50.0,1.0,0.0,51639.0,38959.0,10900.0,33139.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591820,,10000.0,10000.0,10000.0, 36 months,8.99,317.96,B,B1,Credit Analyst,7 years,MORTGAGE,46920.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591820,,credit_card,Credit card refinancing,720xx,AR,18.77,0.0,Apr-2002,715.0,719.0,1.0,,,19.0,0.0,12731.0,43.2,37.0,w,2160.13,2160.13,9215.85,9215.85,7839.87,1375.98,0.0,0.0,0.0,Mar-2019,317.96,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,131884.0,1.0,4.0,0.0,1.0,19.0,13622.0,52.0,2.0,3.0,3479.0,48.0,29500.0,0.0,0.0,1.0,4.0,7758.0,5253.0,66.3,0.0,0.0,173.0,134.0,5.0,5.0,3.0,22.0,,5.0,,0.0,5.0,7.0,6.0,11.0,10.0,14.0,24.0,7.0,19.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,168988.0,26353.0,15600.0,25988.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692960,,8000.0,8000.0,8000.0, 36 months,10.99,261.88,B,B4,Budget Analyst,10+ years,MORTGAGE,134000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692960,,debt_consolidation,Debt consolidation,206xx,MD,32.12,2.0,Sep-1993,670.0,674.0,1.0,4.0,78.0,29.0,1.0,10508.0,33.5,46.0,w,1768.6,1768.6,7618.94,7618.94,6231.4,1387.54,0.0,0.0,0.0,Mar-2019,261.88,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,602.0,396005.0,2.0,5.0,1.0,5.0,1.0,130125.0,70.0,3.0,10.0,2826.0,58.0,31400.0,9.0,0.0,2.0,15.0,13655.0,9242.0,39.2,0.0,0.0,124.0,276.0,1.0,1.0,1.0,1.0,4.0,3.0,4.0,0.0,8.0,15.0,9.0,11.0,12.0,23.0,33.0,15.0,29.0,0.0,0.0,0.0,4.0,78.3,11.1,0.0,0.0,499897.0,140633.0,15200.0,170997.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90284637,,5600.0,5600.0,5600.0, 36 months,18.99,205.25,D,D3,General Manager,10+ years,RENT,180000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90284637,,debt_consolidation,Debt consolidation,305xx,GA,9.28,0.0,Mar-1991,670.0,674.0,2.0,,75.0,12.0,2.0,15236.0,43.2,25.0,w,0.0,0.0,1165.94,1165.94,355.46,254.38,0.0,556.1,100.098,Jan-2017,205.25,,Jul-2017,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,46385.0,4.0,2.0,0.0,1.0,23.0,31149.0,64.0,4.0,4.0,4069.0,55.0,35300.0,3.0,0.0,2.0,5.0,4217.0,18468.0,35.9,0.0,0.0,184.0,306.0,2.0,2.0,4.0,2.0,,0.0,,0.0,5.0,7.0,8.0,9.0,8.0,10.0,13.0,7.0,12.0,0.0,0.0,0.0,4.0,100.0,71.4,1.0,1.0,84154.0,46385.0,28800.0,48854.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90131333,,6025.0,6025.0,6025.0, 36 months,8.99,191.57,B,B1,cold food cook,10+ years,RENT,40000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131333,,other,Other,017xx,MA,29.55,1.0,May-2005,675.0,679.0,1.0,21.0,,19.0,0.0,16129.0,35.8,22.0,w,1301.51,1301.51,5552.52,5552.52,4723.49,829.03,0.0,0.0,0.0,Mar-2019,191.57,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,876.0,22200.0,1.0,1.0,0.0,0.0,55.0,6071.0,31.0,2.0,2.0,3061.0,34.0,45000.0,0.0,0.0,1.0,2.0,1168.0,11191.0,47.5,0.0,0.0,55.0,136.0,2.0,2.0,0.0,29.0,,2.0,28.0,0.0,7.0,18.0,7.0,7.0,1.0,18.0,20.0,18.0,19.0,0.0,0.0,0.0,2.0,90.9,28.6,0.0,0.0,64525.0,22200.0,21300.0,19525.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280637,,14000.0,14000.0,14000.0, 36 months,8.99,445.14,B,B1,Assistant Manager,4 years,RENT,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280637,,debt_consolidation,Debt consolidation,604xx,IL,17.4,0.0,May-2006,720.0,724.0,0.0,,,6.0,0.0,16218.0,66.2,7.0,w,3024.32,3024.32,12902.07,12902.07,10975.68,1926.39,0.0,0.0,0.0,Mar-2019,445.14,Apr-2019,Mar-2019,829.0,825.0,0.0,,1.0,Individual,,,,0.0,0.0,28483.0,0.0,1.0,0.0,0.0,34.0,12265.0,60.0,0.0,0.0,8106.0,63.0,24500.0,0.0,0.0,0.0,0.0,4747.0,7686.0,66.6,0.0,0.0,34.0,124.0,70.0,34.0,0.0,70.0,,,,0.0,4.0,5.0,4.0,5.0,1.0,5.0,6.0,5.0,6.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,45099.0,28483.0,23000.0,20599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441696,,2500.0,2500.0,2500.0, 36 months,12.79,83.99,C,C1,Manager,2 years,OWN,31200.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441696,,other,Other,456xx,OH,20.38,0.0,Apr-2012,700.0,704.0,1.0,,68.0,7.0,2.0,907.0,6.9,8.0,w,0.0,0.0,2948.2287561133003,2948.23,2500.0,448.23,0.0,0.0,0.0,Sep-2018,1102.23,,Dec-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,23766.0,0.0,2.0,1.0,3.0,8.0,22859.0,88.0,1.0,1.0,576.0,61.0,13200.0,1.0,0.0,4.0,4.0,3395.0,2524.0,18.6,0.0,0.0,24.0,53.0,11.0,8.0,0.0,43.0,,3.0,,0.0,1.0,2.0,2.0,2.0,3.0,5.0,5.0,2.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,1.0,39295.0,23766.0,3100.0,26095.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90312343,,12000.0,12000.0,12000.0, 36 months,8.99,381.55,B,B1,Produce Coordinator ,10+ years,MORTGAGE,82000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90312343,,debt_consolidation,Debt consolidation,925xx,CA,13.99,1.0,May-2004,675.0,679.0,1.0,17.0,79.0,11.0,1.0,9063.0,37.1,25.0,w,0.0,0.0,13284.957462531298,13284.96,12000.0,1284.96,0.0,0.0,0.0,Apr-2018,6804.6,,Jan-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,221146.0,0.0,2.0,0.0,1.0,14.0,16420.0,52.0,2.0,2.0,3367.0,46.0,24400.0,4.0,2.0,5.0,5.0,20104.0,3271.0,68.2,0.0,0.0,148.0,115.0,9.0,9.0,4.0,9.0,,2.0,,0.0,4.0,6.0,4.0,8.0,5.0,8.0,16.0,6.0,11.0,0.0,0.0,0.0,4.0,95.7,50.0,1.0,0.0,254487.0,25483.0,10300.0,31454.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90439399,,25600.0,25600.0,25600.0, 36 months,19.99,951.26,D,D4,E6,10+ years,RENT,87000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90439399,,debt_consolidation,Debt consolidation,968xx,HI,16.77,1.0,Jun-2006,660.0,664.0,1.0,1.0,,13.0,0.0,33012.0,43.3,28.0,w,0.0,0.0,28917.9738097026,28917.97,25600.0,3317.97,0.0,0.0,0.0,Jun-2017,22287.58,,Dec-2018,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,35436.0,0.0,1.0,0.0,0.0,26.0,2424.0,8.0,1.0,4.0,12581.0,33.0,76300.0,0.0,9.0,3.0,4.0,2726.0,12721.0,55.0,1.0,0.0,123.0,118.0,8.0,8.0,2.0,8.0,,0.0,,0.0,2.0,6.0,5.0,8.0,10.0,12.0,16.0,6.0,13.0,0.0,0.0,0.0,1.0,96.4,40.0,0.0,0.0,106218.0,35436.0,28300.0,29918.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696208,,18000.0,18000.0,18000.0, 36 months,9.49,576.51,B,B2,President,2 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696208,,home_improvement,Home improvement,610xx,IL,24.68,0.0,Oct-1989,665.0,669.0,2.0,69.0,77.0,10.0,2.0,11417.0,49.9,22.0,w,0.0,0.0,20048.955880462,20048.96,18000.0,2048.96,0.0,0.0,0.0,Apr-2018,10257.78,,Mar-2019,724.0,720.0,0.0,69.0,1.0,Individual,,,,0.0,0.0,36789.0,0.0,3.0,2.0,2.0,10.0,25372.0,77.0,2.0,2.0,9999.0,66.0,22900.0,2.0,2.0,8.0,4.0,3679.0,9683.0,51.8,0.0,0.0,139.0,323.0,7.0,7.0,6.0,7.0,,6.0,,1.0,3.0,4.0,5.0,6.0,7.0,7.0,9.0,4.0,10.0,0.0,0.0,0.0,4.0,94.7,20.0,2.0,0.0,55675.0,36789.0,20100.0,32775.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695304,,35000.0,35000.0,35000.0, 36 months,17.99,1265.16,D,D2,Pharmacist ,< 1 year,MORTGAGE,145000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695304,,major_purchase,Major purchase,630xx,MO,25.38,0.0,Sep-2004,740.0,744.0,4.0,,71.0,27.0,1.0,8716.0,13.1,57.0,f,0.0,0.0,13440.7,13440.7,3814.94,2440.9,0.0,7184.86,1293.2748000127,Mar-2017,1265.16,,Sep-2017,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,367721.0,4.0,3.0,2.0,3.0,9.0,140314.0,86.0,5.0,15.0,2768.0,50.0,66400.0,6.0,0.0,10.0,20.0,14143.0,36665.0,18.3,0.0,0.0,132.0,144.0,0.0,0.0,2.0,0.0,,0.0,,0.0,6.0,9.0,12.0,20.0,9.0,23.0,46.0,9.0,27.0,0.0,0.0,0.0,7.0,100.0,0.0,1.0,0.0,467032.0,149030.0,44900.0,176477.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90160432,,9800.0,9800.0,9800.0, 36 months,8.99,311.6,B,B1,GIS Analyst,4 years,RENT,56000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90160432,,credit_card,Credit card refinancing,585xx,ND,17.87,0.0,Jun-2001,665.0,669.0,2.0,43.0,,11.0,0.0,11352.0,57.6,15.0,w,2116.96,2116.96,9031.51,9031.51,7683.04,1348.47,0.0,0.0,0.0,Mar-2019,311.6,Apr-2019,Mar-2019,669.0,665.0,0.0,45.0,1.0,Individual,,,,0.0,0.0,33426.0,1.0,1.0,0.0,1.0,15.0,22074.0,84.0,2.0,6.0,2668.0,72.0,19700.0,6.0,0.0,7.0,7.0,3039.0,4882.0,62.7,0.0,0.0,72.0,56.0,3.0,3.0,0.0,15.0,,2.0,47.0,2.0,6.0,9.0,6.0,6.0,4.0,9.0,10.0,9.0,11.0,0.0,0.0,0.0,2.0,66.7,16.7,0.0,0.0,46140.0,33426.0,13100.0,26440.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90187200,,3600.0,3600.0,3600.0, 36 months,7.59,112.14,A,A3,,,RENT,22260.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90187200,,medical,Medical expenses,951xx,CA,14.89,0.0,May-1976,730.0,734.0,0.0,,72.0,16.0,1.0,8957.0,14.9,27.0,w,0.0,0.0,3745.1996964458003,3745.2,3600.0,145.2,0.0,0.0,0.0,Sep-2017,149.6,,Feb-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,8957.0,3.0,0.0,0.0,1.0,13.0,0.0,,5.0,5.0,2851.0,15.0,60200.0,0.0,2.0,0.0,6.0,560.0,46272.0,15.9,0.0,0.0,128.0,484.0,4.0,4.0,0.0,4.0,,,,0.0,7.0,9.0,11.0,17.0,3.0,16.0,24.0,9.0,16.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,1.0,60200.0,8957.0,55000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581716,,3000.0,3000.0,3000.0, 36 months,7.59,93.45,A,A3,Clean Room,< 1 year,MORTGAGE,80000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581716,,credit_card,Credit card refinancing,469xx,IN,15.86,0.0,Jun-1997,740.0,744.0,3.0,41.0,1.0,17.0,1.0,5290.0,13.0,62.0,w,0.0,0.0,3331.1513730171,3331.15,3000.0,331.15,0.0,0.0,0.0,Dec-2018,996.16,,Nov-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,509754.0,3.0,4.0,3.0,4.0,1.0,45611.0,85.0,0.0,3.0,4336.0,54.0,40600.0,3.0,18.0,6.0,11.0,31860.0,17998.0,19.7,0.0,0.0,161.0,231.0,15.0,1.0,10.0,15.0,,1.0,41.0,0.0,2.0,4.0,5.0,12.0,25.0,11.0,27.0,4.0,17.0,0.0,0.0,0.0,5.0,95.2,20.0,0.0,1.0,555874.0,50901.0,22400.0,53594.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561744,,30000.0,30000.0,30000.0, 36 months,16.99,1069.44,D,D1,Mailhandler,10+ years,RENT,72000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561744,,credit_card,Credit card refinancing,117xx,NY,13.74,0.0,Jun-2000,660.0,664.0,0.0,,,10.0,0.0,26700.0,60.4,25.0,f,0.0,0.0,32289.653039482204,32289.65,30000.0,2289.65,0.0,0.0,0.0,Apr-2017,1970.77,,Jan-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,32151.0,0.0,1.0,1.0,2.0,12.0,5451.0,64.0,1.0,3.0,6782.0,61.0,44200.0,0.0,4.0,0.0,5.0,3215.0,14315.0,63.9,0.0,0.0,172.0,195.0,11.0,11.0,0.0,11.0,,13.0,,0.0,7.0,8.0,7.0,10.0,7.0,9.0,17.0,8.0,10.0,0.0,0.0,0.0,2.0,100.0,28.6,0.0,0.0,52732.0,32151.0,39700.0,8532.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541756,,35000.0,35000.0,35000.0, 60 months,8.99,726.38,B,B1,Network Engineer,8 years,MORTGAGE,185000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541756,,debt_consolidation,Debt consolidation,301xx,GA,11.92,0.0,Apr-1995,715.0,719.0,0.0,,,14.0,0.0,35363.0,40.2,20.0,f,0.0,0.0,39421.830007364704,39421.83,35000.0,4421.83,0.0,0.0,0.0,May-2018,26331.13,,May-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,355669.0,2.0,2.0,1.0,2.0,9.0,56937.0,100.0,2.0,4.0,10166.0,53.0,87900.0,0.0,0.0,1.0,8.0,25405.0,47899.0,42.2,0.0,0.0,257.0,213.0,6.0,6.0,2.0,6.0,,11.0,,0.0,7.0,8.0,10.0,10.0,7.0,11.0,11.0,8.0,14.0,0.0,0.0,0.0,3.0,100.0,10.0,0.0,0.0,424542.0,92300.0,82900.0,65892.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90225384,,4000.0,4000.0,4000.0, 36 months,8.99,127.19,B,B1,Owner,4 years,OWN,15000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90225384,,credit_card,Credit card refinancing,163xx,PA,29.92,0.0,Nov-1998,720.0,724.0,2.0,,87.0,11.0,1.0,10197.0,23.0,20.0,w,863.86,863.86,3686.51,3686.51,3136.14,550.37,0.0,0.0,0.0,Mar-2019,127.19,Apr-2019,Sep-2017,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,14728.0,1.0,1.0,0.0,1.0,22.0,4531.0,56.0,1.0,1.0,1667.0,28.0,44300.0,1.0,0.0,2.0,2.0,1473.0,10631.0,20.7,0.0,0.0,169.0,115.0,1.0,1.0,1.0,1.0,,1.0,,0.0,2.0,5.0,2.0,4.0,3.0,10.0,16.0,5.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,1.0,0.0,52399.0,14728.0,13400.0,8099.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581558,,35000.0,35000.0,34950.0, 36 months,14.49,1204.57,C,C4,Senior Confidential Specialist,10+ years,MORTGAGE,161000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581558,,debt_consolidation,Debt consolidation,220xx,VA,16.43,0.0,Feb-1980,665.0,669.0,1.0,31.0,,17.0,0.0,171391.0,78.4,38.0,f,8096.21,8084.65,35121.89,35071.72,26903.79,8022.41,195.69,0.0,0.0,Mar-2019,1204.57,Apr-2019,Mar-2019,679.0,675.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,595158.0,1.0,1.0,0.0,2.0,13.0,26603.0,89.0,2.0,5.0,5366.0,82.0,198000.0,2.0,4.0,8.0,8.0,35009.0,4473.0,82.4,0.0,0.0,96.0,439.0,3.0,3.0,6.0,3.0,,3.0,,1.0,9.0,14.0,10.0,15.0,6.0,15.0,24.0,14.0,17.0,0.0,0.0,0.0,3.0,97.3,70.0,0.0,0.0,637400.0,197994.0,25400.0,30000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521565,,12000.0,12000.0,12000.0, 36 months,9.49,384.34,B,B2,Business Development Manager,2 years,MORTGAGE,150000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521565,,debt_consolidation,Debt consolidation,483xx,MI,25.3,0.0,Dec-1978,700.0,704.0,1.0,38.0,,26.0,0.0,72120.0,38.6,44.0,w,2608.17,2608.17,11139.53,11139.53,9391.83,1747.7,0.0,0.0,0.0,Mar-2019,384.34,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,576.0,277465.0,3.0,8.0,3.0,7.0,1.0,94852.0,91.0,2.0,2.0,7315.0,66.0,126500.0,0.0,3.0,3.0,9.0,10672.0,36105.0,42.3,0.0,0.0,150.0,453.0,1.0,1.0,1.0,11.0,38.0,5.0,38.0,0.0,7.0,14.0,7.0,11.0,18.0,16.0,24.0,14.0,26.0,0.0,0.0,0.0,5.0,95.5,42.9,0.0,0.0,394159.0,167221.0,62600.0,104827.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621785,,23350.0,23350.0,23350.0, 36 months,16.99,832.38,D,D1,Transportation Supervisor,10+ years,RENT,90000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621785,,debt_consolidation,Debt consolidation,956xx,CA,20.27,0.0,Sep-2000,675.0,679.0,2.0,50.0,,10.0,0.0,19478.0,75.5,24.0,w,0.0,0.0,18367.45,18367.45,12846.2,5521.25,0.0,0.0,0.0,Aug-2018,832.38,,Dec-2018,499.0,0.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,49333.0,0.0,2.0,0.0,1.0,14.0,29855.0,73.0,0.0,4.0,3243.0,74.0,25800.0,2.0,1.0,3.0,5.0,4933.0,71.0,98.5,0.0,0.0,110.0,192.0,14.0,14.0,3.0,117.0,,0.0,,1.0,2.0,7.0,2.0,4.0,11.0,8.0,10.0,7.0,10.0,0.0,0.0,0.0,0.0,91.7,100.0,0.0,0.0,66797.0,49333.0,4700.0,40997.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90440267,,11725.0,11725.0,11725.0, 36 months,9.49,375.54,B,B2,Cabinet assembler,10+ years,MORTGAGE,25000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90440267,,credit_card,Credit card refinancing,656xx,MO,19.64,0.0,Dec-2005,710.0,714.0,0.0,,,6.0,0.0,9287.0,72.6,13.0,w,2547.23,2547.23,10884.48,10884.48,9177.77,1706.71,0.0,0.0,0.0,Mar-2019,375.54,Apr-2019,Mar-2019,774.0,770.0,0.0,,1.0,Joint App,39000.0,19.72,Not Verified,0.0,0.0,72821.0,0.0,1.0,0.0,1.0,24.0,2252.0,38.0,0.0,0.0,3719.0,61.0,12800.0,0.0,0.0,0.0,1.0,12137.0,3513.0,72.6,0.0,0.0,87.0,122.0,60.0,24.0,2.0,60.0,,,,0.0,3.0,3.0,4.0,5.0,4.0,4.0,7.0,3.0,6.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,87552.0,11539.0,12800.0,6002.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88763817,,10000.0,10000.0,10000.0, 36 months,7.99,313.32,A,A4,Owner,3 years,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88763817,,credit_card,Credit card refinancing,784xx,TX,15.68,1.0,Jan-1988,680.0,684.0,0.0,23.0,,5.0,0.0,7766.0,65.3,39.0,w,0.0,0.0,11143.0981665754,11143.1,10000.0,1143.1,0.0,0.0,0.0,Nov-2018,3627.86,,Mar-2019,684.0,680.0,0.0,39.0,1.0,Individual,,,,0.0,0.0,32330.0,0.0,1.0,2.0,4.0,12.0,24564.0,,1.0,2.0,2990.0,65.0,11900.0,2.0,2.0,2.0,6.0,6466.0,1562.0,81.4,0.0,0.0,344.0,198.0,12.0,12.0,2.0,12.0,23.0,12.0,23.0,1.0,3.0,4.0,3.0,5.0,30.0,4.0,7.0,4.0,5.0,0.0,0.0,0.0,3.0,84.6,66.7,0.0,0.0,49972.0,32330.0,8400.0,38072.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671748,,18000.0,18000.0,18000.0, 36 months,7.99,563.98,A,A4,,,MORTGAGE,76500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671748,,debt_consolidation,Debt consolidation,042xx,ME,14.92,0.0,May-1982,780.0,784.0,2.0,,,11.0,0.0,162098.0,20.5,17.0,w,3844.45,3844.45,16347.43,16347.43,14155.55,2191.88,0.0,0.0,0.0,Mar-2019,563.98,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,162098.0,4.0,0.0,0.0,0.0,123.0,0.0,,5.0,5.0,6312.0,21.0,209100.0,2.0,0.0,4.0,5.0,14736.0,37323.0,19.9,0.0,0.0,123.0,412.0,2.0,2.0,2.0,4.0,,2.0,,0.0,5.0,8.0,6.0,8.0,1.0,11.0,14.0,8.0,11.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,209100.0,162098.0,46600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641606,,40000.0,40000.0,40000.0, 36 months,7.59,1245.91,A,A3,Branch Chief,10+ years,MORTGAGE,129000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641606,,home_improvement,Home improvement,871xx,NM,7.03,0.0,Jan-1998,805.0,809.0,0.0,,,9.0,0.0,8991.0,21.3,14.0,w,0.0,0.0,42076.1822589734,42076.18,40000.0,2076.18,0.0,0.0,0.0,Jul-2017,32125.77,,Jul-2018,824.0,820.0,0.0,,1.0,Individual,,,,0.0,0.0,305799.0,0.0,2.0,0.0,0.0,46.0,5792.0,11.0,0.0,1.0,5519.0,16.0,42300.0,0.0,2.0,0.0,1.0,33978.0,33309.0,21.3,0.0,0.0,157.0,224.0,20.0,20.0,4.0,20.0,,,,0.0,3.0,3.0,4.0,4.0,4.0,4.0,6.0,3.0,9.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,495200.0,14783.0,42300.0,51100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621550,,20000.0,20000.0,20000.0, 60 months,9.49,419.94,B,B2,stocker/picker,10+ years,MORTGAGE,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621550,,debt_consolidation,Debt consolidation,442xx,OH,11.56,1.0,Nov-2004,725.0,729.0,0.0,13.0,,17.0,0.0,18391.0,26.2,29.0,w,11505.05,11505.05,12167.72,12167.72,8494.95,3672.77,0.0,0.0,0.0,Mar-2019,419.94,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,107172.0,0.0,0.0,0.0,0.0,38.0,0.0,,0.0,2.0,3706.0,26.0,70300.0,0.0,1.0,0.0,2.0,6698.0,40819.0,30.6,0.0,0.0,136.0,142.0,18.0,18.0,1.0,26.0,13.0,,13.0,0.0,11.0,14.0,11.0,15.0,2.0,16.0,25.0,14.0,17.0,0.0,0.0,0.0,0.0,93.1,0.0,0.0,0.0,177500.0,18391.0,58800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681487,,4800.0,4800.0,4800.0, 36 months,8.99,152.62,B,B1,Poker Cashier,3 years,MORTGAGE,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681487,,debt_consolidation,Debt consolidation,945xx,CA,13.12,0.0,Aug-2000,660.0,664.0,0.0,67.0,,7.0,0.0,15260.0,63.0,16.0,w,0.0,0.0,5086.2452806399,5086.25,4800.0,286.25,0.0,0.0,0.0,Jul-2018,286.25,,Mar-2019,679.0,675.0,0.0,90.0,1.0,Individual,,,,0.0,1142.0,15260.0,0.0,0.0,0.0,0.0,68.0,0.0,,1.0,1.0,7066.0,63.0,20600.0,0.0,1.0,0.0,1.0,2180.0,2011.0,78.3,0.0,0.0,146.0,193.0,7.0,7.0,2.0,36.0,67.0,,67.0,1.0,4.0,7.0,4.0,6.0,2.0,7.0,12.0,7.0,7.0,0.0,0.0,0.0,1.0,86.7,75.0,0.0,0.0,20600.0,15260.0,14400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90256191,,14700.0,14700.0,14700.0, 36 months,21.49,557.53,D,D5,Custodial,2 years,OWN,35000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90256191,,credit_card,Credit card refinancing,482xx,MI,31.76,0.0,May-2007,675.0,679.0,0.0,,,8.0,0.0,13586.0,56.6,17.0,w,0.0,0.0,7720.35,7720.35,3543.05,2572.23,0.0,1605.07,288.9126,Sep-2017,557.53,,Mar-2018,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,17467.0,1.0,1.0,0.0,1.0,16.0,3881.0,43.0,3.0,6.0,5748.0,53.0,24000.0,0.0,1.0,1.0,7.0,2183.0,5999.0,66.7,0.0,0.0,16.0,112.0,5.0,5.0,0.0,5.0,,10.0,,0.0,5.0,6.0,5.0,12.0,1.0,7.0,16.0,6.0,8.0,0.0,0.0,0.0,3.0,100.0,40.0,0.0,0.0,33000.0,17467.0,18000.0,9000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90239923,,9600.0,9600.0,9600.0, 36 months,13.49,325.74,C,C2,Job Coach aide,< 1 year,RENT,30000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90239923,,credit_card,Credit card refinancing,959xx,CA,31.68,0.0,Dec-2005,700.0,704.0,0.0,40.0,,12.0,0.0,3965.0,37.4,16.0,w,0.0,0.0,4900.26,4900.26,2781.66,1167.73,0.0,950.87,171.1566,Oct-2017,325.74,,Apr-2018,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,42248.0,2.0,2.0,1.0,2.0,6.0,38283.0,85.0,5.0,7.0,1764.0,76.0,10600.0,8.0,2.0,15.0,9.0,3521.0,414.0,82.0,0.0,0.0,101.0,34.0,1.0,1.0,0.0,7.0,,2.0,,0.0,2.0,4.0,2.0,2.0,6.0,9.0,9.0,4.0,12.0,0.0,0.0,0.0,6.0,100.0,50.0,0.0,0.0,55622.0,42248.0,2300.0,45022.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90388337,,40000.0,40000.0,40000.0, 60 months,13.49,920.19,C,C2,Human Resources,9 years,MORTGAGE,112517.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90388337,,debt_consolidation,Debt consolidation,200xx,DC,3.7,0.0,Aug-2005,795.0,799.0,0.0,,,17.0,0.0,5020.0,3.9,30.0,w,23973.21,23973.21,26655.53,26655.53,16026.79,10628.74,0.0,0.0,0.0,Mar-2019,920.19,Apr-2019,Mar-2019,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,401855.0,0.0,1.0,0.0,0.0,133.0,27837.0,80.0,2.0,2.0,2757.0,20.0,129500.0,0.0,0.0,2.0,3.0,23639.0,118080.0,4.1,0.0,0.0,133.0,100.0,9.0,9.0,4.0,9.0,,10.0,,0.0,3.0,3.0,12.0,16.0,2.0,15.0,22.0,3.0,17.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,539334.0,32857.0,123100.0,34834.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461599,,8400.0,8400.0,8400.0, 36 months,6.99,259.33,A,A2,Secretary,10+ years,OWN,62000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461599,,credit_card,Credit card refinancing,932xx,CA,14.71,0.0,Feb-1984,680.0,684.0,0.0,40.0,,10.0,0.0,6853.0,41.5,36.0,w,0.0,0.0,9266.4802945577,9266.48,8400.0,866.48,0.0,0.0,0.0,Jan-2019,2527.16,,Mar-2019,724.0,720.0,0.0,49.0,1.0,Individual,,,,0.0,25987.0,163166.0,0.0,1.0,0.0,0.0,35.0,19825.0,,0.0,2.0,2728.0,42.0,16500.0,0.0,1.0,0.0,2.0,23309.0,6464.0,43.8,0.0,0.0,173.0,391.0,23.0,23.0,5.0,23.0,49.0,16.0,49.0,3.0,3.0,4.0,3.0,11.0,5.0,8.0,25.0,4.0,10.0,0.0,0.0,0.0,0.0,88.9,66.7,0.0,0.0,203813.0,26678.0,11500.0,36243.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191113,,1500.0,1500.0,1500.0, 36 months,12.79,50.39,C,C1,Busniess Support,1 year,OWN,26000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191113,,debt_consolidation,Debt consolidation,752xx,TX,13.25,0.0,Sep-2004,665.0,669.0,1.0,,,8.0,0.0,367.0,18.4,10.0,w,338.13,338.13,1460.24,1460.24,1161.87,298.37,0.0,0.0,0.0,Mar-2019,50.39,Apr-2019,Mar-2019,629.0,625.0,2.0,,1.0,Individual,,,,0.0,10219.0,62865.0,1.0,5.0,0.0,0.0,26.0,62498.0,107.0,1.0,1.0,367.0,104.0,2000.0,0.0,0.0,2.0,1.0,8981.0,133.0,73.4,0.0,0.0,144.0,112.0,2.0,2.0,0.0,2.0,,2.0,,0.0,1.0,1.0,1.0,1.0,6.0,3.0,4.0,1.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,60558.0,62865.0,500.0,58558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611311,,35000.0,35000.0,35000.0, 36 months,19.99,1300.55,D,D4,E-7,10+ years,RENT,105640.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611311,,debt_consolidation,Debt consolidation,963xx,FL,20.99,0.0,Apr-2006,680.0,684.0,1.0,35.0,,8.0,0.0,24021.0,64.1,22.0,w,8526.2,8526.2,37677.08,37677.08,26473.8,11203.28,0.0,0.0,0.0,Mar-2019,1300.55,Apr-2019,Mar-2019,659.0,655.0,0.0,35.0,1.0,Individual,,,,0.0,92.0,47377.0,1.0,2.0,0.0,1.0,16.0,23356.0,54.0,3.0,3.0,891.0,59.0,37500.0,0.0,3.0,1.0,4.0,5922.0,109.0,89.1,0.0,0.0,125.0,50.0,3.0,3.0,0.0,42.0,35.0,3.0,35.0,1.0,1.0,6.0,1.0,2.0,15.0,6.0,7.0,6.0,8.0,0.0,0.0,0.0,3.0,95.5,100.0,0.0,0.0,80963.0,47377.0,1000.0,43463.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581199,,14000.0,14000.0,14000.0, 36 months,16.99,499.07,D,D1,Senior CAD Designer,10+ years,OWN,68000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581199,,moving,Moving and relocation,805xx,CO,17.72,0.0,Jul-2005,665.0,669.0,0.0,,,11.0,0.0,16539.0,71.6,27.0,f,3303.69,3303.69,14459.82,14459.82,10696.31,3763.51,0.0,0.0,0.0,Mar-2019,499.07,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,34521.0,3.0,2.0,1.0,2.0,5.0,17982.0,56.0,2.0,4.0,4027.0,62.0,23100.0,0.0,2.0,0.0,6.0,3836.0,2167.0,81.9,0.0,0.0,77.0,134.0,1.0,1.0,0.0,1.0,,,,0.0,3.0,6.0,5.0,8.0,11.0,9.0,16.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,66.7,0.0,0.0,55289.0,34521.0,12000.0,32189.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90281106,,5000.0,5000.0,5000.0, 36 months,8.59,158.05,A,A5,,,OWN,40000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90281106,,credit_card,Credit card refinancing,857xx,AZ,15.36,0.0,Nov-2006,700.0,704.0,1.0,,,4.0,0.0,5753.0,63.9,17.0,w,0.0,0.0,1719.86,1719.86,1394.02,325.84,0.0,0.0,0.0,Aug-2017,158.05,,Aug-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,15419.0,1.0,1.0,1.0,1.0,3.0,9666.0,92.0,0.0,2.0,4718.0,79.0,9000.0,0.0,1.0,2.0,4.0,3855.0,282.0,94.4,0.0,0.0,3.0,115.0,13.0,3.0,3.0,18.0,,3.0,,0.0,1.0,3.0,1.0,9.0,1.0,3.0,13.0,3.0,4.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,19533.0,15419.0,5000.0,10533.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90081916,,5400.0,5400.0,5400.0, 36 months,7.99,169.2,A,A4,Firefighter,10+ years,MORTGAGE,78500.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90081916,,home_improvement,Home improvement,616xx,IL,5.26,1.0,Dec-1992,690.0,694.0,0.0,12.0,,8.0,0.0,5100.0,30.4,17.0,w,0.0,0.0,5852.7657693124,5852.77,5400.0,452.77,0.0,0.0,0.0,Jan-2018,3486.37,,Jan-2018,684.0,680.0,0.0,50.0,1.0,Individual,,,,0.0,1132.0,119629.0,0.0,2.0,0.0,0.0,26.0,6770.0,44.0,0.0,2.0,1724.0,37.0,16800.0,0.0,0.0,1.0,2.0,14954.0,7680.0,29.5,0.0,0.0,127.0,285.0,14.0,14.0,2.0,22.0,12.0,7.0,12.0,1.0,2.0,4.0,2.0,2.0,9.0,5.0,6.0,4.0,8.0,0.0,0.0,0.0,0.0,76.5,0.0,0.0,0.0,146205.0,11870.0,10900.0,15405.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90135483,,8200.0,8200.0,8200.0, 36 months,13.49,278.23,C,C2,Fabrication Specialist,< 1 year,MORTGAGE,50000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90135483,,car,Car financing,152xx,PA,22.61,0.0,Feb-2004,660.0,664.0,1.0,,81.0,12.0,1.0,10697.0,57.8,19.0,w,0.0,0.0,8717.81,8717.81,8200.0,517.81,0.0,0.0,0.0,Apr-2017,7332.81,,Jun-2017,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,39268.0,1.0,5.0,0.0,1.0,18.0,28571.0,60.0,1.0,1.0,3635.0,60.0,18500.0,0.0,0.0,1.0,2.0,3570.0,5003.0,65.7,0.0,0.0,131.0,140.0,3.0,3.0,2.0,44.0,,3.0,,0.0,3.0,4.0,4.0,6.0,7.0,7.0,10.0,4.0,12.0,0.0,0.0,0.0,1.0,100.0,75.0,1.0,0.0,65899.0,39268.0,14600.0,47399.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90073718,,12000.0,12000.0,12000.0, 36 months,25.29,478.97,E,E5,manager,5 years,RENT,72000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90073718,,other,Other,112xx,NY,10.1,0.0,Feb-2012,680.0,684.0,1.0,,,19.0,0.0,34915.0,27.6,23.0,w,0.0,0.0,8778.49,8778.49,4249.13,3397.53,0.0,1131.83,101.8647,Feb-2018,478.97,,Aug-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,34915.0,0.0,0.0,0.0,0.0,33.0,0.0,,4.0,7.0,11315.0,28.0,126500.0,1.0,0.0,2.0,7.0,1838.0,85587.0,29.0,0.0,0.0,33.0,55.0,7.0,7.0,0.0,7.0,,0.0,,0.0,12.0,13.0,18.0,19.0,1.0,19.0,20.0,13.0,19.0,0.0,0.0,0.0,4.0,100.0,16.7,0.0,0.0,126500.0,34915.0,120500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90096019,,15000.0,15000.0,15000.0, 36 months,17.99,542.22,D,D2,Truck driver,2 years,RENT,62000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90096019,,debt_consolidation,Debt consolidation,233xx,VA,3.99,0.0,Sep-2011,665.0,669.0,1.0,,,6.0,0.0,4277.0,44.6,7.0,w,3592.78,3592.78,15709.39,15709.39,11407.22,4302.17,0.0,0.0,0.0,Mar-2019,542.22,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,530.0,8276.0,0.0,2.0,0.0,0.0,36.0,3999.0,85.0,2.0,3.0,2332.0,58.0,9600.0,3.0,0.0,4.0,3.0,1379.0,3460.0,51.3,0.0,0.0,60.0,25.0,8.0,8.0,0.0,8.0,,2.0,,0.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,6.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,14331.0,8276.0,7100.0,4731.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601565,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,Electrical Engineer,8 years,RENT,120000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601565,,debt_consolidation,Debt consolidation,773xx,TX,8.39,0.0,Oct-2004,795.0,799.0,1.0,,,12.0,0.0,4700.0,12.6,26.0,w,0.0,0.0,26708.064681077798,26708.06,25000.0,1708.06,0.0,0.0,0.0,Jul-2017,22569.83,,Dec-2018,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,34856.0,1.0,6.0,0.0,0.0,31.0,30156.0,58.0,1.0,2.0,2416.0,39.0,37400.0,0.0,0.0,3.0,2.0,2905.0,31600.0,12.9,0.0,0.0,143.0,130.0,1.0,1.0,1.0,1.0,,2.0,,0.0,3.0,3.0,4.0,6.0,15.0,6.0,10.0,3.0,12.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,89879.0,34856.0,36300.0,52479.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661574,,19200.0,19200.0,19200.0, 36 months,8.99,610.47,B,B1,Information Assurance Manager,7 years,MORTGAGE,150000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661574,,debt_consolidation,Debt consolidation,226xx,VA,13.48,0.0,Oct-1995,670.0,674.0,1.0,44.0,63.0,13.0,4.0,17015.0,90.5,34.0,w,0.0,0.0,20956.4329851164,20956.43,19200.0,1756.43,0.0,0.0,0.0,Dec-2017,13029.91,,Mar-2019,734.0,730.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,410009.0,0.0,3.0,2.0,4.0,7.0,33100.0,84.0,0.0,1.0,8949.0,86.0,18800.0,3.0,4.0,3.0,5.0,31539.0,297.0,98.0,0.0,0.0,223.0,251.0,21.0,7.0,4.0,115.0,81.0,4.0,81.0,2.0,2.0,5.0,2.0,5.0,16.0,6.0,12.0,5.0,13.0,0.0,0.0,0.0,2.0,88.2,100.0,0.0,1.0,464342.0,53517.0,14700.0,39568.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693742,,8750.0,8750.0,8750.0, 36 months,8.99,278.21,B,B1,Payroll Manager,< 1 year,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693742,,debt_consolidation,Debt consolidation,221xx,VA,18.19,0.0,Aug-1994,720.0,724.0,0.0,,,19.0,0.0,25543.0,41.5,39.0,w,1890.28,1890.28,8066.41,8066.41,6859.72,1206.69,0.0,0.0,0.0,Mar-2019,280.9,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,68946.0,2.0,3.0,0.0,1.0,13.0,43403.0,75.0,2.0,9.0,5603.0,58.0,61500.0,1.0,1.0,0.0,10.0,3629.0,14362.0,59.0,0.0,0.0,154.0,265.0,1.0,1.0,2.0,1.0,,13.0,,0.0,6.0,8.0,8.0,13.0,10.0,16.0,27.0,8.0,19.0,0.0,0.0,0.0,2.0,100.0,62.5,0.0,0.0,119322.0,68946.0,35000.0,57822.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90438251,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,Controller,2 years,RENT,75000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90438251,,other,Other,800xx,CO,22.64,0.0,Oct-2003,675.0,679.0,0.0,,53.0,20.0,1.0,20007.0,55.6,33.0,w,4345.27,4345.27,18565.99,18565.99,15654.73,2911.26,0.0,0.0,0.0,Mar-2019,640.57,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,996.0,74940.0,2.0,7.0,1.0,1.0,5.0,54933.0,110.0,3.0,7.0,5319.0,91.0,176400.0,0.0,0.0,3.0,8.0,3747.0,149572.0,52.5,0.0,0.0,130.0,155.0,1.0,1.0,0.0,13.0,,5.0,,0.0,4.0,9.0,5.0,8.0,13.0,13.0,20.0,9.0,20.0,0.0,0.0,0.0,4.0,100.0,40.0,1.0,0.0,226438.0,74940.0,160300.0,50038.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521491,,4800.0,4800.0,4800.0, 36 months,10.99,157.13,B,B4,Sales assistant,3 years,RENT,52000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521491,,debt_consolidation,Debt consolidation,233xx,VA,23.98,0.0,Mar-2000,675.0,679.0,0.0,63.0,36.0,13.0,1.0,3223.0,20.8,39.0,w,0.0,0.0,5076.4230994365,5076.42,4800.0,276.42,0.0,0.0,0.0,Apr-2017,4293.7,,Dec-2017,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,49717.0,1.0,7.0,1.0,1.0,0.0,46494.0,36.0,2.0,2.0,1612.0,30.0,15500.0,0.0,1.0,2.0,3.0,4520.0,10401.0,20.0,0.0,0.0,180.0,198.0,10.0,0.0,0.0,12.0,,10.0,,0.0,2.0,3.0,2.0,12.0,12.0,6.0,27.0,3.0,13.0,0.0,0.0,0.0,3.0,97.2,0.0,1.0,0.0,77813.0,49717.0,13000.0,62313.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451413,,32000.0,32000.0,32000.0, 60 months,13.99,744.42,C,C3,Supervisor/Clinical Psychologist,1 year,MORTGAGE,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451413,,credit_card,Credit card refinancing,923xx,CA,26.79,2.0,Dec-2003,675.0,679.0,1.0,14.0,64.0,16.0,3.0,16334.0,39.3,29.0,w,19273.77,19273.77,21563.31,21563.31,12726.23,8837.08,0.0,0.0,0.0,Mar-2019,744.42,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,993209.0,3.0,5.0,2.0,5.0,4.0,976875.0,57.0,2.0,5.0,9639.0,48.0,41600.0,2.0,2.0,4.0,10.0,62076.0,15366.0,51.5,0.0,0.0,123.0,153.0,5.0,4.0,0.0,6.0,14.0,4.0,14.0,0.0,5.0,5.0,8.0,8.0,18.0,11.0,11.0,5.0,15.0,0.0,0.0,0.0,4.0,89.7,25.0,0.0,3.0,956199.0,993209.0,31700.0,914599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413417,,17000.0,17000.0,17000.0, 60 months,8.99,352.81,B,B1,Registered nurse,2 years,MORTGAGE,67000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413417,,debt_consolidation,Debt consolidation,853xx,AZ,28.03,0.0,Jun-2008,690.0,694.0,0.0,,,8.0,0.0,10148.0,86.0,12.0,w,9727.59,9727.59,10223.0,10223.0,7272.41,2950.59,0.0,0.0,0.0,Mar-2019,352.81,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Joint App,152000.0,13.35,Not Verified,0.0,0.0,433494.0,2.0,3.0,1.0,2.0,4.0,71860.0,98.0,0.0,1.0,5610.0,92.0,11800.0,0.0,4.0,2.0,4.0,61928.0,1652.0,86.0,0.0,0.0,44.0,99.0,19.0,4.0,1.0,19.0,,8.0,,0.0,3.0,3.0,3.0,5.0,5.0,4.0,6.0,3.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,454953.0,82008.0,11800.0,90202.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171603,,35000.0,35000.0,35000.0, 36 months,11.49,1154.0,B,B5,Construction management ,10+ years,OWN,100000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171603,,debt_consolidation,Debt consolidation,600xx,IL,18.91,1.0,Jan-2003,665.0,669.0,0.0,20.0,,20.0,0.0,32977.0,60.1,46.0,w,0.0,0.0,16134.03,16134.03,9451.49,3220.17,0.0,3462.37,623.2266,Sep-2017,1154.0,,Mar-2018,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,208689.0,0.0,2.0,0.0,1.0,15.0,21337.0,48.0,1.0,3.0,9552.0,55.0,54900.0,0.0,1.0,0.0,4.0,10984.0,9625.0,74.8,0.0,0.0,147.0,164.0,11.0,11.0,4.0,20.0,,15.0,,0.0,9.0,14.0,10.0,20.0,8.0,17.0,33.0,14.0,20.0,0.0,0.0,0.0,1.0,97.8,40.0,0.0,0.0,267610.0,54314.0,38200.0,44569.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693648,,12500.0,12500.0,12500.0, 36 months,8.99,397.44,B,B1,Administrative Officer 2,10+ years,MORTGAGE,80000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693648,,debt_consolidation,Debt consolidation,430xx,OH,23.31,0.0,Mar-1998,805.0,809.0,0.0,,,12.0,0.0,9458.0,16.9,32.0,w,0.0,0.0,13442.3115729842,13442.31,12500.0,942.31,0.0,0.0,0.0,Sep-2017,9436.7,,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,218649.0,0.0,4.0,2.0,2.0,8.0,72716.0,80.0,1.0,2.0,6591.0,56.0,55800.0,2.0,3.0,1.0,4.0,18221.0,39244.0,17.9,0.0,0.0,125.0,222.0,9.0,8.0,6.0,9.0,,11.0,,0.0,2.0,3.0,5.0,10.0,13.0,7.0,13.0,3.0,12.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,296315.0,82174.0,47800.0,90601.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427712,,10500.0,10500.0,10500.0, 36 months,13.49,356.27,C,C2,Taxi Driver,4 years,RENT,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427712,,home_improvement,Home improvement,328xx,FL,20.76,0.0,Jul-2007,665.0,669.0,0.0,25.0,99.0,14.0,1.0,19044.0,49.5,27.0,w,2385.42,2385.42,10323.96,10323.96,8114.58,2209.38,0.0,0.0,0.0,Mar-2019,356.27,Apr-2019,Mar-2019,674.0,670.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,22662.0,2.0,2.0,2.0,4.0,4.0,3618.0,29.0,2.0,2.0,5332.0,44.0,38500.0,0.0,0.0,0.0,6.0,1619.0,16404.0,50.7,0.0,0.0,105.0,110.0,5.0,4.0,1.0,5.0,,,,1.0,9.0,11.0,9.0,11.0,10.0,12.0,16.0,11.0,14.0,0.0,0.0,0.0,4.0,96.3,22.2,0.0,1.0,51073.0,22662.0,33300.0,12573.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695598,,20000.0,20000.0,20000.0, 60 months,24.49,581.07,E,E3,Mortgage Loan Originator,1 year,MORTGAGE,82502.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695598,,debt_consolidation,Debt consolidation,294xx,SC,7.71,0.0,Feb-2005,680.0,684.0,1.0,,93.0,9.0,1.0,5117.0,53.3,14.0,f,13251.23,13251.23,16864.29,16864.29,6748.77,10115.52,0.0,0.0,0.0,Mar-2019,581.07,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,13450.0,3.0,1.0,1.0,1.0,9.0,8333.0,86.0,3.0,5.0,1252.0,70.0,9600.0,1.0,3.0,2.0,6.0,1494.0,2427.0,63.2,0.0,0.0,127.0,139.0,0.0,0.0,0.0,21.0,,4.0,,0.0,5.0,8.0,5.0,6.0,4.0,8.0,10.0,8.0,9.0,0.0,0.0,0.0,4.0,100.0,20.0,1.0,0.0,19257.0,13450.0,6600.0,9657.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90095819,,35200.0,35200.0,35200.0, 36 months,17.99,1272.39,D,D2,Production Operator ,10+ years,RENT,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90095819,,credit_card,Credit card refinancing,622xx,IL,27.19,0.0,Jan-2006,750.0,754.0,0.0,,,13.0,0.0,19933.0,24.5,23.0,w,0.0,0.0,36360.632652153196,36360.63,35200.0,1160.63,0.0,0.0,0.0,Dec-2016,35123.42,,Apr-2017,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,66292.0,0.0,4.0,1.0,1.0,10.0,46359.0,59.0,4.0,4.0,7499.0,42.0,81400.0,0.0,11.0,1.0,5.0,5099.0,52858.0,24.1,0.0,0.0,116.0,128.0,8.0,8.0,0.0,12.0,,12.0,,0.0,4.0,5.0,7.0,7.0,9.0,9.0,14.0,5.0,13.0,0.0,0.0,0.0,5.0,100.0,14.3,0.0,0.0,159450.0,66292.0,69600.0,78050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541479,,2500.0,2500.0,2500.0, 36 months,13.99,85.44,C,C3,Presentation Team Member,9 years,RENT,22000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541479,,other,Other,750xx,TX,26.02,0.0,Sep-2005,665.0,669.0,0.0,,,7.0,0.0,2585.0,48.8,13.0,w,0.0,0.0,2984.3508760094,2984.35,2500.0,484.35,0.0,0.0,0.0,Aug-2018,1183.75,,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,369.0,12665.0,0.0,1.0,0.0,1.0,18.0,10080.0,67.0,1.0,5.0,468.0,62.0,5300.0,2.0,0.0,1.0,6.0,1809.0,275.0,75.0,0.0,0.0,132.0,34.0,9.0,9.0,0.0,17.0,,3.0,,0.0,2.0,5.0,2.0,2.0,7.0,6.0,6.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,20420.0,12665.0,1100.0,15120.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621599,,7275.0,7275.0,7275.0, 36 months,17.99,262.98,D,D2,,,OWN,22753.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621599,,debt_consolidation,Debt consolidation,433xx,OH,29.59,0.0,Jan-1998,665.0,669.0,1.0,,4.0,15.0,8.0,4447.0,25.9,19.0,w,0.0,0.0,7521.8367538754,7521.84,7275.0,246.84,0.0,0.0,0.0,Dec-2016,7266.13,,Mar-2019,549.0,545.0,1.0,,1.0,Individual,,,,0.0,2348.0,22463.0,0.0,1.0,0.0,1.0,16.0,4405.0,70.0,2.0,5.0,995.0,38.0,17200.0,2.0,0.0,5.0,6.0,1728.0,10524.0,21.5,0.0,0.0,41.0,224.0,7.0,7.0,1.0,15.0,,4.0,,0.0,7.0,11.0,7.0,10.0,2.0,13.0,16.0,11.0,15.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,7.0,42942.0,8852.0,13400.0,6300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88957928,,5000.0,5000.0,5000.0, 36 months,8.99,158.98,B,B1,,,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88957928,,credit_card,Credit card refinancing,554xx,MN,10.15,0.0,Jul-1995,665.0,669.0,0.0,32.0,70.0,13.0,3.0,7149.0,51.8,36.0,w,0.0,0.0,5263.0391292976,5263.04,5000.0,263.04,0.0,0.0,0.0,May-2017,4311.66,,Mar-2019,694.0,690.0,1.0,48.0,1.0,Individual,,,,0.0,1122.0,76587.0,1.0,1.0,0.0,1.0,14.0,2498.0,58.0,3.0,5.0,3794.0,53.0,13800.0,1.0,0.0,1.0,7.0,6962.0,3059.0,68.5,0.0,0.0,152.0,254.0,1.0,1.0,1.0,16.0,32.0,10.0,32.0,9.0,3.0,6.0,4.0,10.0,14.0,11.0,20.0,6.0,13.0,0.0,0.0,0.0,4.0,69.4,66.7,0.0,2.0,88098.0,9647.0,9700.0,4298.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551649,,15000.0,15000.0,15000.0, 36 months,8.59,474.14,A,A5,,,OWN,33000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551649,,credit_card,Credit card refinancing,462xx,IN,30.91,0.0,Dec-1989,780.0,784.0,0.0,27.0,,11.0,0.0,12850.0,15.3,20.0,w,3225.91,3225.91,13742.9,13742.9,11774.09,1968.81,0.0,0.0,0.0,Mar-2019,474.14,Apr-2019,Mar-2019,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,28575.0,0.0,1.0,0.0,0.0,36.0,15725.0,62.0,0.0,1.0,3835.0,26.0,83800.0,0.0,4.0,0.0,1.0,2598.0,62923.0,14.5,0.0,0.0,177.0,321.0,15.0,15.0,2.0,47.0,,,,0.0,6.0,9.0,7.0,9.0,3.0,10.0,14.0,9.0,11.0,0.0,0.0,0.0,0.0,95.0,0.0,0.0,0.0,109117.0,28575.0,73600.0,25317.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501608,,7000.0,7000.0,7000.0, 36 months,11.49,230.8,B,B5,Waiter,9 years,RENT,44000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501608,,debt_consolidation,Debt consolidation,104xx,NY,11.62,0.0,Sep-2010,685.0,689.0,0.0,,,6.0,0.0,4508.0,82.0,7.0,w,1555.41,1555.41,6682.03,6682.03,5444.59,1237.44,0.0,0.0,0.0,Mar-2019,230.8,Apr-2019,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,0.0,7892.0,0.0,1.0,0.0,1.0,15.0,3384.0,71.0,0.0,0.0,1529.0,77.0,5500.0,0.0,0.0,0.0,1.0,1315.0,222.0,94.8,0.0,0.0,15.0,72.0,33.0,15.0,0.0,33.0,,14.0,,0.0,4.0,5.0,4.0,5.0,1.0,5.0,6.0,5.0,6.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,10300.0,7892.0,4300.0,4800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90179895,,11050.0,11050.0,11050.0, 36 months,18.99,405.0,D,D3,Assistant Branch Manager,2 years,RENT,60000.0,Source Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90179895,,house,Home buying,212xx,MD,24.26,0.0,Aug-1999,675.0,679.0,0.0,,69.0,7.0,2.0,10926.0,93.4,10.0,f,3042.83,3042.83,11405.57,11405.57,8007.17,3378.15,20.25,0.0,0.0,Mar-2019,425.25,Apr-2019,Mar-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,93583.0,1.0,2.0,0.0,0.0,65.0,82657.0,23.0,2.0,3.0,4537.0,47.0,11700.0,0.0,0.0,0.0,3.0,15597.0,105.0,98.7,0.0,0.0,157.0,205.0,1.0,1.0,0.0,23.0,,23.0,,0.0,2.0,4.0,3.0,5.0,3.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,1.0,114944.0,93583.0,8100.0,103244.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693813,,9000.0,9000.0,9000.0, 36 months,8.99,286.16,B,B1,Office Manager,2 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693813,,credit_card,Credit card refinancing,606xx,IL,9.71,0.0,Sep-2009,735.0,739.0,1.0,,,21.0,0.0,7961.0,27.9,36.0,w,1462.05,1462.05,8699.14,8699.14,7537.95,1161.19,0.0,0.0,0.0,Mar-2019,286.16,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,59672.0,0.0,17.0,0.0,2.0,19.0,51711.0,100.0,0.0,1.0,5439.0,74.0,28500.0,0.0,0.0,1.0,3.0,2842.0,18739.0,29.8,0.0,0.0,84.0,47.0,15.0,15.0,0.0,15.0,,3.0,,0.0,2.0,2.0,3.0,3.0,31.0,4.0,4.0,2.0,21.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,80160.0,59672.0,26700.0,51660.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90094115,,9000.0,9000.0,9000.0, 36 months,8.99,286.16,B,B1,Portfolio Manager,10+ years,OWN,230000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90094115,,credit_card,Credit card refinancing,774xx,TX,24.23,0.0,Apr-1975,705.0,709.0,1.0,,,13.0,0.0,170977.0,77.0,28.0,w,1944.25,1944.25,8294.14,8294.14,7055.75,1238.39,0.0,0.0,0.0,Mar-2019,286.16,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,300843.0,0.0,1.0,1.0,1.0,9.0,12245.0,79.0,1.0,1.0,42382.0,77.0,196100.0,1.0,2.0,1.0,2.0,23142.0,8308.0,91.2,0.0,0.0,149.0,497.0,12.0,9.0,2.0,44.0,,1.0,,0.0,5.0,6.0,6.0,13.0,5.0,10.0,19.0,6.0,13.0,0.0,0.0,0.0,2.0,100.0,83.3,0.0,0.0,437921.0,194165.0,130100.0,15454.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521458,,7925.0,7925.0,7925.0, 36 months,21.49,300.58,D,D5,Senior merchandise manager,1 year,MORTGAGE,58000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521458,,credit_card,Credit card refinancing,065xx,CT,26.45,0.0,Dec-1995,670.0,674.0,3.0,61.0,46.0,21.0,2.0,15785.0,30.2,37.0,w,0.0,0.0,9812.3842583338,9812.38,7925.0,1887.38,0.0,0.0,0.0,Jan-2018,5613.72,,Mar-2019,804.0,800.0,0.0,61.0,1.0,Individual,,,,0.0,939.0,35939.0,2.0,2.0,0.0,2.0,18.0,20154.0,62.0,7.0,15.0,3517.0,42.0,52300.0,2.0,0.0,6.0,17.0,1711.0,27947.0,35.9,0.0,0.0,151.0,249.0,5.0,5.0,1.0,6.0,61.0,1.0,61.0,9.0,11.0,12.0,15.0,22.0,4.0,19.0,32.0,12.0,21.0,0.0,0.0,0.0,7.0,73.0,13.3,0.0,0.0,84755.0,35939.0,43600.0,32455.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90225127,,12000.0,12000.0,12000.0, 60 months,27.79,372.12,F,F5,Apprentice Carpenter,3 years,MORTGAGE,56000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90225127,,major_purchase,Major purchase,551xx,MN,6.77,2.0,Jun-2007,680.0,684.0,0.0,19.0,,5.0,0.0,0.0,0.0,12.0,w,0.0,0.0,5293.09,5293.09,1285.55,3161.36,0.0,846.18,152.3124,Oct-2017,372.12,,Jul-2018,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,15687.0,0.0,3.0,0.0,2.0,14.0,15687.0,84.0,0.0,1.0,0.0,79.0,1200.0,4.0,0.0,6.0,3.0,3137.0,1200.0,0.0,0.0,0.0,36.0,111.0,16.0,14.0,0.0,16.0,19.0,3.0,19.0,0.0,0.0,0.0,2.0,3.0,4.0,2.0,8.0,0.0,5.0,0.0,0.0,0.0,0.0,66.7,0.0,0.0,0.0,19793.0,15687.0,1200.0,18593.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561448,,15000.0,15000.0,15000.0, 36 months,9.49,480.43,B,B2,Quality Analyst,10+ years,RENT,46000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561448,,debt_consolidation,Debt consolidation,342xx,FL,24.16,0.0,Aug-2002,705.0,709.0,0.0,54.0,99.0,14.0,1.0,5524.0,23.5,33.0,w,0.0,0.0,17220.848477216798,17220.85,15000.0,2220.85,0.0,0.0,0.0,Mar-2019,3746.14,,Mar-2019,689.0,685.0,0.0,54.0,1.0,Individual,,,,0.0,1069.0,28886.0,2.0,4.0,1.0,3.0,3.0,23362.0,61.0,1.0,6.0,2441.0,47.0,23500.0,0.0,1.0,1.0,9.0,2063.0,8870.0,30.7,0.0,0.0,169.0,75.0,3.0,3.0,0.0,3.0,,7.0,,3.0,3.0,6.0,5.0,7.0,17.0,10.0,15.0,6.0,14.0,0.0,0.0,0.0,2.0,78.1,20.0,1.0,0.0,61574.0,28886.0,12800.0,38074.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251897,,3800.0,3800.0,3800.0, 36 months,7.99,119.07,A,A4,Service Specialist,3 years,MORTGAGE,56000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251897,,home_improvement,Home improvement,282xx,NC,14.17,0.0,May-2005,730.0,734.0,1.0,74.0,99.0,15.0,1.0,4225.0,24.7,26.0,w,0.0,0.0,3934.0298957767,3934.03,3800.0,134.03,0.0,0.0,0.0,Mar-2017,3459.44,,May-2017,744.0,740.0,0.0,74.0,1.0,Individual,,,,0.0,238.0,180579.0,1.0,2.0,1.0,2.0,12.0,20226.0,64.0,0.0,2.0,2774.0,50.0,17100.0,0.0,4.0,3.0,5.0,16416.0,10394.0,26.3,0.0,0.0,131.0,136.0,22.0,4.0,1.0,25.0,,5.0,,1.0,4.0,7.0,4.0,7.0,7.0,12.0,18.0,7.0,15.0,0.0,0.0,0.0,2.0,96.2,0.0,1.0,0.0,205555.0,24451.0,14100.0,31705.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121402,,6500.0,6500.0,6500.0, 36 months,14.49,223.71,C,C4,driver,3 years,RENT,32500.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121402,,debt_consolidation,Debt consolidation,554xx,MN,9.86,0.0,Sep-2003,690.0,694.0,0.0,70.0,,6.0,0.0,2162.0,45.0,8.0,f,1493.73,1493.73,6495.9,6495.9,5006.27,1489.63,0.0,0.0,0.0,Mar-2019,223.71,Apr-2019,Mar-2019,539.0,535.0,1.0,70.0,1.0,Individual,,,,0.0,0.0,6339.0,1.0,1.0,0.0,1.0,20.0,4177.0,77.0,1.0,3.0,774.0,62.0,4800.0,2.0,0.0,1.0,4.0,1057.0,1880.0,44.7,0.0,0.0,20.0,46.0,1.0,1.0,0.0,1.0,,7.0,,1.0,2.0,4.0,2.0,3.0,1.0,5.0,6.0,4.0,6.0,0.0,0.0,0.0,1.0,85.7,50.0,0.0,0.0,10262.0,6339.0,3400.0,5462.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171956,,11000.0,11000.0,11000.0, 36 months,9.49,352.32,B,B2,sales,8 years,MORTGAGE,71000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171956,,debt_consolidation,Debt consolidation,975xx,OR,9.33,1.0,Feb-1989,675.0,679.0,0.0,9.0,,14.0,0.0,8376.0,31.0,18.0,w,0.0,0.0,12359.3519073802,12359.35,11000.0,1359.35,0.0,0.0,0.0,Jun-2018,5353.55,,Oct-2018,629.0,625.0,0.0,,1.0,Individual,,,,0.0,0.0,10520.0,0.0,1.0,0.0,0.0,30.0,2054.0,26.0,0.0,0.0,2018.0,29.0,27000.0,0.0,0.0,0.0,0.0,751.0,17024.0,33.0,0.0,0.0,66.0,331.0,26.0,26.0,0.0,27.0,,24.0,9.0,0.0,6.0,6.0,10.0,10.0,4.0,12.0,13.0,6.0,14.0,0.0,0.0,0.0,0.0,94.4,50.0,0.0,0.0,35723.0,10520.0,25400.0,8000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90068202,,20000.0,20000.0,20000.0, 36 months,15.59,699.1,C,C5,Owner,1 year,RENT,74000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90068202,,debt_consolidation,Debt consolidation,773xx,TX,20.19,0.0,Mar-1988,660.0,664.0,1.0,63.0,70.0,13.0,1.0,13428.0,52.2,38.0,f,4648.95,4648.95,20256.58,20256.58,15351.05,4905.53,0.0,0.0,0.0,Mar-2019,699.1,Apr-2019,Mar-2019,729.0,725.0,0.0,63.0,1.0,Individual,,,,0.0,850.0,86540.0,3.0,3.0,0.0,2.0,13.0,73112.0,93.0,4.0,7.0,5138.0,59.0,25700.0,0.0,0.0,1.0,9.0,6657.0,9854.0,56.6,0.0,0.0,165.0,342.0,3.0,3.0,2.0,3.0,,5.0,63.0,3.0,7.0,9.0,7.0,16.0,12.0,10.0,24.0,9.0,13.0,0.0,0.0,0.0,4.0,91.2,0.0,0.0,0.0,112586.0,86540.0,22700.0,86886.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693799,,5000.0,5000.0,5000.0, 36 months,7.59,155.74,A,A3,Sr. Executive Assistant,8 years,RENT,145000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693799,,major_purchase,Major purchase,945xx,CA,8.1,0.0,Jan-2002,775.0,779.0,0.0,,,18.0,0.0,17485.0,26.6,24.0,w,1063.03,1063.03,4514.35,4514.35,3936.97,577.38,0.0,0.0,0.0,Mar-2019,155.74,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,30489.0,0.0,1.0,0.0,1.0,23.0,13004.0,54.0,2.0,2.0,7577.0,34.0,65800.0,1.0,0.0,2.0,3.0,1694.0,33923.0,29.0,0.0,0.0,34.0,176.0,7.0,7.0,0.0,7.0,,0.0,,0.0,6.0,11.0,8.0,11.0,2.0,17.0,22.0,11.0,18.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,89693.0,30489.0,47800.0,23893.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90393767,,1000.0,1000.0,1000.0, 36 months,17.99,36.15,D,D2,water truck driver,2 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90393767,,other,Other,809xx,CO,24.29,1.0,Sep-1983,660.0,664.0,4.0,12.0,62.0,20.0,1.0,7126.0,45.4,65.0,w,0.0,0.0,1176.4677615614999,1176.47,1000.0,176.47,0.0,0.0,0.0,Nov-2017,743.67,,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,73797.0,2.0,3.0,1.0,1.0,7.0,66671.0,88.0,4.0,14.0,2969.0,80.0,15700.0,4.0,4.0,15.0,15.0,4100.0,1701.0,78.2,0.0,0.0,172.0,313.0,1.0,1.0,1.0,9.0,12.0,1.0,12.0,0.0,4.0,6.0,4.0,17.0,17.0,17.0,46.0,6.0,19.0,0.0,0.0,0.0,5.0,96.1,50.0,1.0,0.0,91896.0,73797.0,7800.0,76196.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693224,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Team Leader,5 years,MORTGAGE,33280.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693224,,debt_consolidation,Debt consolidation,480xx,MI,23.26,0.0,Aug-2009,690.0,694.0,0.0,,,8.0,0.0,7289.0,49.6,9.0,w,0.0,0.0,5053.85,5053.85,2509.73,1481.02,0.0,1063.1,191.358,Sep-2017,361.48,,Mar-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,81583.0,0.0,1.0,0.0,1.0,14.0,8152.0,68.0,0.0,0.0,3564.0,58.0,14700.0,0.0,0.0,0.0,1.0,10198.0,0.0,101.7,0.0,0.0,14.0,85.0,29.0,14.0,1.0,29.0,,,,0.0,3.0,5.0,3.0,4.0,1.0,6.0,7.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,97395.0,15441.0,4600.0,12000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90408983,,7400.0,7400.0,7400.0, 36 months,18.99,271.22,D,D3,Bus monitor,3 years,RENT,20600.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90408983,,debt_consolidation,Debt consolidation,112xx,NY,33.29,0.0,May-2007,710.0,714.0,0.0,48.0,,14.0,0.0,7174.0,35.3,23.0,w,0.0,0.0,3008.44,3008.44,1302.52,859.43,0.0,846.49,152.3682,Jun-2017,271.22,,Dec-2017,539.0,535.0,0.0,48.0,1.0,Individual,,,,0.0,0.0,19437.0,0.0,3.0,1.0,1.0,11.0,12263.0,98.0,0.0,6.0,3895.0,59.0,20300.0,0.0,0.0,0.0,7.0,1495.0,660.0,89.8,0.0,0.0,106.0,112.0,13.0,11.0,0.0,13.0,,24.0,48.0,1.0,2.0,4.0,3.0,4.0,6.0,11.0,17.0,5.0,14.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,32800.0,19437.0,6500.0,12500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89828620,,11850.0,11850.0,11850.0, 36 months,16.99,422.43,D,D1,Office Manager,1 year,RENT,50000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89828620,,debt_consolidation,Debt consolidation,212xx,MD,32.36,0.0,Jul-2006,660.0,664.0,0.0,,,17.0,0.0,18032.0,87.5,28.0,w,0.0,0.0,5493.67,5493.67,2715.06,1498.05,0.0,1280.56,230.5008,Aug-2017,422.43,,Aug-2018,564.0,560.0,0.0,,1.0,Individual,,,,0.0,0.0,77453.0,0.0,6.0,2.0,4.0,9.0,59421.0,75.0,1.0,1.0,7499.0,78.0,20600.0,0.0,0.0,1.0,5.0,4556.0,27.0,99.8,0.0,0.0,111.0,122.0,11.0,9.0,0.0,11.0,,11.0,,0.0,8.0,11.0,8.0,8.0,17.0,11.0,11.0,11.0,17.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,99809.0,77453.0,15900.0,79209.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692756,,19000.0,19000.0,19000.0, 60 months,14.49,446.94,C,C4,Project Coordinator III,10+ years,RENT,102000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692756,,debt_consolidation,Debt consolidation,220xx,VA,21.53,0.0,Jul-2000,665.0,669.0,0.0,,,21.0,0.0,16707.0,32.6,31.0,f,0.0,0.0,5894.33,5894.33,3040.4,2853.93,0.0,0.0,0.0,Nov-2017,446.94,,Jul-2018,589.0,585.0,0.0,,1.0,Individual,,,,0.0,341.0,70684.0,2.0,2.0,1.0,2.0,9.0,53977.0,74.0,5.0,8.0,6314.0,44.0,51300.0,1.0,0.0,0.0,10.0,3366.0,16714.0,46.8,0.0,0.0,81.0,194.0,1.0,1.0,0.0,4.0,,17.0,,0.0,6.0,8.0,9.0,10.0,6.0,19.0,25.0,8.0,21.0,0.0,0.0,0.0,6.0,100.0,33.3,0.0,0.0,113858.0,70684.0,31400.0,62558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087304,,5600.0,5600.0,5600.0, 36 months,16.99,199.63,D,D1,Sous chef ,2 years,RENT,36000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087304,,car,Car financing,891xx,NV,12.17,1.0,Apr-2007,685.0,689.0,2.0,18.0,,9.0,0.0,6307.0,90.1,12.0,w,1321.41,1321.41,5783.98,5783.98,4278.59,1505.39,0.0,0.0,0.0,Mar-2019,199.63,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,30545.0,0.0,8.0,0.0,0.0,47.0,24238.0,90.0,0.0,0.0,6307.0,90.0,7000.0,1.0,0.0,2.0,0.0,3394.0,693.0,90.1,0.0,0.0,113.0,101.0,30.0,30.0,0.0,30.0,49.0,0.0,49.0,0.0,1.0,1.0,1.0,2.0,10.0,1.0,2.0,1.0,9.0,0.0,0.0,0.0,0.0,83.3,100.0,0.0,0.0,33891.0,30545.0,7000.0,26891.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410163,,12000.0,12000.0,12000.0, 60 months,22.39,334.1,E,E1,Office Manager,3 years,MORTGAGE,35000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410163,,credit_card,Credit card refinancing,339xx,FL,17.97,0.0,Aug-2011,665.0,669.0,0.0,,,7.0,0.0,3810.0,60.5,10.0,w,0.0,0.0,2734.16,2734.16,453.3,979.1,0.0,1301.76,234.3168,Feb-2017,334.1,,Aug-2017,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,119651.0,3.0,2.0,1.0,1.0,2.0,5431.0,45.0,2.0,4.0,2469.0,50.0,6300.0,2.0,0.0,0.0,7.0,17093.0,719.0,83.3,0.0,0.0,61.0,45.0,0.0,0.0,2.0,13.0,,13.0,,0.0,2.0,4.0,2.0,2.0,3.0,4.0,5.0,4.0,7.0,0.0,0.0,0.0,5.0,100.0,50.0,0.0,0.0,131335.0,9241.0,4300.0,12118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90248766,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,Forklift Driver. ,10+ years,RENT,47000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90248766,,debt_consolidation,Debt consolidation,953xx,CA,23.51,0.0,Sep-1997,670.0,674.0,0.0,,65.0,10.0,1.0,13749.0,45.7,19.0,w,0.0,0.0,4013.91,4013.91,2214.38,741.48,0.0,1058.05,190.449,Jul-2017,324.98,,Jan-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,26398.0,0.0,2.0,0.0,0.0,31.0,12649.0,43.0,1.0,3.0,7427.0,44.0,30100.0,0.0,1.0,0.0,3.0,2640.0,10073.0,42.4,0.0,0.0,56.0,228.0,8.0,8.0,1.0,26.0,,21.0,,0.0,1.0,3.0,3.0,7.0,2.0,8.0,16.0,3.0,10.0,0.0,0.0,0.0,1.0,100.0,33.3,1.0,0.0,59730.0,26398.0,17500.0,29630.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405762,,19750.0,19750.0,19750.0, 60 months,24.99,579.58,E,E4,Coding & Compliance Specialist,1 year,RENT,52000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405762,,debt_consolidation,Debt consolidation,042xx,ME,25.56,0.0,Jul-2000,665.0,669.0,1.0,24.0,60.0,20.0,1.0,16165.0,53.7,32.0,w,13139.98,13139.98,16780.4,16780.4,6610.02,10170.38,0.0,0.0,0.0,Mar-2019,579.58,Apr-2019,Mar-2019,624.0,620.0,0.0,24.0,1.0,Individual,,,,0.0,71.0,31680.0,5.0,3.0,1.0,2.0,6.0,15515.0,62.0,5.0,7.0,4384.0,58.0,30100.0,0.0,6.0,1.0,9.0,1584.0,1022.0,92.2,0.0,0.0,161.0,194.0,0.0,0.0,0.0,4.0,24.0,6.0,24.0,2.0,7.0,13.0,7.0,11.0,9.0,17.0,23.0,13.0,20.0,0.0,0.0,0.0,6.0,87.5,100.0,0.0,0.0,55080.0,31680.0,13100.0,24980.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541551,,24000.0,24000.0,24000.0, 60 months,18.99,622.45,D,D3,Corrections officer ,5 years,RENT,75000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541551,,other,Other,125xx,NY,24.75,2.0,Feb-1999,660.0,664.0,0.0,16.0,81.0,5.0,1.0,1897.0,17.7,10.0,w,15158.47,15158.47,18030.66,18030.66,8841.53,9189.13,0.0,0.0,0.0,Mar-2019,622.45,Apr-2019,Mar-2019,709.0,705.0,0.0,77.0,1.0,Individual,,,,0.0,0.0,25304.0,0.0,2.0,1.0,1.0,9.0,23407.0,59.0,0.0,0.0,1897.0,50.0,10700.0,0.0,1.0,1.0,1.0,6326.0,1903.0,49.9,0.0,0.0,159.0,211.0,37.0,9.0,0.0,43.0,16.0,3.0,16.0,1.0,1.0,1.0,1.0,1.0,5.0,3.0,5.0,1.0,5.0,0.0,0.0,0.0,1.0,50.0,0.0,0.0,1.0,50599.0,25304.0,3800.0,39899.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90149043,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Materials Manager,10+ years,RENT,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90149043,,other,Other,461xx,IN,13.23,0.0,Sep-1987,665.0,669.0,2.0,32.0,,9.0,0.0,12120.0,84.8,26.0,w,0.0,0.0,12908.425345560901,12908.43,10000.0,2908.43,0.0,0.0,0.0,Mar-2019,2756.02,,Mar-2019,554.0,550.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,49828.0,1.0,4.0,1.0,2.0,5.0,37708.0,81.0,0.0,2.0,4432.0,82.0,14300.0,1.0,3.0,3.0,4.0,5536.0,8.0,99.9,0.0,0.0,348.0,56.0,20.0,5.0,0.0,20.0,,0.0,,0.0,3.0,5.0,3.0,4.0,20.0,5.0,6.0,5.0,9.0,0.0,0.0,0.0,1.0,88.5,100.0,0.0,0.0,60876.0,49828.0,10200.0,46576.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90298610,,10000.0,10000.0,10000.0, 60 months,24.99,293.46,E,E4,Rn care manager,10+ years,MORTGAGE,62000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298610,,debt_consolidation,Debt consolidation,354xx,AL,34.3,2.0,Oct-1988,675.0,679.0,2.0,9.0,101.0,13.0,1.0,6466.0,39.4,35.0,w,0.0,0.0,6150.74,6150.74,1716.97,3257.97,0.0,1175.8,211.644,Mar-2018,293.46,,Sep-2018,524.0,520.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,67157.0,2.0,5.0,2.0,6.0,9.0,60691.0,86.0,2.0,3.0,1985.0,77.0,16400.0,4.0,6.0,3.0,9.0,5166.0,15.0,99.3,0.0,0.0,111.0,335.0,3.0,3.0,3.0,3.0,11.0,3.0,9.0,1.0,1.0,5.0,1.0,2.0,13.0,8.0,19.0,5.0,13.0,0.0,0.0,1.0,4.0,94.3,100.0,1.0,0.0,86737.0,67157.0,2000.0,70337.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471487,,5000.0,5000.0,5000.0, 36 months,8.59,158.05,A,A5,Teacher ,6 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471487,,credit_card,Credit card refinancing,405xx,KY,18.72,0.0,Apr-2006,700.0,704.0,1.0,,,8.0,0.0,35517.0,87.7,19.0,w,1075.2,1075.2,4595.37,4595.37,3924.8,670.57,0.0,0.0,0.0,Mar-2019,158.05,Apr-2019,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,171805.0,0.0,1.0,0.0,0.0,51.0,9287.0,38.0,1.0,2.0,4428.0,69.0,40500.0,0.0,5.0,4.0,3.0,21476.0,4272.0,50.9,0.0,0.0,84.0,125.0,8.0,8.0,2.0,23.0,,0.0,,0.0,1.0,4.0,3.0,4.0,9.0,6.0,8.0,4.0,8.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,193020.0,44804.0,8700.0,24520.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90068577,,7000.0,7000.0,7000.0, 36 months,9.49,224.2,B,B2,Chef,1 year,MORTGAGE,41600.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90068577,,debt_consolidation,Debt consolidation,922xx,CA,3.4,3.0,May-1996,660.0,664.0,0.0,4.0,,2.0,0.0,1849.0,74.0,22.0,w,1520.83,1520.83,6498.11,6498.11,5479.17,1018.94,0.0,0.0,0.0,Mar-2019,224.2,Apr-2019,Mar-2019,739.0,735.0,0.0,4.0,1.0,Individual,,,,0.0,0.0,126809.0,0.0,0.0,0.0,0.0,86.0,0.0,,1.0,1.0,1849.0,74.0,2500.0,0.0,1.0,1.0,1.0,63405.0,651.0,74.0,0.0,0.0,133.0,244.0,8.0,8.0,2.0,8.0,22.0,8.0,22.0,5.0,1.0,1.0,1.0,9.0,3.0,1.0,15.0,1.0,2.0,0.0,0.0,2.0,1.0,71.4,0.0,0.0,0.0,160500.0,1849.0,2500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631581,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,Clinical Program Consultant,< 1 year,MORTGAGE,95000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631581,,credit_card,Credit card refinancing,805xx,CO,25.33,0.0,Apr-2000,665.0,669.0,1.0,57.0,45.0,16.0,1.0,32322.0,70.0,27.0,w,0.0,0.0,41875.8403986216,41875.84,35000.0,6875.84,0.0,0.0,0.0,Apr-2018,27907.75,,Apr-2018,704.0,700.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,330827.0,2.0,3.0,0.0,1.0,21.0,56646.0,71.0,2.0,2.0,10677.0,71.0,46200.0,0.0,1.0,1.0,4.0,23631.0,11793.0,72.6,0.0,0.0,138.0,197.0,6.0,6.0,5.0,6.0,57.0,6.0,57.0,3.0,8.0,9.0,8.0,12.0,6.0,12.0,16.0,9.0,16.0,0.0,0.0,0.0,2.0,81.5,75.0,0.0,0.0,377355.0,88968.0,43000.0,83555.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90440153,,10000.0,10000.0,10000.0, 36 months,7.59,311.48,A,A3,PRESIDENT,10+ years,MORTGAGE,100000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90440153,,debt_consolidation,Debt consolidation,606xx,IL,12.16,1.0,Jul-1977,695.0,699.0,0.0,3.0,,14.0,0.0,10823.0,23.1,35.0,w,2126.06,2126.06,9028.7,9028.7,7873.94,1154.76,0.0,0.0,0.0,Mar-2019,311.48,Apr-2019,Mar-2019,774.0,770.0,0.0,67.0,1.0,Individual,,,,0.0,0.0,187792.0,0.0,1.0,0.0,1.0,21.0,17670.0,57.0,3.0,5.0,5465.0,36.0,46900.0,4.0,0.0,4.0,6.0,14446.0,33077.0,24.7,0.0,0.0,120.0,197.0,8.0,8.0,6.0,8.0,3.0,8.0,3.0,1.0,6.0,6.0,9.0,14.0,8.0,11.0,20.0,6.0,14.0,0.0,0.0,0.0,3.0,91.4,0.0,0.0,0.0,255923.0,28493.0,43900.0,30897.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121024,,20000.0,20000.0,20000.0, 60 months,25.29,590.44,E,E5,Supervisor,8 years,MORTGAGE,74000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121024,,debt_consolidation,Debt consolidation,688xx,NE,27.28,2.0,Mar-1997,670.0,674.0,2.0,6.0,82.0,15.0,1.0,6981.0,32.6,22.0,w,14934.61,14934.61,15468.88,15468.88,5065.39,10403.49,0.0,0.0,0.0,Mar-2019,1182.0,Apr-2019,Mar-2019,579.0,575.0,0.0,60.0,1.0,Individual,,,,0.0,1440.0,146740.0,2.0,4.0,1.0,3.0,9.0,53920.0,75.0,3.0,7.0,3366.0,66.0,21400.0,5.0,0.0,8.0,10.0,9783.0,4615.0,58.8,0.0,0.0,176.0,234.0,6.0,6.0,1.0,12.0,,0.0,60.0,1.0,3.0,5.0,4.0,6.0,8.0,10.0,13.0,5.0,15.0,0.0,0.0,0.0,4.0,86.4,50.0,0.0,1.0,181758.0,60901.0,11200.0,71507.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90299040,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Operations Supervisor,10+ years,MORTGAGE,105000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90299040,,debt_consolidation,Debt consolidation,814xx,CO,14.38,0.0,Apr-2005,705.0,709.0,0.0,,,11.0,0.0,33071.0,37.5,18.0,w,0.0,0.0,44976.8845016614,44976.88,40000.0,4976.88,0.0,0.0,0.0,Jan-2018,32966.35,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,283249.0,0.0,1.0,0.0,0.0,30.0,12017.0,60.0,1.0,1.0,7878.0,42.0,88200.0,1.0,1.0,4.0,1.0,25750.0,51645.0,34.0,0.0,0.0,112.0,108.0,9.0,9.0,5.0,9.0,,4.0,,0.0,5.0,6.0,8.0,8.0,3.0,9.0,10.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,373590.0,45088.0,78300.0,20000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571587,,7000.0,7000.0,7000.0, 36 months,8.99,222.57,B,B1,Administrative Asst.,10+ years,MORTGAGE,33254.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571587,,debt_consolidation,Debt consolidation,890xx,NV,28.87,0.0,Jul-2005,750.0,754.0,1.0,24.0,,14.0,0.0,6595.0,25.0,22.0,w,0.0,0.0,7386.9045071938,7386.9,7000.0,386.9,0.0,0.0,0.0,Jun-2017,5512.91,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,56245.0,2.0,1.0,0.0,0.0,26.0,22101.0,71.0,3.0,3.0,4948.0,50.0,26400.0,0.0,0.0,2.0,3.0,4327.0,8497.0,43.4,0.0,0.0,118.0,134.0,6.0,6.0,2.0,6.0,,6.0,,0.0,6.0,7.0,6.0,7.0,2.0,12.0,18.0,7.0,14.0,0.0,0.0,0.0,3.0,90.9,16.7,0.0,0.0,109645.0,28696.0,15000.0,31228.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695776,,3800.0,3800.0,3800.0, 36 months,7.99,119.07,A,A4,Maintenance Supervisor,3 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695776,,debt_consolidation,Debt consolidation,601xx,IL,5.01,1.0,May-2000,730.0,734.0,0.0,18.0,,7.0,0.0,1335.0,9.6,8.0,w,0.0,0.0,4109.8183397382,4109.82,3800.0,309.82,0.0,0.0,0.0,Feb-2019,24.67,,Feb-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,222.0,135531.0,0.0,1.0,0.0,1.0,13.0,4393.0,63.0,1.0,2.0,1181.0,27.0,13900.0,0.0,0.0,0.0,3.0,19362.0,12565.0,9.6,0.0,0.0,196.0,178.0,10.0,10.0,1.0,10.0,,,,1.0,3.0,3.0,5.0,5.0,2.0,5.0,5.0,3.0,7.0,0.0,0.0,0.0,1.0,87.5,0.0,0.0,0.0,259158.0,5728.0,13900.0,6975.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89799042,,20800.0,20800.0,20800.0, 60 months,26.99,635.02,F,F3,ICU nurse,2 years,RENT,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89799042,,car,Car financing,722xx,AR,25.28,0.0,Jan-1988,695.0,699.0,1.0,,,8.0,0.0,9952.0,59.6,9.0,w,13244.95,13244.95,18853.2,18853.2,7555.05,11298.15,0.0,0.0,0.0,Mar-2019,635.02,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,52046.0,1.0,3.0,3.0,3.0,3.0,42094.0,88.0,0.0,0.0,9590.0,81.0,16700.0,2.0,0.0,10.0,3.0,6506.0,5548.0,64.2,0.0,0.0,12.0,344.0,27.0,3.0,0.0,27.0,,3.0,,0.0,2.0,2.0,3.0,4.0,3.0,5.0,6.0,2.0,8.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,64295.0,52046.0,15500.0,47595.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89867567,,35000.0,35000.0,35000.0, 60 months,28.88,1108.41,G,G2,Owner,5 years,MORTGAGE,100000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89867567,,small_business,Business,015xx,MA,10.81,1.0,Dec-2007,670.0,674.0,2.0,22.0,,11.0,0.0,76716.0,42.2,19.0,w,24021.0,24021.0,32087.73,32087.73,10979.0,21108.73,0.0,0.0,0.0,Mar-2019,1108.41,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,447590.0,1.0,1.0,1.0,2.0,7.0,12393.0,83.0,2.0,3.0,11235.0,54.0,161100.0,2.0,2.0,13.0,6.0,49732.0,18620.0,44.1,0.0,0.0,27.0,105.0,2.0,2.0,2.0,29.0,,1.0,,0.0,3.0,5.0,5.0,5.0,3.0,9.0,14.0,5.0,11.0,0.0,0.0,0.0,3.0,94.7,25.0,0.0,0.0,536212.0,89109.0,33300.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404913,,25825.0,25825.0,25825.0, 60 months,26.99,788.43,F,F3,,,MORTGAGE,56168.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404913,,debt_consolidation,Debt consolidation,190xx,PA,30.77,0.0,Sep-1990,705.0,709.0,1.0,,,14.0,0.0,32225.0,82.2,23.0,w,0.0,0.0,33637.7465825732,33637.75,25825.0,7812.75,0.0,0.0,0.0,Dec-2017,23426.88,,Dec-2017,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,178825.0,0.0,1.0,0.0,1.0,23.0,4105.0,21.0,2.0,3.0,14324.0,59.0,39200.0,4.0,0.0,2.0,4.0,14902.0,5397.0,84.8,0.0,0.0,48.0,312.0,8.0,8.0,2.0,8.0,,1.0,,0.0,6.0,8.0,9.0,13.0,3.0,11.0,17.0,8.0,14.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,221233.0,38168.0,35400.0,20015.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90210460,,6400.0,6400.0,6400.0, 36 months,16.99,228.15,D,D1,driver,1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90210460,,debt_consolidation,Debt consolidation,895xx,NV,6.76,1.0,Aug-2005,660.0,664.0,0.0,2.0,76.0,8.0,1.0,3722.0,14.7,12.0,f,0.0,0.0,8010.806873917801,8010.81,6400.0,1610.81,0.0,0.0,0.0,Nov-2018,2541.25,,Nov-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,215.0,3722.0,1.0,0.0,0.0,0.0,36.0,0.0,,3.0,3.0,1992.0,15.0,25300.0,0.0,0.0,0.0,3.0,465.0,12355.0,19.8,0.0,0.0,133.0,53.0,3.0,3.0,0.0,3.0,,,2.0,0.0,4.0,7.0,5.0,5.0,2.0,8.0,10.0,7.0,8.0,0.0,0.0,0.0,3.0,91.7,0.0,1.0,0.0,25300.0,3722.0,15400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501519,,8000.0,8000.0,8000.0, 36 months,5.32,240.92,A,A1,,,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501519,,credit_card,Credit card refinancing,863xx,AZ,21.12,0.0,Dec-1979,730.0,734.0,0.0,50.0,,15.0,0.0,12318.0,25.5,32.0,w,0.0,0.0,8642.3464140494,8642.35,8000.0,642.35,0.0,0.0,0.0,Feb-2019,2133.39,,Sep-2017,739.0,735.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,13513.0,0.0,1.0,0.0,0.0,36.0,1195.0,6.0,3.0,5.0,6282.0,20.0,48400.0,0.0,1.0,1.0,5.0,965.0,18366.0,34.6,0.0,0.0,134.0,441.0,7.0,7.0,3.0,7.0,,9.0,,1.0,4.0,7.0,7.0,11.0,5.0,14.0,24.0,7.0,15.0,0.0,0.0,0.0,3.0,96.9,14.3,0.0,0.0,67225.0,13513.0,28100.0,18825.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581281,,21600.0,21600.0,21600.0, 36 months,12.79,725.61,C,C1,Sales,10+ years,OWN,110000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581281,,credit_card,Credit card refinancing,622xx,IL,14.66,0.0,Jul-1992,695.0,699.0,0.0,40.0,82.0,11.0,1.0,32569.0,81.8,24.0,f,0.0,0.0,25070.813304811098,25070.81,21600.0,3470.81,0.0,0.0,0.0,May-2018,12025.18,,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,267369.0,1.0,2.0,1.0,1.0,8.0,37281.0,69.0,1.0,3.0,5968.0,74.0,39800.0,2.0,4.0,5.0,7.0,24306.0,2444.0,89.5,0.0,0.0,125.0,290.0,5.0,5.0,3.0,15.0,62.0,0.0,40.0,0.0,5.0,7.0,5.0,8.0,6.0,8.0,15.0,7.0,11.0,0.0,0.0,0.0,2.0,82.6,80.0,0.0,0.0,306236.0,69850.0,23200.0,54436.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571568,,4400.0,4400.0,4400.0, 36 months,17.99,159.05,D,D2,Executive Assistant,10+ years,RENT,74000.0,Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571568,,credit_card,Credit card refinancing,200xx,DC,17.15,0.0,Jan-2003,675.0,679.0,4.0,40.0,73.0,21.0,1.0,4653.0,17.2,61.0,w,1200.51,1200.51,4481.98,4481.98,3199.49,1282.49,0.0,0.0,0.0,Mar-2019,159.05,Apr-2019,Mar-2019,674.0,670.0,0.0,40.0,1.0,Individual,,,,0.0,0.0,28176.0,7.0,2.0,2.0,4.0,4.0,23523.0,92.0,12.0,21.0,1374.0,54.0,27000.0,0.0,12.0,12.0,25.0,1342.0,6948.0,17.3,0.0,0.0,131.0,164.0,1.0,1.0,0.0,3.0,,0.0,,2.0,2.0,7.0,6.0,22.0,10.0,18.0,49.0,7.0,21.0,0.0,0.0,0.0,14.0,100.0,0.0,1.0,0.0,52647.0,28176.0,8400.0,25647.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521257,,3350.0,3350.0,3350.0, 36 months,18.99,122.79,D,D3,Chef,5 years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521257,,other,Other,911xx,CA,18.99,1.0,May-1995,665.0,669.0,1.0,9.0,64.0,8.0,1.0,1144.0,11.4,25.0,f,0.0,0.0,3645.408976491,3645.41,3350.0,295.41,0.0,0.0,0.0,Apr-2017,2666.62,,Jan-2019,629.0,625.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,46691.0,1.0,6.0,0.0,0.0,42.0,45547.0,72.0,1.0,1.0,1144.0,64.0,10000.0,0.0,0.0,1.0,1.0,6670.0,8856.0,11.4,0.0,0.0,167.0,256.0,2.0,2.0,0.0,2.0,70.0,2.0,70.0,0.0,1.0,1.0,1.0,7.0,12.0,2.0,13.0,1.0,7.0,0.0,0.0,0.0,1.0,87.0,0.0,1.0,0.0,73050.0,46691.0,10000.0,63050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407317,,8000.0,8000.0,8000.0, 36 months,8.99,254.37,B,B1,DISPATCHER,10+ years,MORTGAGE,52000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407317,,credit_card,Credit card refinancing,405xx,KY,17.66,0.0,Aug-2004,670.0,674.0,2.0,48.0,89.0,9.0,1.0,9270.0,79.2,17.0,w,1728.04,1728.04,7372.73,7372.73,6271.96,1100.77,0.0,0.0,0.0,Mar-2019,254.37,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,168418.0,1.0,1.0,0.0,1.0,24.0,22350.0,69.0,0.0,1.0,4924.0,72.0,11700.0,0.0,3.0,4.0,3.0,24060.0,191.0,97.4,0.0,0.0,145.0,86.0,16.0,5.0,3.0,57.0,,1.0,48.0,0.0,2.0,5.0,2.0,4.0,5.0,6.0,8.0,5.0,9.0,0.0,0.0,0.0,1.0,93.8,100.0,1.0,0.0,181370.0,31620.0,7300.0,32206.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671156,,15000.0,15000.0,15000.0, 60 months,24.99,440.19,E,E4,Registered Nurse,< 1 year,RENT,56000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671156,,debt_consolidation,Debt consolidation,441xx,OH,20.51,0.0,Feb-2005,660.0,664.0,1.0,32.0,109.0,16.0,1.0,11197.0,48.7,36.0,w,0.0,0.0,6266.79,6266.79,2051.76,4215.03,0.0,0.0,0.0,Dec-2017,440.19,,Jul-2018,544.0,540.0,0.0,32.0,1.0,Individual,,,,0.0,141.0,88996.0,4.0,5.0,2.0,5.0,4.0,77799.0,85.0,3.0,7.0,2947.0,70.0,23000.0,1.0,0.0,3.0,12.0,5562.0,106.0,98.1,0.0,0.0,121.0,139.0,5.0,4.0,0.0,8.0,43.0,6.0,42.0,2.0,3.0,10.0,3.0,4.0,21.0,11.0,15.0,10.0,16.0,0.0,0.0,0.0,5.0,88.9,100.0,1.0,0.0,104240.0,88996.0,5500.0,81240.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280947,,4500.0,4500.0,4500.0, 36 months,13.49,152.69,C,C2,Admin Assistant,10+ years,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280947,,other,Other,481xx,MI,18.82,0.0,Oct-1986,675.0,679.0,2.0,,75.0,8.0,1.0,1252.0,12.8,23.0,w,1022.22,1022.22,4438.13,4438.13,3477.78,960.35,0.0,0.0,0.0,Mar-2019,152.69,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,17656.0,3.0,2.0,0.0,1.0,14.0,16404.0,44.0,3.0,4.0,733.0,38.0,9800.0,3.0,4.0,2.0,5.0,2522.0,67.0,91.6,0.0,0.0,129.0,359.0,1.0,1.0,0.0,56.0,,0.0,,0.0,1.0,4.0,1.0,7.0,8.0,6.0,14.0,4.0,8.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,46900.0,17656.0,800.0,37100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671547,,12000.0,12000.0,12000.0, 36 months,5.32,361.38,A,A1,Legal Assistant,6 years,OWN,52000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671547,,debt_consolidation,Debt consolidation,751xx,TX,9.23,0.0,Mar-1992,770.0,774.0,0.0,,,12.0,0.0,19803.0,34.8,16.0,w,0.0,0.0,12811.930591434399,12811.93,12000.0,811.93,0.0,0.0,0.0,Jun-2018,5949.26,,Jul-2018,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,183264.0,0.0,0.0,0.0,0.0,69.0,0.0,,1.0,1.0,7980.0,35.0,59000.0,0.0,0.0,0.0,1.0,16660.0,36497.0,37.8,0.0,0.0,102.0,294.0,8.0,8.0,1.0,8.0,,,,0.0,6.0,6.0,8.0,8.0,2.0,11.0,13.0,6.0,12.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,281400.0,19803.0,56300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230752,,30000.0,30000.0,30000.0, 60 months,19.99,794.65,D,D4,Registered Nurse,10+ years,RENT,88898.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230752,,medical,Medical expenses,113xx,NY,8.3,2.0,Nov-2005,670.0,674.0,1.0,12.0,72.0,9.0,1.0,2371.0,19.1,20.0,w,0.0,0.0,39826.509439624,39826.51,30000.0,9826.51,0.0,0.0,0.0,Aug-2018,23158.92,,Mar-2019,674.0,670.0,0.0,12.0,1.0,Individual,,,,0.0,0.0,32653.0,0.0,1.0,0.0,1.0,13.0,30282.0,88.0,0.0,4.0,1009.0,70.0,12400.0,7.0,2.0,1.0,5.0,4665.0,7371.0,16.2,0.0,0.0,119.0,130.0,16.0,13.0,0.0,18.0,,4.0,12.0,1.0,2.0,4.0,2.0,6.0,3.0,8.0,17.0,4.0,9.0,0.0,0.0,1.0,0.0,85.0,0.0,1.0,0.0,46781.0,32653.0,8800.0,34381.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451504,,18000.0,18000.0,18000.0, 36 months,13.99,615.11,C,C3,Contractor Support,2 years,MORTGAGE,30000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451504,,debt_consolidation,Debt consolidation,840xx,UT,56.16,2.0,Feb-2000,675.0,679.0,0.0,8.0,,16.0,0.0,23983.0,71.4,48.0,w,0.0,0.0,10838.77,10838.77,7560.35,3216.9,61.52,0.0,0.0,Jul-2018,121.71,,Mar-2019,524.0,520.0,0.0,42.0,1.0,Joint App,125000.0,25.1,Not Verified,0.0,0.0,164274.0,0.0,3.0,0.0,1.0,16.0,49291.0,89.0,1.0,6.0,3586.0,83.0,33600.0,1.0,11.0,1.0,7.0,12636.0,5084.0,59.3,0.0,0.0,161.0,199.0,12.0,12.0,2.0,12.0,42.0,12.0,13.0,1.0,3.0,8.0,3.0,7.0,21.0,11.0,22.0,8.0,16.0,0.0,0.0,0.0,1.0,79.2,66.7,0.0,0.0,183809.0,74274.0,12500.0,55209.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,INCOME_CURTAILMENT,COMPLETED,3.0,121.71,Apr-2018,Jul-2018,May-2018,3.0,20.0,Late (16-30 days),365.13,10673.25,165.32,Cash,N,,,,,, +90197470,,8500.0,8500.0,8500.0, 36 months,13.99,290.47,C,C3,Bartender,9 years,RENT,25000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197470,,debt_consolidation,Debt consolidation,782xx,TX,29.33,0.0,Jun-2004,680.0,684.0,2.0,,,24.0,0.0,10036.0,28.4,46.0,w,0.0,0.0,4041.88,4041.88,2232.22,956.34,0.0,853.32,153.5976,Sep-2017,290.47,,Mar-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,10036.0,3.0,0.0,0.0,0.0,39.0,0.0,,3.0,9.0,1433.0,28.0,35300.0,1.0,0.0,2.0,9.0,436.0,12246.0,33.4,0.0,0.0,147.0,125.0,1.0,1.0,0.0,1.0,,1.0,,0.0,10.0,17.0,11.0,12.0,18.0,24.0,28.0,17.0,24.0,0.0,0.0,0.0,3.0,100.0,9.1,0.0,0.0,35300.0,10036.0,18400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521478,,18000.0,18000.0,18000.0, 60 months,22.39,501.14,E,E1,Customer Service,< 1 year,OWN,49000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521478,,debt_consolidation,Debt consolidation,481xx,MI,16.9,0.0,Sep-2007,670.0,674.0,1.0,,94.0,9.0,1.0,20499.0,65.9,18.0,w,0.0,0.0,24480.3735154525,24480.37,18000.0,6480.37,0.0,0.0,0.0,Jul-2018,14513.55,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,21036.0,1.0,1.0,0.0,0.0,33.0,537.0,31.0,1.0,4.0,7023.0,64.0,31100.0,0.0,0.0,1.0,4.0,2337.0,4505.0,63.7,0.0,0.0,108.0,98.0,3.0,3.0,0.0,42.0,,0.0,,0.0,2.0,8.0,2.0,4.0,5.0,8.0,13.0,8.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,1.0,32820.0,21036.0,12400.0,1720.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90066831,,25000.0,25000.0,25000.0, 36 months,16.99,891.2,D,D1,loader,5 years,MORTGAGE,78000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90066831,,debt_consolidation,Debt consolidation,641xx,MO,31.48,0.0,Jan-2005,685.0,689.0,0.0,62.0,,17.0,0.0,13119.0,46.9,33.0,w,5899.33,5899.33,25821.2,25821.2,19100.67,6720.53,0.0,0.0,0.0,Mar-2019,891.2,Apr-2019,Mar-2019,649.0,645.0,0.0,62.0,1.0,Joint App,100000.0,31.25,Not Verified,0.0,147.0,177284.0,1.0,4.0,1.0,4.0,7.0,65721.0,70.0,1.0,2.0,7174.0,62.0,28000.0,2.0,2.0,2.0,7.0,10428.0,5132.0,70.5,0.0,0.0,104.0,140.0,4.0,4.0,3.0,4.0,,7.0,,1.0,4.0,8.0,6.0,7.0,13.0,12.0,16.0,8.0,17.0,0.0,0.0,0.0,2.0,97.0,50.0,0.0,0.0,220568.0,78840.0,17400.0,91093.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89919003,,8000.0,8000.0,8000.0, 36 months,5.32,240.92,A,A1,ENERGY CONSULTANT,6 years,MORTGAGE,83000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89919003,,home_improvement,Home improvement,600xx,IL,18.63,0.0,Apr-1968,750.0,754.0,1.0,34.0,,10.0,0.0,3414.0,14.3,25.0,w,0.0,0.0,8477.146477915501,8477.15,8000.0,477.15,0.0,0.0,0.0,Mar-2018,4624.79,,Mar-2019,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,234471.0,1.0,2.0,0.0,2.0,13.0,53442.0,79.0,1.0,2.0,1807.0,44.0,23800.0,1.0,0.0,1.0,4.0,26052.0,13453.0,14.3,0.0,0.0,169.0,581.0,5.0,5.0,4.0,5.0,,1.0,,0.0,2.0,4.0,3.0,6.0,8.0,7.0,13.0,4.0,10.0,0.0,0.0,0.0,1.0,96.0,0.0,0.0,0.0,279609.0,56856.0,15700.0,63757.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695781,,15000.0,15000.0,15000.0, 36 months,19.99,557.38,D,D4,accounting,2 years,RENT,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695781,,debt_consolidation,Debt consolidation,857xx,AZ,34.66,0.0,Dec-2002,675.0,679.0,0.0,49.0,,7.0,0.0,7961.0,36.9,16.0,w,0.0,0.0,16751.2079822157,16751.21,15000.0,1751.21,0.0,0.0,0.0,Oct-2017,2586.72,,Nov-2017,649.0,645.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,47264.0,1.0,2.0,1.0,2.0,3.0,39303.0,97.0,1.0,4.0,5003.0,62.0,21600.0,0.0,2.0,2.0,6.0,6752.0,997.0,83.4,0.0,0.0,98.0,165.0,11.0,3.0,0.0,17.0,49.0,7.0,49.0,3.0,1.0,4.0,1.0,5.0,5.0,5.0,11.0,4.0,7.0,0.0,0.0,0.0,2.0,75.0,100.0,0.0,0.0,78487.0,47264.0,6000.0,56887.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067222,,8000.0,8000.0,8000.0, 36 months,18.99,293.21,D,D3,general mngr,10+ years,RENT,70000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067222,,debt_consolidation,Debt consolidation,038xx,NH,23.66,1.0,Feb-2005,660.0,664.0,3.0,4.0,104.0,10.0,3.0,5304.0,53.0,21.0,w,1665.69,1665.69,8728.78,8728.78,6334.31,2394.47,0.0,0.0,0.0,Mar-2019,293.21,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,52120.0,1.0,2.0,1.0,3.0,5.0,46816.0,77.0,2.0,2.0,1521.0,60.0,10000.0,0.0,4.0,6.0,5.0,5791.0,1577.0,66.4,0.0,0.0,139.0,80.0,12.0,5.0,0.0,12.0,,1.0,,0.0,4.0,5.0,4.0,5.0,12.0,8.0,9.0,5.0,10.0,0.0,0.0,0.0,3.0,90.5,25.0,3.0,0.0,59643.0,52120.0,4700.0,49643.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90161024,,10000.0,10000.0,10000.0, 36 months,5.32,301.15,A,A1,Supervisor,10+ years,MORTGAGE,78000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90161024,,credit_card,Credit card refinancing,531xx,WI,12.14,0.0,Jan-1997,805.0,809.0,0.0,,,16.0,0.0,9628.0,9.5,27.0,w,0.0,0.0,10231.3972723913,10231.4,10000.0,231.4,0.0,0.0,0.0,Oct-2017,217.11,,Mar-2019,844.0,840.0,0.0,,1.0,Individual,,,,0.0,0.0,183559.0,1.0,1.0,0.0,0.0,27.0,24633.0,,1.0,2.0,9302.0,10.0,101800.0,0.0,1.0,0.0,2.0,14120.0,76872.0,11.1,0.0,0.0,126.0,236.0,1.0,1.0,2.0,1.0,,,,0.0,3.0,3.0,6.0,9.0,6.0,14.0,19.0,3.0,16.0,0.0,0.0,0.0,1.0,100.0,16.7,0.0,0.0,310357.0,34261.0,86500.0,36057.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90073206,,11200.0,11200.0,11200.0, 60 months,13.49,257.66,C,C2,framer,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90073206,,debt_consolidation,Debt consolidation,917xx,CA,15.69,0.0,Dec-1991,750.0,754.0,0.0,,,12.0,0.0,8931.0,18.6,19.0,f,0.0,0.0,13439.3729183245,13439.37,11200.0,2239.37,0.0,0.0,0.0,Jun-2018,8552.22,,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,16876.0,0.0,2.0,1.0,2.0,11.0,7945.0,80.0,0.0,1.0,1861.0,29.0,47900.0,0.0,0.0,0.0,3.0,1406.0,33658.0,17.7,0.0,0.0,297.0,121.0,20.0,11.0,0.0,20.0,,,,0.0,7.0,8.0,8.0,11.0,3.0,10.0,16.0,8.0,12.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,57900.0,16876.0,40900.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88763812,,12000.0,12000.0,12000.0, 60 months,13.99,279.16,C,C3,Administrative Assistant,10+ years,MORTGAGE,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88763812,,debt_consolidation,Debt consolidation,489xx,MI,29.76,1.0,Jun-1995,670.0,674.0,0.0,7.0,,6.0,0.0,6937.0,86.7,9.0,w,7227.58,7227.58,8086.31,8086.31,4772.42,3313.89,0.0,0.0,0.0,Mar-2019,279.16,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,80768.0,0.0,2.0,0.0,0.0,54.0,7833.0,24.0,1.0,1.0,4193.0,36.0,8000.0,0.0,2.0,2.0,1.0,13461.0,481.0,92.0,0.0,0.0,255.0,84.0,12.0,12.0,2.0,12.0,,12.0,7.0,0.0,2.0,3.0,2.0,2.0,4.0,3.0,3.0,3.0,6.0,0.0,0.0,0.0,1.0,88.9,100.0,0.0,0.0,112836.0,14770.0,6000.0,33159.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89859181,,35000.0,35000.0,35000.0, 36 months,7.59,1090.17,A,A3,Advisor,10+ years,MORTGAGE,350000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89859181,,credit_card,Credit card refinancing,752xx,TX,7.83,1.0,Oct-1994,700.0,704.0,0.0,12.0,,9.0,0.0,11031.0,71.6,22.0,w,7441.53,7441.53,31600.17,31600.17,27558.47,4041.7,0.0,0.0,0.0,Mar-2019,1090.17,Apr-2019,Mar-2019,714.0,710.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,53993.0,0.0,2.0,0.0,1.0,24.0,42962.0,52.0,1.0,1.0,6692.0,55.0,15400.0,0.0,0.0,3.0,2.0,6749.0,2669.0,80.5,0.0,0.0,132.0,263.0,7.0,7.0,5.0,102.0,12.0,1.0,12.0,1.0,2.0,2.0,4.0,5.0,10.0,6.0,7.0,2.0,9.0,0.0,0.0,0.0,1.0,89.5,66.7,0.0,0.0,98770.0,53993.0,13700.0,83370.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90177103,,24000.0,24000.0,24000.0, 60 months,8.99,498.09,B,B1,Commercial Truck Driver,< 1 year,MORTGAGE,55000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90177103,,debt_consolidation,Debt consolidation,728xx,AR,24.11,0.0,Mar-2004,705.0,709.0,1.0,,,18.0,0.0,24968.0,39.5,33.0,w,13734.27,13734.27,14498.54,14498.54,10265.73,4232.81,0.0,0.0,0.0,Mar-2019,498.09,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,147481.0,2.0,1.0,0.0,0.0,30.0,11758.0,60.0,3.0,3.0,6820.0,44.0,63200.0,0.0,2.0,1.0,5.0,8193.0,24010.0,32.0,0.0,0.0,150.0,106.0,5.0,5.0,5.0,5.0,,5.0,,0.0,6.0,8.0,10.0,13.0,7.0,16.0,21.0,8.0,18.0,0.0,0.0,0.0,3.0,100.0,10.0,0.0,0.0,197939.0,36726.0,35300.0,19747.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461223,,10000.0,10000.0,10000.0, 60 months,21.49,273.3,D,D5,Crew Supervisor,10+ years,MORTGAGE,42000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461223,,debt_consolidation,Debt consolidation,401xx,KY,27.6,0.0,Jan-1987,660.0,664.0,0.0,41.0,73.0,9.0,1.0,45845.0,88.3,22.0,w,6459.46,6459.46,7913.76,7913.76,3540.54,4373.22,0.0,0.0,0.0,Mar-2019,273.3,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,55315.0,0.0,2.0,1.0,5.0,9.0,9470.0,65.0,0.0,1.0,2892.0,73.0,52600.0,1.0,4.0,2.0,6.0,6914.0,293.0,95.8,0.0,0.0,105.0,356.0,14.0,9.0,1.0,14.0,41.0,9.0,41.0,0.0,3.0,4.0,3.0,5.0,11.0,6.0,10.0,4.0,8.0,0.0,0.0,0.0,1.0,90.5,100.0,1.0,0.0,67244.0,55315.0,7000.0,14644.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551350,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,Front Desk Auxillary,4 years,RENT,42500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551350,,debt_consolidation,Debt consolidation,604xx,IL,23.71,0.0,Feb-1996,695.0,699.0,0.0,26.0,,10.0,0.0,6753.0,37.7,31.0,w,2172.47,2172.47,9283.14,9283.14,7827.53,1455.61,0.0,0.0,0.0,Mar-2019,320.29,Apr-2019,Mar-2019,749.0,745.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,23570.0,1.0,2.0,2.0,2.0,11.0,16817.0,74.0,1.0,3.0,4300.0,58.0,19400.0,1.0,0.0,2.0,5.0,2357.0,11392.0,33.6,0.0,0.0,147.0,247.0,2.0,2.0,5.0,2.0,27.0,11.0,26.0,2.0,4.0,5.0,7.0,12.0,8.0,8.0,18.0,5.0,10.0,0.0,0.0,0.0,3.0,75.9,0.0,0.0,0.0,41998.0,23570.0,16400.0,22598.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90099666,,8000.0,8000.0,8000.0, 36 months,10.99,261.88,B,B4,Finance,,MORTGAGE,100314.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90099666,,debt_consolidation,Debt consolidation,489xx,MI,23.38,0.0,Jun-1994,665.0,669.0,1.0,,71.0,12.0,2.0,20068.0,86.5,24.0,w,0.0,0.0,5102.34,5102.34,3452.46,1030.39,0.0,619.49,111.5082,Mar-2018,261.88,,Mar-2019,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,162429.0,1.0,4.0,2.0,3.0,4.0,42965.0,74.0,0.0,0.0,6884.0,78.0,23200.0,3.0,8.0,3.0,3.0,14766.0,237.0,97.5,0.0,0.0,136.0,267.0,36.0,4.0,2.0,36.0,,4.0,,0.0,3.0,6.0,3.0,3.0,15.0,7.0,7.0,6.0,12.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,2.0,190557.0,63033.0,9300.0,57906.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631337,,18000.0,18000.0,18000.0, 60 months,26.49,544.17,F,F2,regional manager,6 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631337,,debt_consolidation,Debt consolidation,923xx,CA,15.1,0.0,Sep-2003,665.0,669.0,1.0,,,36.0,0.0,18651.0,35.9,45.0,w,0.0,0.0,5722.07,5722.07,1552.71,2285.82,0.0,1883.54,339.0372,Apr-2017,544.17,,Oct-2017,539.0,535.0,0.0,,1.0,Individual,,,,0.0,1062.0,44080.0,5.0,5.0,0.0,0.0,30.0,25429.0,68.0,6.0,15.0,1467.0,49.0,52000.0,11.0,0.0,17.0,15.0,1259.0,3669.0,49.0,0.0,0.0,156.0,126.0,0.0,0.0,0.0,0.0,,2.0,,0.0,4.0,16.0,7.0,7.0,7.0,31.0,38.0,17.0,36.0,0.0,0.0,0.0,6.0,100.0,57.1,0.0,0.0,89681.0,44080.0,7200.0,37681.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121445,,29650.0,29650.0,29650.0, 36 months,17.99,1071.77,D,D2,,,MORTGAGE,84000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121445,,debt_consolidation,Debt consolidation,104xx,NY,25.53,0.0,Apr-1999,675.0,679.0,2.0,68.0,,9.0,0.0,21841.0,88.1,44.0,w,0.0,0.0,10846.47,10846.47,4593.35,2746.05,0.0,3507.07,631.2726,Apr-2017,1071.77,,Oct-2017,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,443560.0,1.0,2.0,0.0,2.0,16.0,28415.0,67.0,2.0,8.0,10333.0,80.0,24800.0,2.0,2.0,4.0,11.0,49284.0,2959.0,88.1,0.0,0.0,137.0,209.0,3.0,3.0,2.0,3.0,,2.0,,0.0,5.0,5.0,5.0,19.0,12.0,5.0,28.0,5.0,9.0,0.0,0.0,0.0,2.0,97.7,80.0,0.0,0.0,481848.0,53941.0,24800.0,54303.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88725689,,25000.0,25000.0,25000.0, 60 months,10.99,543.44,B,B4,Supervisor Firefighter,10+ years,OWN,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88725689,,debt_consolidation,Debt consolidation,923xx,CA,20.41,1.0,Aug-1993,710.0,714.0,1.0,22.0,,12.0,0.0,25580.0,43.8,32.0,w,14608.31,14608.31,15744.5,15744.5,10391.69,5352.81,0.0,0.0,0.0,Mar-2019,543.44,Apr-2019,Mar-2019,764.0,760.0,0.0,22.0,1.0,Individual,,,,0.0,0.0,298508.0,0.0,3.0,0.0,2.0,13.0,56126.0,80.0,0.0,2.0,8552.0,56.0,58400.0,0.0,7.0,1.0,4.0,27137.0,21907.0,46.4,0.0,0.0,145.0,277.0,17.0,13.0,4.0,17.0,,5.0,,1.0,4.0,7.0,4.0,7.0,11.0,8.0,17.0,7.0,12.0,0.0,0.0,1.0,0.0,96.9,25.0,0.0,0.0,365751.0,81706.0,40900.0,68151.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90205531,,33600.0,33600.0,33600.0, 36 months,5.32,1011.86,A,A1,Vice Provost,5 years,MORTGAGE,308000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90205531,,home_improvement,Home improvement,941xx,CA,4.24,0.0,Mar-1999,795.0,799.0,0.0,,,4.0,0.0,9088.0,19.0,8.0,w,6958.94,6958.94,29334.01,29334.01,26641.06,2692.95,0.0,0.0,0.0,Mar-2019,1011.86,Apr-2019,Mar-2019,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,878107.0,0.0,1.0,0.0,0.0,36.0,944.0,3.0,0.0,0.0,4602.0,13.0,47900.0,0.0,0.0,0.0,0.0,219527.0,38812.0,19.0,0.0,0.0,125.0,210.0,86.0,36.0,2.0,189.0,,,,0.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,2.0,4.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,1012900.0,10032.0,47900.0,30000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90311988,,6000.0,6000.0,6000.0, 36 months,19.99,222.96,D,D4,Lvn,3 years,MORTGAGE,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90311988,,debt_consolidation,Debt consolidation,754xx,TX,17.01,1.0,Feb-2006,665.0,669.0,2.0,6.0,,15.0,0.0,3859.0,72.8,17.0,f,0.0,0.0,6949.752064021,6949.75,6000.0,949.75,0.0,0.0,0.0,Aug-2017,4919.79,,Jul-2018,649.0,645.0,0.0,6.0,1.0,Individual,,,,0.0,1363.0,108366.0,3.0,8.0,0.0,1.0,19.0,31669.0,97.0,4.0,5.0,1704.0,94.0,5300.0,0.0,0.0,4.0,7.0,7224.0,775.0,78.5,0.0,0.0,95.0,17.0,4.0,4.0,1.0,4.0,,1.0,,1.0,4.0,5.0,4.0,4.0,10.0,5.0,5.0,5.0,15.0,0.0,0.0,1.0,5.0,93.8,25.0,0.0,0.0,111765.0,37505.0,3600.0,32811.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551272,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,CLinician II,6 years,RENT,42000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551272,,moving,Moving and relocation,341xx,FL,29.66,0.0,Aug-2002,680.0,684.0,0.0,,,15.0,0.0,17453.0,46.7,28.0,w,1415.76,1415.76,6224.62,6224.62,4584.24,1640.38,0.0,0.0,0.0,Mar-2019,213.89,Apr-2019,Mar-2019,589.0,585.0,0.0,,1.0,Individual,,,,0.0,0.0,143864.0,0.0,2.0,1.0,1.0,9.0,126411.0,92.0,2.0,9.0,4013.0,67.0,37400.0,1.0,0.0,1.0,10.0,9591.0,9437.0,59.1,0.0,0.0,164.0,169.0,11.0,9.0,1.0,11.0,,7.0,,0.0,10.0,13.0,10.0,12.0,12.0,13.0,15.0,13.0,15.0,0.0,0.0,0.0,3.0,100.0,40.0,0.0,0.0,153002.0,143864.0,23100.0,115602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405710,,29900.0,29900.0,29900.0, 36 months,18.99,1095.87,D,D3,Smog technician,1 year,MORTGAGE,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405710,,debt_consolidation,Debt consolidation,923xx,CA,15.01,0.0,Mar-2005,710.0,714.0,3.0,69.0,68.0,6.0,1.0,2589.0,55.1,14.0,f,0.0,0.0,37504.4622750895,37504.46,29900.0,7604.46,0.0,0.0,0.0,Jun-2018,16714.47,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,148718.0,0.0,3.0,1.0,3.0,10.0,18054.0,72.0,0.0,0.0,2009.0,69.0,4700.0,2.0,1.0,3.0,3.0,24786.0,291.0,87.3,0.0,0.0,138.0,135.0,58.0,10.0,4.0,61.0,,0.0,,0.0,1.0,2.0,1.0,1.0,6.0,2.0,4.0,2.0,6.0,0.0,0.0,0.0,1.0,92.9,100.0,1.0,0.0,162310.0,20643.0,2300.0,25056.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694374,,6075.0,6075.0,6075.0, 36 months,18.99,222.66,D,D3,House Officer,10+ years,RENT,60000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694374,,debt_consolidation,Debt consolidation,112xx,NY,12.44,0.0,Feb-1999,660.0,664.0,0.0,,47.0,6.0,3.0,2863.0,71.6,10.0,f,2089.22,2089.22,5827.75,5827.75,3985.78,1796.97,45.0,0.0,0.0,Jan-2019,237.66,Apr-2019,Mar-2019,539.0,535.0,0.0,,1.0,Individual,,,,0.0,0.0,34540.0,3.0,1.0,1.0,1.0,3.0,31677.0,98.0,3.0,4.0,970.0,95.0,4000.0,0.0,0.0,5.0,5.0,6908.0,637.0,81.8,0.0,0.0,3.0,169.0,5.0,3.0,0.0,5.0,,3.0,,0.0,3.0,3.0,3.0,7.0,1.0,4.0,8.0,3.0,6.0,0.0,0.0,0.0,4.0,100.0,66.7,0.0,3.0,36340.0,34540.0,3500.0,32340.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90401984,,10800.0,10800.0,10800.0, 36 months,18.99,395.84,D,D3,,,RENT,30000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90401984,,debt_consolidation,Debt consolidation,952xx,CA,14.2,0.0,Jul-2007,705.0,709.0,1.0,,,5.0,0.0,1903.0,21.4,10.0,f,0.0,0.0,435.72,435.72,224.93,210.79,0.0,0.0,0.0,Nov-2016,447.11,,Dec-2018,624.0,620.0,0.0,,1.0,Joint App,50000.0,12.67,Not Verified,0.0,0.0,8001.0,2.0,1.0,1.0,1.0,1.0,6098.0,102.0,1.0,2.0,1060.0,54.0,8900.0,1.0,0.0,2.0,3.0,1600.0,6363.0,19.5,0.0,0.0,1.0,110.0,3.0,1.0,0.0,3.0,,2.0,,0.0,3.0,4.0,3.0,7.0,1.0,4.0,9.0,4.0,5.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,14900.0,8001.0,7900.0,6000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398081,,20000.0,20000.0,20000.0, 60 months,17.99,507.76,D,D2,Correctional Deputy,5 years,MORTGAGE,65000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398081,,debt_consolidation,Debt consolidation,959xx,CA,22.53,4.0,Jul-2008,660.0,664.0,0.0,13.0,,8.0,0.0,3416.0,69.7,12.0,f,0.0,0.0,22353.2235700273,22353.22,20000.0,2353.22,0.0,0.0,0.0,Jun-2017,18809.1,,Jul-2018,684.0,680.0,0.0,20.0,1.0,Individual,,,,0.0,0.0,32427.0,1.0,4.0,1.0,1.0,5.0,29011.0,56.0,0.0,0.0,1671.0,57.0,4900.0,2.0,2.0,3.0,1.0,4053.0,1484.0,69.7,0.0,0.0,98.0,74.0,36.0,5.0,0.0,36.0,19.0,12.0,19.0,1.0,4.0,4.0,4.0,6.0,6.0,4.0,6.0,4.0,8.0,0.0,0.0,1.0,1.0,72.7,50.0,0.0,0.0,56576.0,32427.0,4900.0,51676.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481462,,10000.0,10000.0,10000.0, 36 months,14.49,344.17,C,C4,Clinical coordinator ,10+ years,RENT,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481462,,debt_consolidation,Debt consolidation,907xx,CA,27.04,0.0,Apr-2003,660.0,664.0,0.0,80.0,69.0,12.0,1.0,10856.0,71.4,20.0,f,2296.55,2296.55,9972.88,9972.88,7703.45,2269.43,0.0,0.0,0.0,Mar-2019,344.17,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,34346.0,0.0,2.0,1.0,2.0,11.0,23490.0,75.0,0.0,1.0,3428.0,74.0,15200.0,2.0,0.0,1.0,3.0,3122.0,233.0,97.1,0.0,0.0,161.0,151.0,24.0,11.0,0.0,24.0,,7.0,,0.0,4.0,8.0,4.0,8.0,4.0,10.0,16.0,8.0,12.0,0.0,0.0,0.0,1.0,93.8,100.0,1.0,0.0,46687.0,34346.0,8100.0,31487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541284,,27225.0,27225.0,27200.0, 36 months,18.99,997.83,D,D3,Registered Nurse,10+ years,MORTGAGE,67500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541284,,debt_consolidation,Debt consolidation,613xx,IL,31.31,0.0,Jun-2000,690.0,694.0,0.0,36.0,,30.0,0.0,32850.0,56.0,49.0,f,0.0,0.0,30531.4748666563,30503.44,27225.0,3306.47,0.0,0.0,0.0,Jun-2017,23474.86,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,294290.0,2.0,12.0,3.0,7.0,4.0,77342.0,76.0,0.0,5.0,5739.0,69.0,58700.0,0.0,1.0,2.0,13.0,9810.0,11332.0,69.9,0.0,0.0,133.0,195.0,13.0,3.0,5.0,16.0,,4.0,36.0,0.0,7.0,11.0,10.0,10.0,18.0,17.0,26.0,11.0,30.0,0.0,0.0,0.0,4.0,95.9,50.0,0.0,0.0,345103.0,110192.0,37600.0,101404.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591455,,36000.0,36000.0,36000.0, 60 months,10.49,773.61,B,B3,Director Road Operations,10+ years,MORTGAGE,185000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591455,,credit_card,Credit card refinancing,956xx,CA,13.34,0.0,Feb-2001,715.0,719.0,0.0,,,23.0,0.0,51620.0,50.7,42.0,w,0.0,0.0,38798.8303324052,38798.83,36000.0,2798.83,0.0,0.0,0.0,Jul-2017,32662.4,,Jul-2017,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,429421.0,0.0,7.0,0.0,0.0,25.0,49837.0,73.0,1.0,1.0,14053.0,58.0,101900.0,0.0,3.0,2.0,2.0,18670.0,36786.0,55.2,0.0,0.0,151.0,187.0,10.0,10.0,1.0,10.0,,10.0,,0.0,6.0,9.0,8.0,10.0,21.0,14.0,19.0,9.0,23.0,0.0,0.0,0.0,1.0,100.0,37.5,0.0,0.0,576516.0,104160.0,82200.0,75913.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671322,,35000.0,35000.0,35000.0, 36 months,8.99,1112.83,B,B1,Assistant Controller,5 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671322,,debt_consolidation,Debt consolidation,604xx,IL,12.14,2.0,Sep-1995,685.0,689.0,0.0,0.0,,14.0,0.0,35087.0,31.0,44.0,w,7561.44,7561.44,32254.59,32254.59,27438.56,4816.03,0.0,0.0,0.0,Mar-2019,1112.83,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,1.0,0.0,190166.0,0.0,1.0,0.0,2.0,19.0,15626.0,72.0,2.0,2.0,19142.0,38.0,113300.0,0.0,2.0,2.0,4.0,13583.0,61852.0,34.9,0.0,71.0,252.0,220.0,7.0,7.0,3.0,7.0,25.0,7.0,0.0,0.0,6.0,8.0,8.0,19.0,10.0,12.0,31.0,8.0,13.0,0.0,1.0,0.0,2.0,90.9,12.5,0.0,0.0,294504.0,50713.0,95000.0,21598.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392970,,10000.0,10000.0,9975.0, 36 months,17.99,361.48,D,D2,Stockroom ,10+ years,OWN,20000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392970,,debt_consolidation,Debt consolidation,705xx,LA,24.25,1.0,Jul-1991,660.0,664.0,0.0,4.0,,3.0,0.0,11996.0,56.3,5.0,f,2384.94,2378.97,10491.0,10464.77,7615.06,2857.87,18.07,0.0,0.0,Mar-2019,379.55,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,11996.0,0.0,0.0,0.0,0.0,78.0,0.0,,0.0,0.0,11326.0,56.0,21300.0,0.0,0.0,0.0,0.0,3999.0,8578.0,57.1,0.0,0.0,138.0,302.0,120.0,78.0,0.0,120.0,,,4.0,0.0,2.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,0.0,0.0,0.0,0.0,80.0,50.0,0.0,0.0,21300.0,11996.0,20000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087974,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,Personal lines associate ,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087974,,debt_consolidation,Debt consolidation,178xx,PA,14.76,1.0,Jul-2010,690.0,694.0,2.0,21.0,,21.0,0.0,2533.0,23.2,27.0,f,1127.01,1127.01,4894.22,4894.22,3872.99,1021.23,0.0,0.0,0.0,Mar-2019,167.97,Apr-2019,Mar-2019,569.0,565.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,57534.0,1.0,16.0,1.0,2.0,5.0,55001.0,101.0,1.0,3.0,2437.0,88.0,10900.0,2.0,1.0,4.0,5.0,2877.0,7463.0,24.6,0.0,0.0,68.0,74.0,9.0,5.0,0.0,9.0,,0.0,21.0,1.0,1.0,2.0,3.0,4.0,19.0,5.0,8.0,2.0,21.0,0.0,0.0,1.0,2.0,96.3,0.0,0.0,0.0,65332.0,57534.0,9900.0,54432.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90318045,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Truck driver,1 year,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90318045,,debt_consolidation,Debt consolidation,737xx,OK,11.83,0.0,Jul-2011,680.0,684.0,0.0,60.0,,9.0,0.0,4958.0,29.7,14.0,f,1827.21,1827.21,7959.39,7959.39,6172.79,1786.6,0.0,0.0,0.0,Mar-2019,273.39,Apr-2019,Mar-2019,769.0,765.0,0.0,60.0,1.0,Individual,,,,0.0,0.0,11017.0,0.0,2.0,0.0,2.0,13.0,6059.0,66.0,0.0,4.0,2473.0,43.0,16700.0,3.0,0.0,8.0,6.0,1224.0,10216.0,31.9,0.0,0.0,31.0,55.0,15.0,13.0,0.0,18.0,,0.0,,1.0,5.0,6.0,6.0,7.0,4.0,7.0,8.0,6.0,9.0,0.0,0.0,0.0,0.0,92.9,0.0,0.0,0.0,25844.0,11017.0,15000.0,9144.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90290771,,5100.0,5100.0,5100.0, 36 months,19.99,189.51,D,D4,Laundry/Houseperson/Housekeeping,< 1 year,RENT,15000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90290771,,debt_consolidation,Debt consolidation,691xx,NE,18.88,0.0,Oct-2006,665.0,669.0,0.0,24.0,,16.0,0.0,4673.0,99.4,29.0,f,1242.34,1242.34,5490.13,5490.13,3857.66,1632.47,0.0,0.0,0.0,Mar-2019,189.51,Apr-2019,Mar-2019,674.0,670.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,45191.0,0.0,13.0,0.0,0.0,49.0,40518.0,108.0,0.0,0.0,3081.0,107.0,4700.0,0.0,1.0,0.0,0.0,2824.0,0.0,102.2,0.0,0.0,108.0,119.0,38.0,38.0,0.0,38.0,24.0,,24.0,0.0,2.0,3.0,2.0,10.0,18.0,3.0,11.0,3.0,16.0,0.0,0.0,0.0,0.0,89.3,100.0,0.0,0.0,42086.0,45191.0,4000.0,37386.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694192,,6025.0,6025.0,6025.0, 36 months,16.99,214.78,D,D1,,,RENT,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694192,,debt_consolidation,Debt consolidation,021xx,MA,27.64,0.0,Sep-1982,665.0,669.0,0.0,30.0,,5.0,0.0,10126.0,85.8,8.0,w,1227.06,1227.06,6406.43,6406.43,4797.94,1608.49,0.0,0.0,0.0,Mar-2019,214.78,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,19086.0,0.0,2.0,1.0,2.0,8.0,8960.0,81.0,0.0,0.0,7690.0,84.0,11800.0,1.0,0.0,1.0,2.0,3817.0,322.0,96.6,0.0,0.0,170.0,408.0,39.0,8.0,0.0,39.0,,8.0,30.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,5.0,3.0,5.0,0.0,0.0,0.0,1.0,62.5,100.0,0.0,0.0,22825.0,19086.0,9400.0,11025.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90379972,,40000.0,40000.0,40000.0, 60 months,24.99,1173.82,E,E4,Machinist ,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90379972,,home_improvement,Home improvement,141xx,NY,29.67,0.0,Sep-2007,740.0,744.0,0.0,70.0,,15.0,0.0,2005.0,10.7,21.0,f,0.0,0.0,59571.6645501679,59571.66,40000.0,19571.66,0.0,0.0,0.0,Feb-2019,158.81,,Feb-2019,704.0,700.0,0.0,70.0,1.0,Joint App,90000.0,32.47,Not Verified,0.0,0.0,154047.0,1.0,4.0,1.0,4.0,11.0,52842.0,64.0,0.0,5.0,300.0,54.0,18700.0,3.0,0.0,1.0,10.0,10270.0,8506.0,4.4,0.0,0.0,86.0,88.0,18.0,3.0,3.0,18.0,,5.0,,1.0,3.0,4.0,6.0,6.0,9.0,9.0,9.0,4.0,15.0,0.0,0.0,0.0,2.0,95.2,0.0,0.0,0.0,199990.0,54847.0,8900.0,82090.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121658,,7750.0,7750.0,7750.0, 36 months,15.59,270.91,C,C5,Surgical Tech,1 year,MORTGAGE,72000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121658,,debt_consolidation,Debt consolidation,916xx,CA,11.61,0.0,Mar-2000,680.0,684.0,5.0,57.0,,11.0,0.0,6131.0,61.3,24.0,f,0.0,0.0,8631.201252987901,8631.2,7750.0,881.2,0.0,0.0,0.0,Aug-2017,5399.72,,Aug-2018,534.0,530.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,480118.0,5.0,2.0,1.0,1.0,2.0,79724.0,100.0,4.0,7.0,2803.0,90.0,10000.0,3.0,0.0,9.0,8.0,43647.0,2148.0,71.4,0.0,0.0,131.0,198.0,2.0,2.0,1.0,4.0,68.0,2.0,68.0,5.0,4.0,7.0,4.0,12.0,7.0,8.0,16.0,7.0,11.0,0.0,0.0,0.0,5.0,75.0,50.0,0.0,0.0,514650.0,85855.0,7500.0,75050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541228,,20625.0,20625.0,20625.0, 60 months,18.99,534.92,D,D3,Staff Assistant ,10+ years,RENT,43000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541228,,debt_consolidation,Debt consolidation,277xx,NC,18.84,0.0,Mar-1998,715.0,719.0,0.0,,,17.0,0.0,20036.0,38.3,22.0,f,13025.75,13025.75,15490.92,15490.92,7599.25,7891.67,0.0,0.0,0.0,Mar-2019,534.92,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,20036.0,2.0,0.0,0.0,0.0,,0.0,,2.0,7.0,7209.0,38.0,52300.0,0.0,0.0,0.0,7.0,1252.0,14999.0,52.5,0.0,0.0,,222.0,2.0,2.0,0.0,2.0,,15.0,,0.0,6.0,13.0,7.0,11.0,0.0,17.0,22.0,13.0,17.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,52300.0,20036.0,31600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90077018,,7000.0,7000.0,7000.0, 36 months,13.49,237.52,C,C2,Service Manager ,10+ years,MORTGAGE,70000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90077018,,debt_consolidation,Debt consolidation,620xx,IL,30.1,1.0,Mar-2002,670.0,674.0,1.0,12.0,,10.0,0.0,18361.0,90.4,32.0,f,0.0,0.0,8067.5483196088,8067.55,7000.0,1067.55,0.0,0.0,0.0,Feb-2018,4510.0,,Aug-2018,684.0,680.0,0.0,65.0,1.0,Individual,,,,0.0,19757.0,69986.0,0.0,2.0,1.0,1.0,11.0,16051.0,49.0,0.0,1.0,14513.0,65.0,20300.0,1.0,0.0,1.0,2.0,6999.0,1647.0,91.4,0.0,0.0,139.0,174.0,13.0,11.0,3.0,13.0,12.0,4.0,12.0,3.0,4.0,5.0,6.0,17.0,6.0,7.0,23.0,5.0,10.0,0.0,0.0,0.0,1.0,81.3,66.7,0.0,0.0,92103.0,34412.0,19100.0,32803.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693505,,35000.0,35000.0,35000.0, 60 months,8.99,726.38,B,B1,Director,10+ years,MORTGAGE,225000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693505,,home_improvement,Home improvement,405xx,KY,25.31,0.0,Dec-1996,725.0,729.0,0.0,73.0,,8.0,0.0,63361.0,60.3,20.0,w,20031.58,20031.58,21047.54,21047.54,14968.42,6079.12,0.0,0.0,0.0,Mar-2019,726.38,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,629827.0,0.0,4.0,2.0,2.0,8.0,208870.0,69.0,0.0,0.0,39344.0,64.0,80800.0,0.0,2.0,2.0,3.0,78728.0,4639.0,89.0,0.0,0.0,155.0,237.0,32.0,8.0,3.0,148.0,,8.0,,0.0,2.0,2.0,2.0,3.0,11.0,3.0,6.0,2.0,8.0,0.0,0.0,0.0,2.0,95.0,100.0,0.0,0.0,719651.0,272231.0,68000.0,273851.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88995307,,18000.0,18000.0,18000.0, 60 months,13.49,414.09,C,C2,Project Manager,2 years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88995307,,debt_consolidation,Debt consolidation,023xx,MA,10.29,0.0,Aug-2004,665.0,669.0,0.0,,,6.0,0.0,7756.0,81.6,10.0,f,10787.79,10787.79,11995.12,11995.12,7212.21,4782.91,0.0,0.0,0.0,Mar-2019,414.09,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,285239.0,0.0,2.0,0.0,0.0,33.0,24007.0,55.0,0.0,1.0,4257.0,60.0,9500.0,0.0,1.0,0.0,1.0,47540.0,1744.0,81.6,0.0,0.0,132.0,34.0,22.0,22.0,2.0,22.0,,,,1.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,6.0,0.0,0.0,0.0,0.0,90.0,66.7,0.0,0.0,308236.0,31763.0,9500.0,43736.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90264848,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Senior Maintenance Director,9 years,MORTGAGE,52000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90264848,,debt_consolidation,Debt consolidation,559xx,MN,14.33,1.0,May-2004,665.0,669.0,1.0,6.0,,8.0,0.0,8067.0,60.2,11.0,w,0.0,0.0,11838.9786138276,11838.98,10000.0,1838.98,0.0,0.0,0.0,Oct-2018,4119.7,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,142477.0,0.0,1.0,0.0,1.0,23.0,14918.0,80.0,1.0,3.0,2437.0,72.0,13400.0,1.0,0.0,2.0,4.0,17810.0,4242.0,64.4,0.0,0.0,82.0,65.0,10.0,10.0,2.0,19.0,,0.0,,0.0,4.0,5.0,4.0,5.0,3.0,5.0,6.0,5.0,8.0,0.0,0.0,0.0,1.0,81.8,25.0,0.0,0.0,180149.0,22985.0,11900.0,18749.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90332001,,12225.0,12225.0,12225.0, 36 months,19.99,454.27,D,D4,,,MORTGAGE,36000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90332001,,debt_consolidation,Debt consolidation,710xx,LA,8.2,0.0,Jun-2010,695.0,699.0,0.0,,,3.0,0.0,8265.0,97.2,6.0,f,2977.84,2977.84,13160.25,13160.25,9247.16,3913.09,0.0,0.0,0.0,Mar-2019,454.27,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,25.0,181955.0,0.0,0.0,0.0,0.0,38.0,0.0,,0.0,0.0,7929.0,97.0,8500.0,0.0,1.0,0.0,1.0,60652.0,235.0,97.2,0.0,0.0,75.0,66.0,31.0,14.0,1.0,31.0,,16.0,,0.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,185500.0,8265.0,8500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681407,,10000.0,10000.0,10000.0, 36 months,15.59,349.55,C,C5,Executive Secretary,10+ years,RENT,58000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681407,,credit_card,Credit card refinancing,956xx,CA,18.83,0.0,Jan-2007,660.0,664.0,0.0,,91.0,5.0,1.0,7267.0,76.5,7.0,f,2324.47,2324.47,10128.29,10128.29,7675.53,2452.76,0.0,0.0,0.0,Mar-2019,349.55,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,35103.0,1.0,2.0,2.0,3.0,6.0,27836.0,87.0,0.0,2.0,3935.0,84.0,9500.0,1.0,0.0,0.0,5.0,7021.0,2233.0,76.5,0.0,0.0,17.0,116.0,13.0,6.0,0.0,13.0,,17.0,,0.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,1.0,41625.0,35103.0,9500.0,32125.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90194989,,9600.0,9600.0,9600.0, 36 months,14.49,330.4,C,C4,Bus Attendance,8 years,RENT,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90194989,,home_improvement,Home improvement,207xx,MD,9.16,1.0,Apr-1994,660.0,664.0,1.0,23.0,,9.0,0.0,3704.0,51.4,22.0,f,0.0,0.0,11571.3599672276,11571.36,9600.0,1971.36,0.0,0.0,0.0,Sep-2018,4310.29,,Sep-2018,634.0,630.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,241123.0,2.0,2.0,0.0,0.0,71.0,34966.0,165.0,2.0,4.0,1262.0,136.0,7200.0,0.0,0.0,2.0,4.0,26791.0,1035.0,63.0,0.0,0.0,131.0,269.0,0.0,0.0,3.0,1.0,74.0,1.0,74.0,5.0,2.0,4.0,3.0,7.0,6.0,6.0,13.0,4.0,9.0,0.0,0.0,1.0,2.0,63.6,66.7,0.0,0.0,265049.0,38670.0,2800.0,21228.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90119439,,19775.0,19775.0,19750.0, 36 months,14.49,680.58,C,C4,Agent,2 years,MORTGAGE,43000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90119439,,debt_consolidation,Debt consolidation,279xx,NC,7.59,0.0,Aug-1972,660.0,664.0,3.0,61.0,61.0,7.0,1.0,4410.0,56.5,20.0,f,0.0,0.0,22628.1551787765,22599.55,19775.0,2853.16,0.0,0.0,0.0,Nov-2017,14397.53,,Jan-2019,589.0,585.0,0.0,61.0,1.0,Individual,,,,0.0,0.0,267128.0,2.0,1.0,2.0,3.0,8.0,2718.0,89.0,1.0,4.0,3898.0,66.0,7800.0,2.0,0.0,7.0,8.0,44521.0,2688.0,59.3,0.0,0.0,116.0,529.0,6.0,1.0,2.0,20.0,61.0,0.0,61.0,3.0,2.0,3.0,2.0,7.0,6.0,5.0,12.0,3.0,7.0,0.0,0.0,0.0,4.0,89.5,0.0,1.0,0.0,270867.0,7128.0,6600.0,3067.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90409958,,3200.0,3200.0,3200.0, 36 months,8.59,101.15,A,A5,,,MORTGAGE,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90409958,,medical,Medical expenses,206xx,MD,32.0,0.0,Apr-2002,735.0,739.0,0.0,,,8.0,0.0,8070.0,39.2,15.0,w,688.19,688.19,2931.82,2931.82,2511.81,420.01,0.0,0.0,0.0,Mar-2019,101.15,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,75609.0,0.0,2.0,0.0,1.0,23.0,17029.0,52.0,0.0,0.0,3540.0,47.0,20600.0,0.0,0.0,0.0,1.0,9451.0,5773.0,54.2,0.0,0.0,173.0,156.0,82.0,23.0,1.0,118.0,,,,0.0,3.0,5.0,3.0,3.0,6.0,5.0,8.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,107579.0,25099.0,12600.0,32579.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90651473,,14700.0,14700.0,14700.0, 36 months,13.49,498.78,C,C2,PCT,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90651473,,home_improvement,Home improvement,631xx,MO,10.05,2.0,Apr-2004,680.0,684.0,0.0,13.0,,4.0,0.0,2143.0,29.8,9.0,f,3339.51,3339.51,14453.6,14453.6,11360.49,3093.11,0.0,0.0,0.0,Mar-2019,498.78,Apr-2019,Mar-2019,729.0,725.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,3781.0,1.0,1.0,0.0,0.0,30.0,1638.0,26.0,1.0,1.0,1070.0,28.0,7200.0,0.0,0.0,0.0,1.0,945.0,4554.0,26.5,0.0,0.0,149.0,130.0,5.0,5.0,0.0,5.0,,,24.0,0.0,2.0,3.0,2.0,3.0,4.0,3.0,5.0,3.0,4.0,0.0,0.0,0.0,1.0,66.7,0.0,0.0,0.0,13425.0,3781.0,6200.0,6225.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551462,,24000.0,24000.0,24000.0, 60 months,19.99,635.72,D,D4,"Associate Director, Network Contracting",5 years,OWN,104873.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551462,,debt_consolidation,Debt consolidation,234xx,VA,15.46,0.0,Jun-1997,670.0,674.0,1.0,66.0,,16.0,0.0,23067.0,52.1,27.0,f,15295.29,15295.29,18409.23,18409.23,8704.71,9704.52,0.0,0.0,0.0,Mar-2019,635.72,Apr-2019,Mar-2019,719.0,715.0,0.0,66.0,1.0,Individual,,,,0.0,0.0,351102.0,3.0,3.0,0.0,1.0,21.0,30749.0,63.0,1.0,2.0,9951.0,55.0,44300.0,2.0,0.0,4.0,5.0,21944.0,4998.0,79.5,0.0,0.0,155.0,231.0,1.0,1.0,3.0,26.0,,1.0,,1.0,4.0,9.0,4.0,5.0,6.0,12.0,18.0,9.0,16.0,0.0,0.0,0.0,3.0,96.3,50.0,0.0,0.0,400463.0,53816.0,24400.0,58877.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229096,,23000.0,23000.0,23000.0, 36 months,16.99,819.9,D,D1,Respiratory therapist,1 year,MORTGAGE,105000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229096,,debt_consolidation,Debt consolidation,925xx,CA,9.61,0.0,Jul-2004,675.0,679.0,1.0,30.0,,6.0,0.0,18862.0,79.9,19.0,f,0.0,0.0,24574.141427015402,24574.14,23000.0,1574.14,0.0,0.0,0.0,Mar-2017,21316.25,,Mar-2017,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,388633.0,2.0,1.0,1.0,1.0,4.0,18708.0,98.0,0.0,2.0,2649.0,88.0,23600.0,3.0,4.0,3.0,5.0,64772.0,251.0,91.3,0.0,0.0,146.0,123.0,15.0,1.0,5.0,105.0,30.0,3.0,30.0,0.0,1.0,4.0,1.0,2.0,5.0,4.0,9.0,4.0,6.0,0.0,0.0,0.0,2.0,94.7,100.0,0.0,0.0,395806.0,37570.0,2900.0,19072.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621506,,20800.0,20800.0,20800.0, 36 months,21.49,788.89,D,D5,Contract Specialist,1 year,RENT,94000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621506,,debt_consolidation,Debt consolidation,206xx,MD,13.52,0.0,Feb-1989,680.0,684.0,3.0,25.0,25.0,25.0,1.0,22361.0,39.9,51.0,w,0.0,0.0,24472.8024761648,24472.8,20800.0,3672.8,0.0,0.0,0.0,Sep-2017,16397.62,,Feb-2019,614.0,610.0,0.0,65.0,1.0,Individual,,,,0.0,938.0,87467.0,4.0,1.0,0.0,0.0,34.0,65106.0,,6.0,6.0,5204.0,40.0,56000.0,2.0,3.0,7.0,6.0,4604.0,18601.0,34.7,0.0,0.0,191.0,331.0,1.0,1.0,0.0,1.0,72.0,0.0,25.0,2.0,6.0,10.0,7.0,14.0,9.0,22.0,42.0,10.0,25.0,0.0,0.0,0.0,6.0,87.0,28.6,0.0,0.0,110176.0,87467.0,28500.0,54176.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694318,,16500.0,16500.0,16500.0, 36 months,12.79,554.29,C,C1,Assistant Director,9 years,MORTGAGE,58650.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694318,,debt_consolidation,Debt consolidation,890xx,NV,30.33,0.0,Mar-1996,665.0,669.0,0.0,,101.0,13.0,1.0,15454.0,83.1,19.0,f,3719.47,3719.47,16062.69,16062.69,12780.53,3282.16,0.0,0.0,0.0,Mar-2019,554.29,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,32082.0,1.0,2.0,0.0,0.0,32.0,16628.0,40.0,1.0,2.0,6466.0,53.0,18600.0,0.0,0.0,0.0,2.0,2917.0,106.0,99.0,0.0,0.0,42.0,246.0,1.0,1.0,0.0,48.0,,,,0.0,3.0,9.0,3.0,5.0,2.0,11.0,17.0,9.0,13.0,0.0,0.0,0.0,1.0,100.0,100.0,1.0,0.0,60415.0,32082.0,10600.0,41815.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693354,,6400.0,6400.0,6400.0, 36 months,23.99,251.06,E,E2,maintenance Engineer,2 years,OWN,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693354,,small_business,Business,761xx,TX,18.96,0.0,Jun-2004,715.0,719.0,0.0,32.0,,11.0,0.0,3036.0,37.5,37.0,w,0.0,0.0,8632.08249072,8632.08,6400.0,2232.08,0.0,0.0,0.0,Sep-2018,3117.29,,Mar-2019,659.0,655.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,152952.0,0.0,3.0,1.0,2.0,8.0,26874.0,89.0,0.0,3.0,1888.0,78.0,8100.0,10.0,3.0,15.0,5.0,13905.0,4464.0,40.5,1.0,0.0,135.0,141.0,17.0,8.0,3.0,17.0,43.0,0.0,43.0,7.0,3.0,3.0,4.0,11.0,11.0,6.0,21.0,3.0,11.0,0.0,0.0,0.0,1.0,81.8,0.0,0.0,0.0,201716.0,29910.0,7500.0,30116.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631502,,2400.0,2400.0,2400.0, 36 months,5.32,72.28,A,A1,,,MORTGAGE,73000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631502,,home_improvement,Home improvement,726xx,AR,17.69,0.0,Mar-2003,740.0,744.0,1.0,69.0,,15.0,0.0,2443.0,4.5,42.0,w,0.0,0.0,2400.71,2400.71,2400.0,0.71,0.0,0.0,0.0,Oct-2016,2401.42,,Mar-2019,624.0,620.0,0.0,69.0,1.0,Individual,,,,0.0,0.0,218777.0,2.0,2.0,1.0,1.0,1.0,9643.0,22.0,0.0,3.0,2336.0,12.0,53900.0,0.0,4.0,3.0,5.0,16829.0,50457.0,4.6,0.0,0.0,162.0,134.0,15.0,1.0,5.0,15.0,69.0,1.0,69.0,0.0,2.0,2.0,9.0,21.0,11.0,12.0,26.0,2.0,15.0,0.0,0.0,0.0,2.0,95.2,0.0,0.0,0.0,306794.0,12086.0,52900.0,44944.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441274,,12000.0,12000.0,12000.0, 36 months,13.99,410.08,C,C3,Administrative assistant ,1 year,RENT,47000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441274,,credit_card,Credit card refinancing,581xx,MT,31.79,0.0,Feb-2002,700.0,704.0,0.0,42.0,80.0,13.0,1.0,18348.0,63.3,28.0,f,0.0,0.0,13982.1149682455,13982.11,12000.0,1982.11,0.0,0.0,0.0,Mar-2018,7430.16,,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,43223.0,0.0,2.0,0.0,3.0,15.0,24875.0,79.0,0.0,2.0,14547.0,71.0,29000.0,1.0,2.0,2.0,5.0,3929.0,7109.0,70.3,0.0,0.0,166.0,175.0,21.0,15.0,1.0,35.0,42.0,10.0,42.0,0.0,4.0,6.0,5.0,5.0,7.0,11.0,20.0,6.0,13.0,0.0,0.0,0.0,0.0,96.4,20.0,0.0,0.0,60653.0,43223.0,23900.0,31653.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591214,,9975.0,9975.0,9975.0, 36 months,18.99,365.6,D,D3,Equipment operator,10+ years,RENT,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591214,,debt_consolidation,Debt consolidation,940xx,CA,15.8,0.0,Nov-2005,665.0,669.0,0.0,25.0,91.0,10.0,1.0,4517.0,46.6,16.0,w,0.0,0.0,11656.6713148249,11656.67,9975.0,1681.67,0.0,0.0,0.0,Oct-2017,7645.59,,Oct-2017,679.0,675.0,0.0,25.0,1.0,Individual,,,,0.0,846.0,23394.0,2.0,2.0,2.0,2.0,11.0,18877.0,87.0,3.0,3.0,1554.0,74.0,9700.0,0.0,1.0,2.0,5.0,2599.0,1594.0,68.7,0.0,0.0,122.0,130.0,5.0,5.0,1.0,5.0,25.0,11.0,25.0,1.0,3.0,5.0,3.0,5.0,3.0,8.0,12.0,5.0,10.0,0.0,0.0,0.0,5.0,87.5,33.3,1.0,0.0,31478.0,23394.0,5100.0,21778.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661478,,32000.0,32000.0,32000.0, 60 months,21.49,874.56,D,D5,"RN, Med-Surg Manager",< 1 year,MORTGAGE,130000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661478,,debt_consolidation,Debt consolidation,959xx,CA,13.99,0.0,Aug-2005,670.0,674.0,0.0,,70.0,33.0,1.0,25034.0,35.1,42.0,w,0.0,0.0,20208.09,20208.09,6752.43,9826.01,0.0,3629.65,326.6685,May-2018,874.56,,Nov-2018,554.0,550.0,1.0,,1.0,Individual,,,,0.0,150.0,276189.0,4.0,5.0,1.0,5.0,3.0,74110.0,94.0,5.0,19.0,5509.0,60.0,71300.0,1.0,2.0,7.0,25.0,8631.0,26036.0,37.7,0.0,0.0,115.0,133.0,3.0,3.0,2.0,3.0,,5.0,,0.0,7.0,10.0,13.0,15.0,11.0,27.0,29.0,10.0,33.0,0.0,0.0,0.0,6.0,100.0,16.7,1.0,0.0,344285.0,99144.0,41800.0,91262.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591257,,25000.0,25000.0,25000.0, 60 months,13.49,575.12,C,C2,HR Benefit Leader,< 1 year,MORTGAGE,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591257,,debt_consolidation,Debt consolidation,630xx,MO,14.16,0.0,Oct-1992,665.0,669.0,0.0,,,8.0,0.0,24514.0,58.6,21.0,f,0.0,0.0,29068.101209747798,29068.1,25000.0,4068.1,0.0,0.0,0.0,Feb-2018,20460.04,,Feb-2018,764.0,760.0,0.0,,1.0,Individual,,,,0.0,146.0,40524.0,0.0,1.0,0.0,1.0,17.0,16010.0,76.0,0.0,1.0,10509.0,65.0,41800.0,1.0,2.0,0.0,2.0,5789.0,16053.0,47.7,0.0,0.0,150.0,287.0,24.0,17.0,1.0,62.0,,14.0,,0.0,2.0,4.0,4.0,7.0,8.0,7.0,12.0,4.0,8.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,62800.0,40524.0,30700.0,21000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561309,,27600.0,27600.0,27600.0, 60 months,24.99,809.94,E,E4,City Letter Carrier,10+ years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561309,,other,Other,481xx,MI,10.01,0.0,Sep-1993,660.0,664.0,0.0,,51.0,5.0,2.0,2077.0,5.7,13.0,w,18362.89,18362.89,23449.94,23449.94,9237.11,14212.83,0.0,0.0,0.0,Mar-2019,809.94,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,14030.0,0.0,1.0,1.0,1.0,10.0,11953.0,70.0,0.0,1.0,1183.0,26.0,36500.0,2.0,0.0,7.0,2.0,2806.0,26523.0,7.3,0.0,0.0,135.0,276.0,13.0,10.0,0.0,13.0,,2.0,,0.0,2.0,2.0,3.0,6.0,5.0,4.0,8.0,2.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,2.0,0.0,53660.0,14030.0,28600.0,17160.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90071483,,11000.0,11000.0,11000.0, 36 months,16.99,392.13,D,D1,Administrative Coordinator,2 years,OWN,22000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90071483,,debt_consolidation,Debt consolidation,705xx,LA,32.68,0.0,Sep-2005,680.0,684.0,0.0,,,5.0,0.0,7553.0,55.5,19.0,f,2595.63,2595.63,11361.39,11361.39,8404.37,2957.02,0.0,0.0,0.0,Mar-2019,392.13,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,600.0,10440.0,0.0,1.0,0.0,0.0,40.0,2887.0,17.0,1.0,3.0,4708.0,34.0,13600.0,0.0,0.0,0.0,3.0,2088.0,1114.0,85.9,0.0,0.0,132.0,116.0,10.0,10.0,0.0,18.0,,13.0,,0.0,2.0,4.0,2.0,4.0,10.0,4.0,9.0,4.0,5.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,30985.0,10440.0,7900.0,17385.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90217433,,35000.0,35000.0,35000.0, 36 months,14.49,1204.57,C,C4,Financial Advisor,8 years,MORTGAGE,306000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90217433,,credit_card,Credit card refinancing,917xx,CA,25.27,2.0,Jul-1990,705.0,709.0,1.0,19.0,,10.0,0.0,45893.0,66.6,22.0,f,8038.78,8038.78,34904.35,34904.35,26961.22,7943.13,0.0,0.0,0.0,Mar-2019,1204.57,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,141104.0,0.0,5.0,1.0,1.0,12.0,52013.0,38.0,0.0,0.0,20386.0,48.0,68900.0,1.0,0.0,1.0,1.0,14110.0,23007.0,66.6,0.0,0.0,176.0,314.0,117.0,12.0,2.0,199.0,19.0,4.0,19.0,0.0,4.0,4.0,4.0,5.0,9.0,4.0,10.0,4.0,10.0,0.0,0.0,0.0,1.0,86.4,50.0,0.0,0.0,254616.0,141104.0,68900.0,136549.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90204297,,14700.0,14700.0,14700.0, 60 months,18.99,381.25,D,D3,Head cashier,10+ years,MORTGAGE,35000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90204297,,debt_consolidation,Debt consolidation,855xx,AZ,17.76,0.0,Aug-1999,675.0,679.0,0.0,28.0,12.0,6.0,1.0,18078.0,66.0,11.0,f,0.0,0.0,9227.54,9227.54,4298.09,4929.45,0.0,0.0,0.0,Oct-2018,381.25,,Mar-2019,509.0,505.0,0.0,,1.0,Individual,,,,0.0,108.0,118592.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,10702.0,66.0,27400.0,0.0,0.0,0.0,0.0,19765.0,8522.0,67.6,0.0,0.0,,205.0,66.0,66.0,3.0,122.0,,,41.0,0.0,4.0,5.0,4.0,7.0,0.0,5.0,8.0,5.0,6.0,0.0,0.0,0.0,0.0,81.8,75.0,0.0,0.0,141191.0,18078.0,26300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90182232,,28000.0,28000.0,28000.0, 36 months,15.59,978.74,C,C5,Regional HR Manager,10+ years,MORTGAGE,150000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90182232,,debt_consolidation,Debt consolidation,549xx,WI,15.16,0.0,Sep-2001,665.0,669.0,1.0,,,18.0,0.0,52819.0,61.4,36.0,f,0.0,0.0,33091.8258398599,33091.83,28000.0,5091.83,0.0,0.0,0.0,Mar-2018,17456.24,,Mar-2019,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,85266.0,1.0,1.0,0.0,2.0,14.0,32447.0,,2.0,6.0,14065.0,61.0,86000.0,4.0,0.0,2.0,8.0,5016.0,11061.0,75.5,0.0,0.0,166.0,180.0,2.0,2.0,2.0,12.0,,2.0,,0.0,7.0,14.0,7.0,9.0,10.0,17.0,24.0,14.0,18.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,126803.0,85266.0,45200.0,40803.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403347,,32400.0,32400.0,32150.0, 60 months,26.49,979.5,F,F2,General Manager,3 years,RENT,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403347,,debt_consolidation,Debt consolidation,773xx,TX,23.8,0.0,Jun-1998,660.0,664.0,2.0,47.0,,14.0,0.0,21079.0,59.5,31.0,f,0.0,0.0,44345.6287862979,44003.46,32400.0,11945.63,0.0,0.0,0.0,Apr-2018,27694.13,,Mar-2019,709.0,705.0,0.0,,1.0,Joint App,141000.0,15.57,Not Verified,0.0,0.0,63925.0,2.0,3.0,0.0,2.0,16.0,42846.0,73.0,3.0,3.0,4079.0,68.0,35400.0,2.0,1.0,2.0,5.0,4566.0,728.0,94.8,0.0,0.0,154.0,219.0,2.0,2.0,1.0,2.0,,3.0,47.0,0.0,5.0,10.0,5.0,7.0,11.0,11.0,19.0,10.0,14.0,0.0,0.0,0.0,3.0,90.3,100.0,0.0,0.0,94277.0,63925.0,14100.0,58877.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90159459,,18000.0,18000.0,18000.0, 36 months,21.49,682.69,D,D5,Corrections Officer,4 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90159459,,debt_consolidation,Debt consolidation,809xx,CO,27.14,0.0,Sep-2009,680.0,684.0,1.0,70.0,,22.0,0.0,6317.0,29.0,42.0,f,0.0,0.0,5664.72,5664.72,1867.4,1524.56,0.0,2272.76,409.0968,Mar-2017,682.69,,Sep-2017,534.0,530.0,0.0,70.0,1.0,Individual,,,,0.0,280.0,131395.0,3.0,3.0,1.0,5.0,5.0,125078.0,84.0,4.0,10.0,456.0,60.0,21800.0,0.0,4.0,3.0,15.0,6257.0,5544.0,7.6,0.0,0.0,79.0,72.0,1.0,1.0,0.0,1.0,,2.0,,1.0,1.0,4.0,8.0,9.0,21.0,19.0,20.0,4.0,22.0,0.0,0.0,0.0,5.0,97.6,0.0,0.0,0.0,157376.0,131395.0,6000.0,135576.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251436,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Patient Register ,10+ years,OWN,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251436,,debt_consolidation,Debt consolidation,277xx,NC,25.59,2.0,Jun-2003,720.0,724.0,1.0,15.0,,21.0,0.0,1541.0,6.3,32.0,f,0.0,0.0,10182.95,10182.95,10000.0,182.95,0.0,0.0,0.0,Nov-2016,10192.39,,Mar-2019,659.0,655.0,0.0,74.0,1.0,Individual,,,,0.0,0.0,26353.0,4.0,3.0,3.0,3.0,1.0,24812.0,90.0,3.0,10.0,625.0,51.0,24300.0,4.0,5.0,1.0,13.0,1255.0,14697.0,5.2,0.0,0.0,159.0,107.0,1.0,1.0,0.0,14.0,,2.0,15.0,1.0,2.0,5.0,4.0,4.0,10.0,18.0,22.0,5.0,21.0,0.0,0.0,0.0,6.0,75.0,0.0,0.0,0.0,51900.0,26353.0,15500.0,27600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695153,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,School Bus Driver,10+ years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695153,,debt_consolidation,Debt consolidation,440xx,OH,13.23,0.0,Oct-1998,670.0,674.0,0.0,,73.0,6.0,1.0,11731.0,45.3,25.0,f,0.0,0.0,18096.5455211844,18096.55,15000.0,3096.55,0.0,0.0,0.0,Sep-2018,6705.0,,Sep-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,14264.0,0.0,1.0,1.0,2.0,9.0,2533.0,63.0,1.0,2.0,8084.0,48.0,25900.0,1.0,5.0,1.0,4.0,2377.0,4179.0,73.7,0.0,0.0,168.0,195.0,10.0,9.0,1.0,22.0,,9.0,,0.0,3.0,4.0,3.0,7.0,13.0,5.0,10.0,4.0,6.0,0.0,0.0,0.0,2.0,100.0,66.7,1.0,0.0,29900.0,14264.0,15900.0,4000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601460,,12800.0,12800.0,12800.0, 36 months,11.49,422.04,B,B5,,,OWN,42200.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601460,,debt_consolidation,Debt consolidation,640xx,MO,30.43,0.0,Jul-1985,710.0,714.0,1.0,,74.0,10.0,2.0,18294.0,47.4,29.0,w,0.0,0.0,2511.81,2511.81,1840.45,671.36,0.0,0.0,0.0,Apr-2017,422.04,,Jun-2017,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,42927.0,3.0,2.0,0.0,0.0,35.0,24633.0,58.0,3.0,3.0,12437.0,53.0,38600.0,0.0,0.0,1.0,3.0,4770.0,13381.0,57.0,0.0,0.0,137.0,374.0,2.0,2.0,2.0,4.0,,2.0,,0.0,3.0,4.0,4.0,9.0,5.0,8.0,22.0,4.0,10.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,2.0,80753.0,42927.0,31100.0,42153.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601271,,11200.0,11200.0,11200.0, 36 months,10.99,366.63,B,B4,Team Lead,1 year,RENT,60000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601271,,debt_consolidation,Debt consolidation,841xx,UT,17.21,0.0,Dec-2010,695.0,699.0,2.0,,,11.0,0.0,17008.0,41.3,17.0,w,0.0,0.0,12039.991451978898,12039.99,11200.0,839.99,0.0,0.0,0.0,Jun-2017,9143.84,,Nov-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,52024.0,2.0,2.0,1.0,1.0,11.0,35016.0,97.0,2.0,4.0,8165.0,67.0,41200.0,1.0,9.0,3.0,5.0,4729.0,15883.0,48.3,0.0,0.0,64.0,69.0,0.0,0.0,0.0,5.0,,4.0,,0.0,3.0,7.0,3.0,3.0,8.0,9.0,9.0,7.0,11.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,77450.0,52024.0,30700.0,36250.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692473,,5000.0,5000.0,5000.0, 36 months,13.99,170.87,C,C3,ADMIN OFFICE SUPPORT ASST,10+ years,MORTGAGE,47500.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692473,,debt_consolidation,Debt consolidation,630xx,MO,16.09,1.0,Apr-1990,660.0,664.0,2.0,12.0,87.0,21.0,1.0,4508.0,40.3,26.0,w,0.0,0.0,3916.59,3916.59,2661.06,927.47,0.0,328.06,59.0508,Jul-2018,170.87,,Jan-2019,594.0,590.0,0.0,12.0,1.0,Individual,,,,0.0,2291.0,8509.0,3.0,3.0,2.0,4.0,1.0,4001.0,78.0,4.0,15.0,1317.0,52.0,11200.0,3.0,3.0,5.0,19.0,425.0,2083.0,55.7,1.0,0.0,34.0,317.0,0.0,0.0,0.0,12.0,46.0,1.0,46.0,3.0,5.0,10.0,5.0,6.0,6.0,18.0,20.0,10.0,21.0,0.0,0.0,1.0,6.0,88.5,0.0,1.0,0.0,16332.0,8509.0,4700.0,5132.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90531328,,6400.0,6400.0,6400.0, 36 months,21.49,242.74,D,D5,Reserve Counsler,10+ years,RENT,50500.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90531328,,other,Other,967xx,HI,10.6,3.0,Mar-2005,670.0,674.0,1.0,9.0,,3.0,0.0,792.0,31.7,17.0,w,0.0,0.0,6907.6012074198,6907.6,6400.0,492.6,15.0,0.0,0.0,Feb-2017,6672.5,,Dec-2017,624.0,620.0,0.0,9.0,1.0,Individual,,,,0.0,0.0,16183.0,0.0,2.0,0.0,2.0,13.0,15391.0,79.0,0.0,1.0,792.0,74.0,2500.0,2.0,4.0,2.0,3.0,5394.0,1708.0,31.7,0.0,0.0,120.0,138.0,21.0,13.0,1.0,21.0,12.0,0.0,12.0,2.0,1.0,1.0,1.0,2.0,11.0,1.0,5.0,1.0,3.0,0.0,0.0,1.0,0.0,71.4,0.0,0.0,0.0,21918.0,16183.0,2500.0,19418.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695390,,5875.0,5875.0,5875.0, 36 months,10.99,192.32,B,B4,install tech,2 years,RENT,45000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695390,,debt_consolidation,Debt consolidation,992xx,WA,6.11,0.0,Oct-2004,670.0,674.0,0.0,,37.0,5.0,1.0,2315.0,52.6,12.0,w,1297.93,1297.93,5573.69,5573.69,4577.07,996.62,0.0,0.0,0.0,Mar-2019,192.32,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,745.0,6379.0,1.0,1.0,0.0,1.0,22.0,4064.0,61.0,1.0,3.0,981.0,58.0,4400.0,0.0,1.0,0.0,4.0,1276.0,2085.0,52.6,0.0,0.0,143.0,138.0,5.0,5.0,0.0,5.0,,13.0,,0.0,3.0,3.0,4.0,6.0,2.0,4.0,10.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,1.0,11045.0,6379.0,4400.0,6645.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471411,,7500.0,7500.0,7500.0, 36 months,16.99,267.36,D,D1,Estimator / Buyer,10+ years,MORTGAGE,64000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471411,,debt_consolidation,Debt consolidation,014xx,MA,17.94,0.0,Jun-2004,660.0,664.0,3.0,43.0,44.0,13.0,1.0,7213.0,26.5,31.0,f,1769.8,1769.8,7746.36,7746.36,5730.2,2016.16,0.0,0.0,0.0,Mar-2019,267.36,Apr-2019,Mar-2019,669.0,665.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,178409.0,5.0,2.0,2.0,2.0,6.0,32386.0,94.0,3.0,6.0,784.0,64.0,27200.0,5.0,4.0,7.0,9.0,13724.0,13067.0,11.1,0.0,0.0,147.0,145.0,1.0,1.0,5.0,1.0,43.0,1.0,43.0,0.0,4.0,9.0,4.0,10.0,8.0,10.0,18.0,9.0,13.0,0.0,0.0,0.0,6.0,96.3,0.0,1.0,0.0,201537.0,39599.0,14700.0,34333.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661382,,20000.0,20000.0,20000.0, 60 months,9.49,419.94,B,B2,Field Coordinartor,10+ years,MORTGAGE,130000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661382,,debt_consolidation,Debt consolidation,826xx,WY,9.43,0.0,Jul-1994,715.0,719.0,0.0,,,8.0,0.0,24809.0,67.6,20.0,w,11505.06,11505.06,12230.98,12230.98,8494.94,3736.04,0.0,0.0,0.0,Mar-2019,419.94,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,254219.0,0.0,1.0,0.0,0.0,29.0,10757.0,48.0,1.0,2.0,12632.0,60.0,36700.0,0.0,0.0,2.0,3.0,31777.0,991.0,95.1,0.0,0.0,232.0,266.0,9.0,9.0,1.0,22.0,,9.0,,0.0,2.0,4.0,2.0,6.0,6.0,6.0,13.0,4.0,8.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,280468.0,35566.0,20100.0,22418.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441372,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,FInancial Crimes Specalist 2,1 year,RENT,32000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441372,,debt_consolidation,Debt consolidation,282xx,NC,27.49,1.0,Jan-2009,670.0,674.0,0.0,8.0,,19.0,0.0,6722.0,56.5,30.0,f,0.0,0.0,12442.844841228702,12442.84,10000.0,2442.84,0.0,0.0,0.0,Sep-2018,4609.72,,Oct-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,61318.0,0.0,14.0,0.0,0.0,25.0,54596.0,95.0,0.0,1.0,2757.0,88.0,11900.0,1.0,0.0,2.0,1.0,3227.0,2296.0,74.2,0.0,0.0,92.0,69.0,14.0,14.0,0.0,14.0,,3.0,,0.0,4.0,5.0,4.0,4.0,25.0,5.0,5.0,5.0,19.0,0.0,0.0,0.0,0.0,96.4,25.0,0.0,0.0,69363.0,61318.0,8900.0,57463.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491429,,35000.0,35000.0,35000.0, 60 months,8.99,726.38,B,B1,Principal,3 years,MORTGAGE,200000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491429,,home_improvement,Home improvement,774xx,TX,11.67,0.0,Dec-1975,700.0,704.0,0.0,46.0,,6.0,0.0,9727.0,41.4,26.0,w,20027.18,20027.18,21130.39,21130.39,14972.82,6157.57,0.0,0.0,0.0,Mar-2019,726.38,Apr-2019,Mar-2019,774.0,770.0,0.0,59.0,1.0,Individual,,,,0.0,0.0,477098.0,1.0,1.0,1.0,1.0,4.0,52817.0,,0.0,1.0,8434.0,52.0,23500.0,1.0,0.0,1.0,4.0,79516.0,13773.0,41.4,0.0,0.0,173.0,489.0,24.0,4.0,3.0,24.0,74.0,4.0,74.0,4.0,3.0,3.0,3.0,5.0,15.0,3.0,7.0,3.0,6.0,0.0,0.0,0.0,1.0,65.4,0.0,0.0,0.0,500273.0,67728.0,23500.0,54589.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491453,,35000.0,35000.0,35000.0, 60 months,8.59,719.6,A,A5,Director,1 year,MORTGAGE,235000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491453,,debt_consolidation,Debt consolidation,460xx,IN,5.6,0.0,Jun-1998,705.0,709.0,0.0,44.0,76.0,10.0,1.0,31439.0,52.9,32.0,w,19942.03,19942.03,20866.9,20866.9,15057.97,5808.93,0.0,0.0,0.0,Mar-2019,719.6,Apr-2019,Mar-2019,699.0,695.0,0.0,64.0,1.0,Individual,,,,0.0,0.0,380281.0,0.0,2.0,1.0,1.0,11.0,123077.0,,0.0,1.0,15699.0,53.0,59400.0,2.0,10.0,0.0,3.0,38028.0,15466.0,66.4,0.0,0.0,149.0,126.0,18.0,11.0,5.0,18.0,44.0,16.0,44.0,1.0,2.0,3.0,3.0,6.0,16.0,6.0,10.0,3.0,10.0,0.0,0.0,0.0,1.0,83.9,66.7,0.0,1.0,426373.0,161804.0,46000.0,115942.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641305,,6450.0,6450.0,6450.0, 36 months,18.99,236.4,D,D3,911 Telecommunicator / Dispatcher,2 years,RENT,52000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641305,,debt_consolidation,Debt consolidation,087xx,NJ,14.65,0.0,Feb-2004,660.0,664.0,0.0,24.0,44.0,6.0,1.0,2484.0,65.4,13.0,f,1555.21,1555.21,6874.31,6874.31,4894.79,1979.52,0.0,0.0,0.0,Mar-2019,236.4,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,27885.0,1.0,1.0,1.0,2.0,3.0,25401.0,97.0,3.0,3.0,1020.0,93.0,3800.0,2.0,0.0,3.0,5.0,4648.0,446.0,82.8,0.0,0.0,121.0,151.0,7.0,3.0,1.0,9.0,24.0,3.0,24.0,0.0,3.0,5.0,3.0,7.0,3.0,5.0,9.0,5.0,6.0,0.0,0.0,0.0,4.0,84.6,100.0,0.0,0.0,30067.0,27885.0,2600.0,26267.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427759,,15000.0,15000.0,15000.0, 60 months,25.69,446.36,F,F1,Security Officer,4 years,MORTGAGE,68000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427759,,home_improvement,Home improvement,339xx,FL,15.43,0.0,Nov-2000,670.0,674.0,0.0,57.0,,15.0,0.0,9658.0,42.4,22.0,f,10037.34,10037.34,12923.03,12923.03,4962.66,7960.37,0.0,0.0,0.0,Mar-2019,446.36,Apr-2019,Mar-2019,584.0,580.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,138834.0,0.0,2.0,1.0,3.0,11.0,19394.0,83.0,3.0,5.0,2221.0,63.0,22800.0,2.0,0.0,4.0,8.0,9917.0,450.0,90.2,0.0,0.0,20.0,190.0,8.0,8.0,2.0,46.0,57.0,0.0,57.0,2.0,3.0,8.0,3.0,7.0,3.0,12.0,17.0,8.0,15.0,0.0,0.0,0.0,4.0,90.9,100.0,0.0,0.0,161757.0,29052.0,4600.0,23357.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90242005,,24000.0,24000.0,24000.0, 60 months,17.99,609.32,D,D2,Tax Accountant ,10+ years,MORTGAGE,55537.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242005,,debt_consolidation,Debt consolidation,727xx,AR,16.98,2.0,Sep-2001,685.0,689.0,0.0,21.0,,21.0,0.0,17554.0,74.7,41.0,f,0.0,0.0,29697.2448403227,29697.24,24000.0,5697.24,0.0,0.0,0.0,Mar-2018,19972.11,,Aug-2018,724.0,720.0,0.0,,1.0,Individual,,,,0.0,328.0,198996.0,0.0,13.0,0.0,0.0,37.0,45019.0,103.0,2.0,2.0,7298.0,93.0,23500.0,0.0,0.0,0.0,2.0,9476.0,1698.0,89.6,0.0,0.0,180.0,177.0,10.0,10.0,4.0,119.0,,13.0,,1.0,4.0,6.0,4.0,4.0,26.0,7.0,11.0,6.0,21.0,0.0,0.0,0.0,2.0,85.0,50.0,0.0,0.0,211326.0,62573.0,16400.0,43599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90205391,,35000.0,35000.0,35000.0, 36 months,17.99,1265.16,D,D2,Consultant. Architect continuous improve,< 1 year,RENT,115000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90205391,,credit_card,Credit card refinancing,488xx,MI,25.07,0.0,Jan-1993,680.0,684.0,0.0,32.0,,6.0,0.0,37923.0,90.5,19.0,f,0.0,0.0,36321.4851792897,36321.49,35000.0,1321.49,0.0,0.0,0.0,Dec-2016,35091.31,,Mar-2019,829.0,825.0,0.0,32.0,1.0,Individual,,,,0.0,0.0,146073.0,0.0,3.0,1.0,1.0,11.0,108150.0,59.0,1.0,1.0,13912.0,75.0,41900.0,0.0,1.0,1.0,2.0,24346.0,3977.0,90.5,0.0,0.0,145.0,284.0,11.0,11.0,1.0,11.0,,11.0,,4.0,3.0,3.0,3.0,4.0,13.0,3.0,5.0,3.0,6.0,0.0,0.0,0.0,2.0,78.9,100.0,0.0,0.0,190173.0,146073.0,41900.0,148273.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611254,,30000.0,30000.0,30000.0, 36 months,13.99,1025.19,C,C3,Sr. Sales Engineer,10+ years,RENT,135000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611254,,debt_consolidation,Debt consolidation,117xx,NY,10.22,0.0,Feb-2001,690.0,694.0,0.0,24.0,,15.0,0.0,41392.0,51.0,31.0,f,0.0,0.0,13355.41,13355.41,9332.18,3971.97,51.26,0.0,0.0,Nov-2017,5177.21,,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,47203.0,3.0,2.0,1.0,2.0,6.0,5811.0,35.0,4.0,4.0,11545.0,48.0,90800.0,1.0,1.0,2.0,6.0,3372.0,48590.0,48.7,0.0,0.0,157.0,187.0,0.0,0.0,0.0,0.0,24.0,8.0,24.0,0.0,7.0,9.0,9.0,13.0,8.0,13.0,23.0,9.0,15.0,0.0,0.0,0.0,5.0,86.7,33.3,0.0,0.0,107225.0,47203.0,85900.0,16425.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561214,,6000.0,6000.0,6000.0, 36 months,8.99,190.78,B,B1,Nurse Mgr,1 year,MORTGAGE,70000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561214,,home_improvement,Home improvement,641xx,MO,14.81,1.0,Jul-2003,670.0,674.0,0.0,21.0,,12.0,0.0,11890.0,38.9,34.0,w,1295.95,1295.95,5529.62,5529.62,4704.05,825.57,0.0,0.0,0.0,Mar-2019,190.78,Apr-2019,Mar-2019,704.0,700.0,1.0,,1.0,Individual,,,,0.0,169.0,182755.0,1.0,2.0,1.0,2.0,4.0,67952.0,72.0,1.0,1.0,4420.0,48.0,30600.0,0.0,1.0,0.0,3.0,15230.0,6082.0,58.6,0.0,0.0,149.0,158.0,9.0,4.0,2.0,9.0,21.0,15.0,21.0,0.0,5.0,7.0,5.0,8.0,20.0,9.0,12.0,7.0,12.0,0.0,0.0,0.0,2.0,94.1,20.0,0.0,0.0,216703.0,79842.0,14700.0,71286.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671232,,7500.0,7500.0,7500.0, 36 months,15.59,262.17,C,C5,Flight Attendant,10+ years,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671232,,debt_consolidation,Debt consolidation,956xx,CA,17.33,1.0,Jun-1991,660.0,664.0,0.0,11.0,,15.0,0.0,6821.0,24.2,22.0,f,0.0,0.0,8590.474092390601,8590.47,7500.0,1090.47,0.0,0.0,0.0,Oct-2017,5682.05,,Mar-2019,589.0,585.0,1.0,11.0,1.0,Individual,,,,0.0,0.0,31443.0,3.0,2.0,1.0,1.0,6.0,24622.0,77.0,3.0,9.0,1520.0,52.0,28200.0,0.0,3.0,0.0,10.0,2096.0,13416.0,19.7,0.0,0.0,216.0,303.0,1.0,1.0,0.0,4.0,,15.0,72.0,2.0,3.0,10.0,4.0,4.0,5.0,13.0,16.0,10.0,15.0,0.0,0.0,1.0,4.0,81.8,75.0,0.0,0.0,60101.0,31443.0,16700.0,31901.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693347,,32000.0,32000.0,32000.0, 60 months,8.99,664.12,B,B1,Registered Nurse,4 years,MORTGAGE,120000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693347,,medical,Medical expenses,922xx,CA,7.33,0.0,Feb-1995,740.0,744.0,0.0,69.0,,13.0,0.0,39063.0,44.0,31.0,f,0.0,0.0,35114.6274626996,35114.63,32000.0,3114.63,0.0,0.0,0.0,Dec-2017,26521.03,,Dec-2017,784.0,780.0,0.0,69.0,1.0,Joint App,160000.0,7.83,Not Verified,0.0,0.0,574779.0,1.0,2.0,0.0,0.0,38.0,23382.0,93.0,2.0,5.0,6050.0,55.0,88800.0,0.0,0.0,1.0,7.0,44214.0,48686.0,11.2,0.0,0.0,47.0,259.0,2.0,2.0,7.0,2.0,,11.0,72.0,2.0,2.0,3.0,7.0,12.0,2.0,9.0,22.0,3.0,13.0,0.0,0.0,0.0,4.0,93.5,0.0,0.0,0.0,641855.0,62445.0,54800.0,25196.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641281,,35000.0,35000.0,35000.0, 36 months,13.49,1187.57,C,C2,RN,10+ years,MORTGAGE,110000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641281,,debt_consolidation,Debt consolidation,984xx,WA,31.74,1.0,Apr-1992,660.0,664.0,1.0,0.0,,21.0,0.0,41053.0,51.2,37.0,f,0.0,0.0,41047.2601077117,41047.26,35000.0,6047.26,0.0,0.0,0.0,May-2018,19697.23,,Jul-2018,779.0,775.0,0.0,,1.0,Individual,,,,1.0,0.0,488992.0,1.0,7.0,1.0,2.0,1.0,140524.0,68.0,0.0,2.0,10132.0,59.0,80200.0,2.0,6.0,1.0,4.0,24450.0,10316.0,76.0,0.0,98.0,131.0,293.0,19.0,1.0,1.0,22.0,,1.0,0.0,0.0,6.0,10.0,6.0,9.0,13.0,13.0,23.0,10.0,20.0,0.0,0.0,0.0,1.0,94.6,66.7,0.0,0.0,611727.0,181577.0,43000.0,180490.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641359,,6000.0,6000.0,6000.0, 36 months,15.59,209.73,C,C5,Sales,10+ years,RENT,40000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641359,,debt_consolidation,Debt consolidation,276xx,NC,9.06,0.0,Sep-1999,660.0,664.0,2.0,55.0,38.0,8.0,2.0,8190.0,52.8,10.0,f,0.0,0.0,7039.4630626616,7039.46,6000.0,1039.46,0.0,0.0,0.0,Feb-2018,3898.71,,Mar-2019,654.0,650.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,8190.0,2.0,0.0,0.0,0.0,,0.0,,3.0,8.0,4118.0,53.0,15500.0,0.0,0.0,2.0,8.0,1024.0,452.0,94.2,0.0,0.0,,29.0,2.0,2.0,1.0,2.0,,1.0,,1.0,3.0,6.0,3.0,4.0,0.0,8.0,9.0,6.0,8.0,0.0,0.0,0.0,3.0,90.0,100.0,2.0,0.0,15500.0,8190.0,7800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441310,,20000.0,20000.0,20000.0, 36 months,16.99,712.96,D,D1,driver,3 years,RENT,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441310,,debt_consolidation,Debt consolidation,076xx,NJ,6.45,1.0,Mar-2007,660.0,664.0,1.0,7.0,,10.0,0.0,4336.0,18.8,14.0,f,0.0,0.0,23888.393059734502,23888.39,20000.0,3888.39,0.0,0.0,0.0,May-2018,6873.99,,May-2018,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,10717.0,0.0,2.0,0.0,1.0,18.0,6381.0,64.0,2.0,2.0,2577.0,32.0,23100.0,0.0,1.0,1.0,3.0,1191.0,16564.0,20.7,0.0,0.0,108.0,114.0,10.0,10.0,0.0,10.0,7.0,0.0,7.0,0.0,3.0,3.0,6.0,7.0,5.0,8.0,9.0,3.0,10.0,0.0,0.0,0.0,2.0,85.7,0.0,0.0,0.0,33100.0,10717.0,20900.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90279094,,5000.0,5000.0,5000.0, 36 months,15.59,174.78,C,C5,,,MORTGAGE,55235.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90279094,,debt_consolidation,Debt consolidation,080xx,NJ,30.28,0.0,Sep-1997,660.0,664.0,4.0,26.0,,17.0,0.0,6799.0,42.8,52.0,f,0.0,0.0,5893.3018763873,5893.3,5000.0,893.3,0.0,0.0,0.0,Feb-2018,3260.78,,Mar-2019,644.0,640.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,44266.0,5.0,1.0,0.0,0.0,26.0,25243.0,,8.0,12.0,1331.0,43.0,15900.0,1.0,0.0,7.0,12.0,2604.0,4793.0,49.0,0.0,0.0,161.0,228.0,1.0,1.0,2.0,1.0,26.0,1.0,26.0,1.0,6.0,13.0,8.0,21.0,5.0,15.0,45.0,13.0,17.0,0.0,0.0,0.0,8.0,94.1,25.0,0.0,0.0,160871.0,32042.0,9400.0,36366.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521239,,25000.0,25000.0,25000.0, 36 months,13.99,854.32,C,C3,Estimator,10+ years,OWN,125000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521239,,debt_consolidation,Debt consolidation,917xx,CA,19.62,0.0,Oct-2003,695.0,699.0,5.0,70.0,,17.0,0.0,11605.0,29.8,25.0,f,0.0,0.0,11887.69,11887.69,6565.31,2812.78,0.0,2509.6,451.728,Sep-2017,854.32,,Mar-2018,579.0,575.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,93296.0,5.0,4.0,3.0,5.0,2.0,81691.0,91.0,4.0,7.0,3045.0,63.0,38900.0,11.0,1.0,21.0,12.0,5488.0,13204.0,44.3,0.0,0.0,126.0,155.0,3.0,2.0,0.0,4.0,,3.0,,1.0,8.0,10.0,9.0,11.0,7.0,13.0,18.0,10.0,17.0,0.0,0.0,0.0,7.0,100.0,22.2,0.0,0.0,127356.0,93296.0,23700.0,88456.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694239,,22550.0,22550.0,22550.0, 36 months,15.59,788.24,C,C5,,,OWN,58077.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694239,,debt_consolidation,Debt consolidation,103xx,NY,15.4,0.0,May-1999,750.0,754.0,0.0,,,2.0,0.0,10903.0,99.1,18.0,f,5241.52,5241.52,22839.43,22839.43,17308.48,5530.95,0.0,0.0,0.0,Mar-2019,788.24,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,32047.0,0.0,1.0,0.0,0.0,28.0,21144.0,62.0,0.0,0.0,10903.0,71.0,11000.0,1.0,0.0,0.0,0.0,16024.0,97.0,99.1,0.0,0.0,150.0,208.0,56.0,28.0,0.0,71.0,,15.0,,0.0,1.0,1.0,1.0,5.0,10.0,1.0,8.0,1.0,2.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,44918.0,32047.0,11000.0,33918.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90170197,,24600.0,24600.0,24600.0, 36 months,13.49,834.69,C,C2,owner,4 years,RENT,75000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90170197,,home_improvement,Home improvement,275xx,NC,8.86,2.0,Jun-2011,665.0,669.0,1.0,11.0,,12.0,0.0,5583.0,23.4,14.0,f,5588.68,5588.68,24187.57,24187.57,19011.32,5176.25,0.0,0.0,0.0,Mar-2019,834.69,Apr-2019,Mar-2019,554.0,550.0,1.0,,1.0,Individual,,,,0.0,344.0,9466.0,3.0,1.0,0.0,0.0,45.0,3883.0,27.0,3.0,3.0,2920.0,25.0,23900.0,1.0,0.0,1.0,3.0,789.0,15617.0,22.7,0.0,0.0,49.0,63.0,1.0,1.0,0.0,1.0,,3.0,21.0,0.0,7.0,8.0,9.0,9.0,2.0,11.0,12.0,8.0,12.0,0.0,0.0,0.0,3.0,85.7,0.0,0.0,0.0,38137.0,9466.0,20200.0,14237.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90148527,,18000.0,18000.0,17725.0, 36 months,13.49,610.75,C,C2,Rest Area Attendant,8 years,OWN,43500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90148527,,credit_card,Credit card refinancing,718xx,AR,33.68,0.0,Oct-1993,665.0,669.0,0.0,34.0,95.0,12.0,1.0,14072.0,67.3,30.0,f,4089.23,4026.76,17698.26,17427.87,13910.77,3787.49,0.0,0.0,0.0,Mar-2019,610.75,Apr-2019,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,302.0,23774.0,0.0,3.0,2.0,3.0,9.0,9702.0,56.0,0.0,5.0,4287.0,62.0,20900.0,0.0,3.0,0.0,8.0,1981.0,386.0,94.0,0.0,0.0,275.0,85.0,13.0,9.0,0.0,51.0,34.0,20.0,34.0,0.0,2.0,8.0,2.0,3.0,19.0,9.0,11.0,8.0,12.0,0.0,0.0,0.0,2.0,90.0,100.0,1.0,0.0,38208.0,23774.0,6400.0,17308.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694186,,30000.0,30000.0,30000.0, 36 months,16.99,1069.44,D,D1,Senior Consultant,10+ years,MORTGAGE,150000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694186,,debt_consolidation,Debt consolidation,215xx,MD,27.81,0.0,Dec-2001,685.0,689.0,2.0,55.0,,17.0,0.0,49399.0,91.5,45.0,f,7117.39,7117.39,31155.34,31155.34,22882.61,8272.73,0.0,0.0,0.0,Mar-2019,1069.44,Apr-2019,Mar-2019,689.0,685.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,299039.0,2.0,10.0,2.0,6.0,0.0,118989.0,75.0,1.0,2.0,24754.0,81.0,54000.0,0.0,7.0,4.0,8.0,17591.0,1064.0,97.8,0.0,0.0,135.0,177.0,1.0,0.0,1.0,36.0,55.0,1.0,55.0,0.0,3.0,5.0,3.0,11.0,29.0,5.0,14.0,5.0,17.0,0.0,0.0,0.0,3.0,91.1,100.0,0.0,0.0,377569.0,177597.0,47500.0,160762.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90381419,,12000.0,12000.0,12000.0, 36 months,15.59,419.46,C,C5,,,MORTGAGE,36000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90381419,,debt_consolidation,Debt consolidation,707xx,LA,25.0,0.0,May-2002,675.0,679.0,0.0,,64.0,6.0,1.0,3043.0,35.0,19.0,f,0.0,0.0,14676.8003176281,14676.8,12000.0,2676.8,0.0,0.0,0.0,Sep-2018,5459.07,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,30452.0,1.0,2.0,1.0,2.0,3.0,27409.0,79.0,0.0,0.0,1603.0,70.0,8700.0,0.0,2.0,0.0,2.0,5075.0,4558.0,28.8,0.0,0.0,86.0,172.0,30.0,3.0,0.0,30.0,,,,0.0,2.0,3.0,2.0,9.0,7.0,4.0,12.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,50.0,1.0,0.0,43480.0,30452.0,6400.0,34780.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90154296,,28000.0,28000.0,28000.0, 36 months,9.49,896.8,B,B2,Electrician,10+ years,MORTGAGE,135000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90154296,,debt_consolidation,Debt consolidation,088xx,NJ,14.99,0.0,Apr-2001,670.0,674.0,0.0,,,11.0,0.0,17980.0,30.9,22.0,w,0.0,0.0,31552.0480968712,31552.05,28000.0,3552.05,0.0,0.0,0.0,Jul-2018,13537.56,,Jul-2018,634.0,630.0,0.0,,1.0,Individual,,,,0.0,872.0,315860.0,2.0,2.0,1.0,2.0,2.0,50000.0,90.0,3.0,5.0,4935.0,60.0,58100.0,2.0,0.0,3.0,7.0,28715.0,37226.0,31.2,0.0,0.0,134.0,185.0,3.0,2.0,2.0,3.0,,2.0,,0.0,5.0,6.0,7.0,10.0,7.0,8.0,13.0,6.0,11.0,0.0,0.0,0.0,4.0,100.0,28.6,0.0,0.0,407800.0,67980.0,54100.0,55500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331777,,9600.0,9600.0,9600.0, 36 months,12.79,322.5,C,C1,Recruiting Manager,4 years,RENT,60000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331777,,small_business,Business,300xx,GA,31.2,0.0,Dec-1999,705.0,709.0,1.0,,,8.0,0.0,34904.0,90.0,14.0,f,0.0,0.0,4543.08,4543.08,3304.83,1238.25,0.0,0.0,0.0,Dec-2017,357.4,,Jul-2018,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,46858.0,0.0,2.0,0.0,1.0,16.0,11954.0,40.0,0.0,0.0,13212.0,68.0,38800.0,1.0,0.0,2.0,1.0,5857.0,143.0,99.5,0.0,0.0,101.0,201.0,45.0,16.0,0.0,45.0,,1.0,,0.0,3.0,5.0,4.0,9.0,3.0,6.0,11.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,68772.0,46858.0,29100.0,29972.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90440234,,33600.0,33600.0,33550.0, 36 months,14.49,1156.39,C,C4,Estimator,4 years,RENT,65000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90440234,,credit_card,Credit card refinancing,605xx,IL,14.09,0.0,May-2013,665.0,669.0,1.0,,,8.0,0.0,15503.0,62.8,10.0,f,0.0,0.0,38247.5007225452,38190.58,33600.0,4647.5,0.0,0.0,0.0,Nov-2017,24397.87,,Mar-2019,724.0,720.0,0.0,,1.0,Joint App,141000.0,9.75,Not Verified,0.0,66.0,35598.0,1.0,1.0,0.0,1.0,17.0,20095.0,82.0,2.0,5.0,6467.0,73.0,24700.0,2.0,0.0,1.0,6.0,4450.0,8223.0,60.5,0.0,0.0,17.0,40.0,6.0,6.0,0.0,12.0,,0.0,,0.0,4.0,5.0,5.0,7.0,1.0,7.0,9.0,5.0,8.0,0.0,0.0,0.0,2.0,100.0,40.0,0.0,0.0,49112.0,35598.0,20800.0,24412.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181406,,21125.0,21125.0,21125.0, 60 months,18.99,547.88,D,D3,Custodian,10+ years,RENT,55000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181406,,credit_card,Credit card refinancing,078xx,NJ,21.86,0.0,Sep-2003,695.0,699.0,1.0,,94.0,7.0,1.0,8800.0,62.4,13.0,f,0.0,0.0,7521.03,7521.03,2048.47,2826.73,0.0,2645.83,476.2494000012,Jul-2017,547.88,,Jan-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,25270.0,1.0,2.0,1.0,1.0,4.0,16470.0,67.0,1.0,3.0,4421.0,65.0,14100.0,0.0,0.0,2.0,4.0,4212.0,2536.0,74.4,0.0,0.0,155.0,156.0,11.0,4.0,0.0,19.0,,1.0,,0.0,2.0,4.0,2.0,3.0,6.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,50.0,1.0,0.0,38753.0,25270.0,9900.0,24653.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415945,,28800.0,28800.0,28800.0, 36 months,18.99,1055.55,D,D3,Eligibility Clerk,10+ years,RENT,60000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415945,,debt_consolidation,Debt consolidation,112xx,NY,28.96,0.0,May-1998,705.0,709.0,1.0,,,12.0,0.0,36264.0,56.4,24.0,f,0.0,0.0,3926.0,3926.0,599.79,425.38,0.0,2900.83,522.1494,Nov-2016,1055.55,,Dec-2016,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,61035.0,1.0,1.0,1.0,1.0,2.0,24771.0,99.0,0.0,0.0,13604.0,68.0,64300.0,1.0,0.0,1.0,1.0,6104.0,23336.0,60.8,0.0,0.0,2.0,220.0,46.0,2.0,0.0,60.0,,2.0,,0.0,5.0,5.0,7.0,12.0,1.0,11.0,23.0,5.0,12.0,0.0,0.0,0.0,1.0,100.0,16.7,0.0,0.0,89300.0,61035.0,59600.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90131031,,18000.0,18000.0,18000.0, 60 months,12.79,407.63,C,C1,Mechanic,10+ years,RENT,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131031,,debt_consolidation,Debt consolidation,916xx,CA,17.26,0.0,Apr-2004,725.0,729.0,0.0,31.0,,16.0,0.0,12771.0,29.1,35.0,f,10712.52,10712.52,11808.48,11808.48,7287.48,4521.0,0.0,0.0,0.0,Mar-2019,407.63,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,100.0,17592.0,1.0,1.0,0.0,0.0,37.0,4821.0,27.0,2.0,4.0,3691.0,29.0,43900.0,0.0,1.0,0.0,4.0,1100.0,26629.0,32.1,0.0,0.0,131.0,149.0,2.0,2.0,0.0,2.0,31.0,,31.0,0.0,7.0,8.0,13.0,21.0,5.0,15.0,30.0,8.0,16.0,0.0,0.0,0.0,2.0,97.1,15.4,0.0,0.0,61489.0,17592.0,39200.0,17589.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404062,,6000.0,6000.0,6000.0, 36 months,18.99,219.91,D,D3,,,MORTGAGE,70000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404062,,home_improvement,Home improvement,551xx,MN,10.66,0.0,Oct-2002,670.0,674.0,1.0,75.0,76.0,16.0,1.0,7652.0,44.0,25.0,f,1446.2,1446.2,6371.06,6371.06,4553.8,1817.26,0.0,0.0,0.0,Mar-2019,219.91,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,199535.0,4.0,2.0,2.0,4.0,5.0,15479.0,93.0,2.0,5.0,3210.0,68.0,17400.0,0.0,1.0,4.0,12.0,12471.0,4248.0,64.3,0.0,0.0,23.0,167.0,1.0,1.0,3.0,13.0,75.0,5.0,75.0,0.0,5.0,5.0,6.0,9.0,4.0,13.0,18.0,5.0,16.0,0.0,0.0,0.0,7.0,95.8,16.7,1.0,0.0,211261.0,23131.0,11900.0,16737.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90292228,,31500.0,31500.0,31500.0, 36 months,14.49,1084.11,C,C4,Officer,6 years,RENT,97200.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90292228,,debt_consolidation,Debt consolidation,917xx,CA,24.33,0.0,Jun-2006,710.0,714.0,0.0,,,9.0,0.0,15015.0,55.0,26.0,f,7235.01,7235.01,31565.97,31565.97,24264.99,7300.98,0.0,0.0,0.0,Mar-2019,1084.11,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,52405.0,1.0,4.0,3.0,5.0,3.0,37390.0,70.0,0.0,1.0,9917.0,63.0,27300.0,2.0,0.0,2.0,6.0,5823.0,1206.0,89.3,0.0,0.0,123.0,102.0,15.0,3.0,0.0,31.0,,1.0,,0.0,2.0,3.0,2.0,3.0,17.0,5.0,9.0,3.0,9.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,96117.0,52405.0,11300.0,68817.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111729,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Network Engineer,4 years,RENT,125000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111729,,credit_card,Credit card refinancing,895xx,NV,26.49,0.0,Jul-1990,690.0,694.0,0.0,51.0,,11.0,0.0,22596.0,84.3,20.0,f,0.0,0.0,14515.080745095,14515.08,12000.0,2515.08,0.0,0.0,0.0,Jan-2019,3910.12,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,93916.0,0.0,5.0,2.0,3.0,10.0,71320.0,75.0,0.0,1.0,6874.0,77.0,26800.0,2.0,0.0,2.0,4.0,8538.0,318.0,98.2,0.0,0.0,146.0,314.0,19.0,10.0,1.0,19.0,,9.0,,0.0,3.0,5.0,3.0,6.0,9.0,6.0,10.0,5.0,11.0,0.0,0.0,0.0,2.0,95.0,100.0,0.0,0.0,121378.0,93916.0,17500.0,94578.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90139598,,25500.0,25500.0,25500.0, 36 months,15.59,891.36,C,C5,,,OWN,113400.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90139598,,debt_consolidation,Debt consolidation,754xx,TX,23.8,3.0,Jul-1990,680.0,684.0,0.0,7.0,,12.0,0.0,15330.0,60.4,23.0,f,5927.15,5927.15,25827.35,25827.35,19572.85,6254.5,0.0,0.0,0.0,Mar-2019,891.36,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Joint App,113400.0,32.56,Not Verified,0.0,0.0,185031.0,0.0,3.0,0.0,1.0,20.0,52116.0,68.0,0.0,1.0,5248.0,67.0,22500.0,1.0,1.0,1.0,2.0,16821.0,3522.0,58.2,0.0,0.0,149.0,314.0,21.0,20.0,5.0,113.0,15.0,12.0,15.0,0.0,3.0,6.0,3.0,8.0,5.0,7.0,13.0,6.0,12.0,0.0,0.0,0.0,0.0,77.3,66.7,0.0,0.0,333958.0,67446.0,12900.0,104158.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171980,,15650.0,15650.0,15650.0, 60 months,26.99,477.79,F,F3,SECURITY GUARD ,8 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171980,,credit_card,Credit card refinancing,894xx,NV,29.91,1.0,Apr-1999,675.0,679.0,1.0,7.0,,14.0,0.0,27686.0,51.0,30.0,f,0.0,0.0,8510.53,8510.53,832.53,1123.0,0.0,6555.0,1179.9000000288002,Feb-2017,100.0,,Nov-2018,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,270910.0,2.0,2.0,4.0,6.0,6.0,32799.0,87.0,2.0,5.0,9631.0,66.0,54300.0,8.0,10.0,15.0,15.0,19351.0,12169.0,44.2,0.0,0.0,182.0,209.0,10.0,2.0,5.0,10.0,,1.0,7.0,0.0,1.0,3.0,5.0,6.0,12.0,11.0,13.0,3.0,14.0,0.0,0.0,0.0,7.0,96.7,20.0,0.0,0.0,302960.0,60485.0,21800.0,37530.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,COMPLETE,Sep-2017,6555.0,40.0,14.0 +90231201,,28000.0,28000.0,28000.0, 60 months,21.49,765.24,D,D5,Superintendent,8 years,MORTGAGE,69000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90231201,,debt_consolidation,Debt consolidation,230xx,VA,21.51,0.0,Jul-2004,695.0,699.0,0.0,,,12.0,0.0,13953.0,55.6,18.0,f,0.0,0.0,11183.17,11183.17,2861.14,4757.83,0.0,3564.2,641.5559999763,Aug-2017,765.24,,Feb-2018,539.0,535.0,0.0,,1.0,Joint App,108000.0,19.47,Not Verified,0.0,63.0,277499.0,0.0,3.0,0.0,1.0,14.0,26296.0,74.0,2.0,3.0,3798.0,66.0,25100.0,1.0,4.0,4.0,5.0,23125.0,493.0,94.9,0.0,0.0,146.0,130.0,9.0,9.0,3.0,9.0,,10.0,,0.0,4.0,7.0,4.0,4.0,7.0,8.0,8.0,7.0,12.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,300853.0,40249.0,9700.0,35678.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427663,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,Manager,10+ years,RENT,110000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427663,,debt_consolidation,Debt consolidation,917xx,CA,34.44,0.0,Oct-1998,665.0,669.0,0.0,30.0,,18.0,0.0,32587.0,77.0,46.0,f,9861.65,9861.65,10286.19,10286.19,5138.35,5128.8,19.04,0.0,0.0,Jan-2019,380.82,Apr-2019,Mar-2019,674.0,670.0,0.0,30.0,1.0,Individual,,,,0.0,0.0,223648.0,4.0,3.0,2.0,5.0,4.0,191061.0,,4.0,4.0,6199.0,77.0,42300.0,4.0,8.0,4.0,9.0,12425.0,982.0,92.3,0.0,0.0,126.0,215.0,1.0,1.0,0.0,8.0,30.0,6.0,30.0,0.0,5.0,11.0,5.0,10.0,22.0,15.0,24.0,11.0,18.0,0.0,0.0,0.0,6.0,97.8,80.0,0.0,0.0,245919.0,223648.0,12700.0,203619.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89907669,,12000.0,12000.0,12000.0, 36 months,12.79,403.12,C,C1,G. Manager,3 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89907669,,credit_card,Credit card refinancing,770xx,TX,20.9,0.0,Apr-2003,685.0,689.0,1.0,,,21.0,0.0,16220.0,48.2,29.0,f,2705.07,2705.07,11681.95,11681.95,9294.93,2387.02,0.0,0.0,0.0,Mar-2019,403.12,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,41820.0,3.0,2.0,1.0,3.0,4.0,25460.0,92.0,3.0,10.0,3786.0,67.0,71000.0,0.0,4.0,3.0,14.0,2091.0,48574.0,54.6,0.0,0.0,123.0,161.0,4.0,4.0,0.0,4.0,,6.0,,0.0,9.0,11.0,9.0,11.0,7.0,18.0,21.0,11.0,21.0,0.0,0.0,0.0,5.0,100.0,33.3,0.0,0.0,99718.0,41820.0,62000.0,27678.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451180,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Information Specialist,10+ years,RENT,60000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451180,,debt_consolidation,Debt consolidation,982xx,WA,30.16,0.0,Dec-2006,660.0,664.0,0.0,,90.0,15.0,1.0,27344.0,63.3,22.0,f,0.0,0.0,3094.94,3094.94,1491.75,704.45,0.0,898.74,161.7732,Jun-2017,275.33,,Dec-2017,514.0,510.0,0.0,,1.0,Individual,,,,0.0,0.0,63303.0,3.0,2.0,1.0,1.0,10.0,35959.0,78.0,3.0,5.0,4985.0,71.0,43200.0,0.0,3.0,5.0,6.0,4220.0,5397.0,70.0,0.0,0.0,76.0,117.0,2.0,2.0,0.0,2.0,,10.0,,0.0,5.0,12.0,5.0,6.0,6.0,13.0,16.0,12.0,15.0,0.0,0.0,0.0,4.0,100.0,60.0,1.0,0.0,89128.0,63303.0,18000.0,45928.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240895,,30000.0,30000.0,30000.0, 60 months,15.59,723.03,C,C5,Director of admin and finance,4 years,MORTGAGE,86000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240895,,debt_consolidation,Debt consolidation,281xx,NC,26.34,2.0,Jul-1996,670.0,674.0,0.0,14.0,,17.0,0.0,20787.0,75.9,34.0,f,18352.86,18352.86,20941.89,20941.89,11647.14,9294.75,0.0,0.0,0.0,Mar-2019,723.03,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,154182.0,2.0,3.0,2.0,2.0,4.0,53964.0,96.0,1.0,1.0,5923.0,89.0,27400.0,1.0,0.0,1.0,3.0,9636.0,938.0,93.9,0.0,0.0,122.0,242.0,8.0,4.0,2.0,8.0,22.0,7.0,22.0,0.0,5.0,10.0,5.0,6.0,16.0,13.0,16.0,10.0,17.0,0.0,0.0,0.0,3.0,94.1,80.0,0.0,0.0,167206.0,74751.0,15500.0,56260.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90292156,,15000.0,15000.0,15000.0, 60 months,10.99,326.07,B,B4,Store Manager,10+ years,MORTGAGE,65000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90292156,,debt_consolidation,Debt consolidation,293xx,SC,19.93,0.0,Oct-2004,690.0,694.0,0.0,,53.0,20.0,1.0,17451.0,34.1,32.0,f,0.0,0.0,15706.536185377,15706.54,15000.0,706.54,0.0,0.0,0.0,Mar-2017,14425.16,,Aug-2018,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,97328.0,0.0,1.0,0.0,1.0,19.0,29365.0,,1.0,8.0,3746.0,34.0,51200.0,2.0,0.0,0.0,10.0,4866.0,25085.0,39.1,0.0,0.0,119.0,143.0,9.0,9.0,1.0,13.0,,13.0,,0.0,10.0,12.0,14.0,19.0,6.0,18.0,25.0,12.0,20.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,1.0,142619.0,46816.0,41200.0,36419.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88836890,,40000.0,40000.0,40000.0, 60 months,14.49,940.93,C,C4,Corporate Controller,6 years,RENT,200000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88836890,,debt_consolidation,Debt consolidation,330xx,FL,10.76,0.0,May-2000,680.0,684.0,0.0,,63.0,11.0,1.0,16391.0,45.4,26.0,f,24210.71,24210.71,27254.77,27254.77,15789.29,11465.48,0.0,0.0,0.0,Mar-2019,940.93,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,67211.0,1.0,5.0,2.0,2.0,4.0,50820.0,80.0,1.0,2.0,9241.0,68.0,36100.0,1.0,1.0,1.0,4.0,6721.0,13761.0,50.3,0.0,0.0,143.0,196.0,7.0,4.0,1.0,7.0,,4.0,,0.0,2.0,3.0,3.0,9.0,12.0,6.0,13.0,3.0,10.0,0.0,0.0,0.0,3.0,100.0,0.0,1.0,0.0,99309.0,67211.0,27700.0,63209.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271793,,30000.0,30000.0,30000.0, 36 months,13.49,1017.92,C,C2,Project Manager,< 1 year,RENT,115000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271793,,credit_card,Credit card refinancing,967xx,HI,22.25,0.0,Sep-2010,715.0,719.0,0.0,,,14.0,0.0,23744.0,43.1,23.0,w,6815.28,6815.28,29497.2,29497.2,23184.72,6312.48,0.0,0.0,0.0,Mar-2019,1017.92,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,47980.0,1.0,2.0,0.0,1.0,14.0,24236.0,41.0,3.0,5.0,10307.0,42.0,55100.0,1.0,0.0,1.0,6.0,3427.0,27856.0,46.0,0.0,0.0,60.0,72.0,1.0,1.0,0.0,1.0,,7.0,,0.0,5.0,5.0,9.0,11.0,3.0,12.0,20.0,5.0,14.0,0.0,0.0,0.0,3.0,100.0,11.1,0.0,0.0,114216.0,47980.0,51600.0,59116.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413922,,25000.0,25000.0,25000.0, 60 months,12.79,566.15,C,C1,Operations Manager,4 years,MORTGAGE,100000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413922,,home_improvement,Home improvement,531xx,WI,15.29,0.0,Dec-2004,725.0,729.0,1.0,59.0,,17.0,0.0,6872.0,6.8,33.0,f,14878.59,14878.59,16400.59,16400.59,10121.41,6279.18,0.0,0.0,0.0,Mar-2019,566.15,Apr-2019,Mar-2019,704.0,700.0,0.0,59.0,1.0,Joint App,150000.0,12.16,Not Verified,0.0,0.0,309800.0,1.0,2.0,2.0,2.0,2.0,37083.0,94.0,0.0,4.0,2918.0,31.0,101500.0,2.0,3.0,7.0,8.0,18224.0,62159.0,7.6,0.0,0.0,117.0,141.0,14.0,2.0,2.0,24.0,59.0,2.0,59.0,1.0,3.0,6.0,8.0,14.0,5.0,13.0,23.0,6.0,17.0,0.0,0.0,0.0,2.0,97.0,0.0,0.0,0.0,411677.0,44113.0,67300.0,39269.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90320243,,8000.0,8000.0,8000.0, 36 months,21.49,303.42,D,D5,Hha ,6 years,RENT,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320243,,credit_card,Credit card refinancing,112xx,NY,25.21,1.0,Jun-2011,680.0,684.0,1.0,17.0,,10.0,0.0,4964.0,41.7,11.0,f,0.0,0.0,10786.8375677653,10786.84,8000.0,2786.84,0.0,0.0,0.0,Mar-2019,2300.63,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,20974.0,3.0,2.0,2.0,3.0,3.0,16010.0,89.0,2.0,4.0,697.0,70.0,11900.0,1.0,1.0,2.0,7.0,2097.0,3972.0,27.8,0.0,0.0,18.0,63.0,1.0,1.0,0.0,1.0,,6.0,17.0,0.0,3.0,7.0,3.0,3.0,3.0,8.0,8.0,7.0,10.0,0.0,0.0,0.0,4.0,90.9,33.3,0.0,0.0,29905.0,20974.0,5500.0,18005.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90078227,,29900.0,29900.0,29900.0, 36 months,17.99,1080.81,D,D2,office manager,3 years,OWN,65000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90078227,,debt_consolidation,Debt consolidation,221xx,VA,21.16,0.0,Aug-1985,670.0,674.0,2.0,,58.0,22.0,1.0,18169.0,65.4,32.0,f,7131.51,7131.51,31343.49,31343.49,22768.49,8575.0,0.0,0.0,0.0,Mar-2019,1080.81,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,49309.0,4.0,1.0,1.0,1.0,4.0,31140.0,97.0,4.0,6.0,9612.0,82.0,27800.0,1.0,0.0,5.0,7.0,3082.0,2198.0,87.2,0.0,0.0,48.0,373.0,2.0,2.0,0.0,6.0,,1.0,,0.0,4.0,11.0,5.0,10.0,2.0,21.0,30.0,11.0,21.0,0.0,0.0,0.0,5.0,100.0,60.0,1.0,0.0,60084.0,49309.0,17200.0,32284.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427586,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,Production specialist,10+ years,RENT,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427586,,debt_consolidation,Debt consolidation,852xx,AZ,18.21,1.0,Jan-1992,665.0,669.0,0.0,7.0,,10.0,0.0,7905.0,54.9,21.0,f,0.0,0.0,8419.2345654474,8419.23,7000.0,1419.23,0.0,0.0,0.0,Aug-2018,154.01,,Mar-2019,724.0,720.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,21700.0,1.0,2.0,2.0,2.0,7.0,13795.0,86.0,2.0,4.0,1207.0,71.0,14400.0,0.0,0.0,1.0,6.0,2170.0,2250.0,61.2,0.0,0.0,296.0,34.0,2.0,2.0,0.0,2.0,,12.0,7.0,2.0,4.0,7.0,4.0,4.0,12.0,8.0,9.0,7.0,10.0,0.0,0.0,0.0,4.0,85.7,75.0,0.0,0.0,30468.0,21700.0,5800.0,16068.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571114,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Director Business Development ,< 1 year,RENT,180000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571114,,debt_consolidation,Debt consolidation,902xx,CA,21.04,0.0,Jan-2002,665.0,669.0,0.0,,87.0,11.0,3.0,68394.0,95.5,16.0,f,0.0,0.0,10996.470055795,10996.47,10000.0,996.47,0.0,0.0,0.0,May-2017,8837.58,,Mar-2019,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,112210.0,0.0,2.0,0.0,1.0,24.0,43816.0,66.0,0.0,3.0,14336.0,82.0,71600.0,0.0,2.0,0.0,4.0,10201.0,2031.0,95.8,0.0,0.0,176.0,150.0,18.0,18.0,0.0,18.0,,20.0,,0.0,7.0,8.0,7.0,7.0,7.0,9.0,9.0,8.0,11.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,3.0,137639.0,112210.0,48600.0,66039.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90114693,,6500.0,6500.0,6500.0, 36 months,11.49,214.32,B,B5,,,RENT,40000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90114693,,debt_consolidation,Debt consolidation,112xx,NY,9.6,0.0,Nov-2002,660.0,664.0,0.0,,70.0,13.0,1.0,5375.0,23.8,18.0,w,1444.12,1444.12,6211.13,6211.13,5055.88,1155.25,0.0,0.0,0.0,Mar-2019,214.32,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,5375.0,1.0,0.0,0.0,0.0,,0.0,,3.0,8.0,1420.0,24.0,22600.0,0.0,0.0,1.0,8.0,413.0,9312.0,27.3,0.0,0.0,,166.0,6.0,6.0,0.0,6.0,,10.0,,0.0,5.0,12.0,6.0,7.0,0.0,13.0,18.0,12.0,13.0,0.0,0.0,0.0,3.0,100.0,0.0,1.0,0.0,22600.0,5375.0,12800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521136,,28000.0,28000.0,28000.0, 36 months,15.59,978.74,C,C5,TABLE GAMES,10+ years,OWN,83000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521136,,car,Car financing,480xx,MI,19.32,0.0,Dec-1999,670.0,674.0,1.0,35.0,,9.0,0.0,15654.0,82.0,33.0,f,6554.77,6554.77,28380.73,28380.73,21445.23,6935.5,0.0,0.0,0.0,Mar-2019,978.74,Apr-2019,Dec-2018,599.0,595.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,246649.0,1.0,1.0,0.0,0.0,39.0,24773.0,,3.0,4.0,5591.0,82.0,19100.0,1.0,0.0,2.0,4.0,27405.0,397.0,97.1,0.0,0.0,201.0,136.0,2.0,2.0,3.0,11.0,60.0,2.0,60.0,4.0,4.0,7.0,4.0,11.0,12.0,7.0,18.0,7.0,9.0,0.0,0.0,0.0,3.0,81.3,100.0,0.0,0.0,273953.0,40427.0,13900.0,43953.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100511,,32625.0,32625.0,32625.0, 36 months,17.99,1179.31,D,D2,sales,8 years,RENT,68000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100511,,debt_consolidation,Debt consolidation,953xx,CA,27.93,0.0,May-2004,700.0,704.0,1.0,31.0,109.0,7.0,1.0,15059.0,47.1,25.0,f,0.0,0.0,20788.99,20788.99,11513.44,6339.24,0.0,2936.31,528.535800026,Jan-2018,1179.31,,Jul-2018,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,42757.0,1.0,2.0,0.0,1.0,14.0,27698.0,60.0,1.0,1.0,3048.0,55.0,32000.0,0.0,2.0,1.0,2.0,6108.0,16677.0,31.4,0.0,0.0,148.0,119.0,2.0,2.0,1.0,2.0,36.0,1.0,31.0,0.0,4.0,5.0,4.0,11.0,9.0,5.0,15.0,5.0,7.0,0.0,0.0,0.0,1.0,80.0,25.0,1.0,0.0,78156.0,42757.0,24300.0,46156.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412571,,4500.0,4500.0,4500.0, 36 months,18.99,164.93,D,D3,,,OWN,13308.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412571,,debt_consolidation,Debt consolidation,992xx,WA,19.03,0.0,May-1997,670.0,674.0,0.0,,66.0,9.0,1.0,7508.0,29.2,19.0,w,0.0,0.0,2943.25,2943.25,1934.17,1009.08,0.0,0.0,0.0,Mar-2018,164.93,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,19861.0,0.0,1.0,0.0,0.0,108.0,12353.0,58.0,0.0,4.0,3480.0,42.0,25700.0,0.0,3.0,0.0,4.0,2207.0,7204.0,44.2,0.0,0.0,123.0,232.0,14.0,14.0,1.0,14.0,,19.0,,0.0,3.0,6.0,4.0,6.0,4.0,8.0,13.0,6.0,9.0,0.0,0.0,0.0,0.0,100.0,25.0,1.0,0.0,47081.0,19861.0,12900.0,21381.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067546,,36000.0,36000.0,35950.0, 36 months,13.99,1230.22,C,C3,Lead Technical Account Specialist,10+ years,MORTGAGE,103000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067546,,debt_consolidation,Debt consolidation,274xx,NC,20.81,1.0,Aug-1997,690.0,694.0,0.0,12.0,,20.0,0.0,48263.0,74.0,36.0,f,0.0,0.0,43515.5180144388,43455.08,36000.0,7515.52,0.0,0.0,0.0,Dec-2018,12788.0,,Dec-2018,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,269377.0,1.0,4.0,0.0,1.0,22.0,41736.0,58.0,1.0,3.0,9063.0,66.0,65200.0,2.0,0.0,0.0,4.0,14178.0,8728.0,83.0,0.0,0.0,229.0,199.0,2.0,2.0,1.0,2.0,,22.0,12.0,0.0,7.0,9.0,8.0,9.0,15.0,15.0,20.0,9.0,20.0,0.0,0.0,0.0,1.0,97.1,62.5,0.0,0.0,334538.0,89999.0,51200.0,71681.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90131367,,21000.0,21000.0,20950.0, 60 months,11.49,461.74,B,B5,Office Administrator,10+ years,MORTGAGE,47000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131367,,debt_consolidation,Debt consolidation,631xx,MO,17.77,0.0,Jul-2000,760.0,764.0,1.0,,,6.0,0.0,2954.0,40.5,26.0,f,0.0,0.0,24016.999804195497,23959.82,21000.0,3017.0,0.0,0.0,0.0,Feb-2018,17104.3,,Jun-2018,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,183684.0,1.0,2.0,1.0,2.0,3.0,19729.0,52.0,0.0,0.0,2679.0,50.0,7300.0,4.0,1.0,7.0,3.0,30614.0,321.0,89.3,0.0,0.0,191.0,194.0,70.0,3.0,6.0,80.0,,1.0,,0.0,1.0,2.0,1.0,3.0,12.0,3.0,8.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,210918.0,22683.0,3000.0,37680.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90162230,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Registered Nurse,< 1 year,RENT,62000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90162230,,major_purchase,Major purchase,335xx,FL,6.12,1.0,May-2001,675.0,679.0,0.0,12.0,,8.0,0.0,8614.0,59.8,12.0,f,0.0,0.0,11896.3730875381,11896.37,10000.0,1896.37,0.0,0.0,0.0,Sep-2018,4439.04,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,13145.0,0.0,2.0,0.0,1.0,23.0,4531.0,74.0,2.0,4.0,5698.0,64.0,14400.0,2.0,0.0,3.0,5.0,1878.0,498.0,93.8,0.0,0.0,130.0,184.0,8.0,8.0,0.0,8.0,,11.0,,0.0,2.0,4.0,3.0,3.0,5.0,6.0,7.0,4.0,8.0,0.0,0.0,0.0,2.0,91.7,100.0,0.0,0.0,20565.0,13145.0,8000.0,6165.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521151,,13000.0,13000.0,13000.0, 60 months,8.99,269.8,B,B1,route driver,9 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521151,,debt_consolidation,Debt consolidation,563xx,MN,5.54,0.0,Sep-1999,755.0,759.0,1.0,78.0,,8.0,0.0,3312.0,11.0,22.0,f,0.0,0.0,13785.1082133895,13785.11,13000.0,785.11,0.0,0.0,0.0,Jun-2017,11903.0,,Mar-2019,799.0,795.0,0.0,,1.0,Individual,,,,0.0,0.0,118558.0,1.0,1.0,0.0,0.0,35.0,452.0,9.0,1.0,2.0,2590.0,11.0,30200.0,0.0,0.0,1.0,2.0,14820.0,20949.0,11.2,0.0,0.0,204.0,138.0,1.0,1.0,1.0,53.0,,1.0,78.0,0.0,2.0,3.0,4.0,8.0,7.0,6.0,14.0,3.0,8.0,0.0,0.0,0.0,1.0,95.5,0.0,0.0,0.0,163800.0,3764.0,23600.0,4800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414630,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Assistant Branch Manager,7 years,RENT,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414630,,debt_consolidation,Debt consolidation,114xx,NY,14.07,1.0,Apr-2000,665.0,669.0,1.0,7.0,,13.0,0.0,8891.0,46.1,28.0,f,0.0,0.0,11382.6098600735,11382.61,10000.0,1382.61,0.0,0.0,0.0,May-2018,2842.98,,Jan-2019,704.0,700.0,0.0,46.0,1.0,Individual,,,,0.0,613.0,17562.0,1.0,1.0,1.0,1.0,7.0,8671.0,81.0,2.0,3.0,3308.0,58.0,19300.0,1.0,0.0,4.0,4.0,1464.0,7174.0,54.9,0.0,0.0,7.0,197.0,4.0,4.0,0.0,4.0,68.0,4.0,7.0,2.0,6.0,8.0,8.0,13.0,1.0,12.0,26.0,8.0,13.0,0.0,0.0,0.0,3.0,81.5,12.5,0.0,0.0,30064.0,17562.0,15900.0,10764.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412931,,22500.0,22500.0,22500.0, 36 months,16.99,802.08,D,D1,Engineering Tech,3 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412931,,home_improvement,Home improvement,853xx,AZ,2.45,0.0,Sep-2007,725.0,729.0,0.0,38.0,,5.0,0.0,1060.0,11.5,8.0,f,0.0,0.0,28225.816155661098,28225.82,22500.0,5725.82,0.0,0.0,0.0,Oct-2018,9650.56,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,184550.0,2.0,2.0,0.0,0.0,72.0,5066.0,85.0,1.0,1.0,1060.0,40.0,9200.0,2.0,0.0,2.0,2.0,36910.0,4640.0,18.6,0.0,0.0,108.0,107.0,5.0,5.0,1.0,107.0,38.0,5.0,38.0,0.0,1.0,1.0,1.0,1.0,5.0,2.0,2.0,1.0,5.0,0.0,0.0,0.0,2.0,85.7,0.0,0.0,0.0,194463.0,6126.0,5700.0,5990.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415753,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Supervisor,10+ years,MORTGAGE,90000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415753,,credit_card,Credit card refinancing,802xx,CO,14.84,0.0,Apr-1995,665.0,669.0,0.0,53.0,64.0,10.0,1.0,15428.0,73.8,18.0,f,2271.65,2271.65,9832.5,9832.5,7728.35,2104.15,0.0,0.0,0.0,Mar-2019,339.31,Apr-2019,Mar-2019,639.0,635.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,36198.0,3.0,3.0,3.0,3.0,3.0,20770.0,92.0,1.0,2.0,7219.0,83.0,20900.0,2.0,1.0,3.0,5.0,3620.0,1482.0,90.8,0.0,0.0,257.0,206.0,3.0,3.0,0.0,3.0,62.0,4.0,53.0,1.0,5.0,7.0,5.0,8.0,5.0,7.0,11.0,7.0,10.0,0.0,0.0,0.0,4.0,83.3,60.0,0.0,0.0,43507.0,36198.0,16100.0,22607.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90278515,,29900.0,29900.0,29850.0, 36 months,17.99,1080.81,D,D2,Manager,10+ years,RENT,65000.0,Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90278515,,debt_consolidation,Debt consolidation,440xx,OH,16.32,1.0,Nov-1989,685.0,689.0,0.0,23.0,,7.0,0.0,11333.0,44.6,16.0,f,8091.02,8077.49,30232.8,30182.24,21808.98,8423.82,0.0,0.0,0.0,Feb-2019,1080.81,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,24134.0,0.0,1.0,0.0,1.0,14.0,12801.0,80.0,0.0,0.0,3552.0,58.0,25400.0,1.0,0.0,0.0,1.0,3448.0,13467.0,45.7,0.0,0.0,124.0,322.0,97.0,14.0,0.0,157.0,23.0,14.0,23.0,0.0,5.0,5.0,5.0,10.0,4.0,6.0,12.0,5.0,7.0,0.0,0.0,0.0,0.0,87.5,80.0,0.0,0.0,41386.0,24134.0,24800.0,15986.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90180619,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Project manager,< 1 year,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90180619,,debt_consolidation,Debt consolidation,207xx,MD,19.15,2.0,Aug-2007,675.0,679.0,0.0,23.0,,7.0,0.0,9893.0,45.6,11.0,f,3539.6,3539.6,15492.72,15492.72,11460.4,4032.32,0.0,0.0,0.0,Mar-2019,534.72,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,29111.0,0.0,1.0,0.0,0.0,28.0,19218.0,67.0,1.0,1.0,5914.0,58.0,21700.0,0.0,0.0,1.0,1.0,4159.0,6821.0,58.7,0.0,0.0,28.0,109.0,9.0,9.0,0.0,9.0,,7.0,23.0,0.0,3.0,4.0,3.0,5.0,1.0,6.0,10.0,4.0,7.0,0.0,0.0,0.0,1.0,72.7,33.3,0.0,0.0,50506.0,29111.0,16500.0,28806.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130194,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,,,OWN,26000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130194,,home_improvement,Home improvement,765xx,TX,30.56,0.0,Nov-1998,670.0,674.0,1.0,26.0,64.0,16.0,1.0,3946.0,16.4,36.0,f,0.0,0.0,5664.4881353231,5664.49,5000.0,664.49,0.0,0.0,0.0,Jan-2018,3316.46,,Mar-2019,679.0,675.0,0.0,26.0,1.0,Individual,,,,0.0,0.0,22717.0,4.0,1.0,1.0,2.0,8.0,18771.0,89.0,8.0,12.0,1077.0,50.0,24000.0,1.0,0.0,3.0,14.0,1514.0,10065.0,22.0,0.0,0.0,128.0,202.0,1.0,1.0,1.0,6.0,,5.0,26.0,1.0,5.0,9.0,6.0,11.0,10.0,15.0,25.0,9.0,16.0,0.0,0.0,0.0,9.0,97.0,0.0,1.0,0.0,45118.0,22717.0,12900.0,21118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88896392,,9000.0,9000.0,9000.0, 36 months,15.59,314.6,C,C5,RN,2 years,RENT,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88896392,,debt_consolidation,Debt consolidation,897xx,NV,26.2,0.0,Jan-2010,680.0,684.0,2.0,,,17.0,0.0,17641.0,39.0,18.0,f,0.0,0.0,11173.0353124495,11173.04,9000.0,2173.04,0.0,0.0,0.0,Mar-2019,1772.04,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,71873.0,3.0,5.0,0.0,1.0,14.0,54232.0,83.0,5.0,6.0,8023.0,55.0,45200.0,7.0,0.0,7.0,7.0,4228.0,17378.0,39.0,0.0,0.0,68.0,80.0,1.0,1.0,0.0,1.0,,2.0,,0.0,3.0,7.0,6.0,6.0,6.0,12.0,12.0,7.0,17.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,109623.0,71873.0,28500.0,64423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271438,,15175.0,15175.0,15175.0, 60 months,17.99,385.27,D,D2,correctional officer,10+ years,MORTGAGE,98600.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271438,,debt_consolidation,Debt consolidation,995xx,AK,20.86,0.0,Aug-2006,705.0,709.0,2.0,,,13.0,0.0,10304.0,48.6,23.0,w,0.0,0.0,16694.2974029536,16694.3,15175.0,1519.3,0.0,0.0,0.0,Apr-2017,14783.12,,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,309143.0,1.0,3.0,3.0,6.0,4.0,69893.0,93.0,0.0,4.0,5463.0,70.0,21200.0,6.0,14.0,3.0,11.0,25762.0,137.0,97.6,0.0,0.0,121.0,116.0,13.0,4.0,1.0,13.0,,2.0,,0.0,1.0,5.0,1.0,2.0,12.0,9.0,10.0,5.0,13.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,336538.0,80197.0,5600.0,80196.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441191,,20000.0,20000.0,20000.0, 36 months,14.49,688.33,C,C4,Owner,8 years,RENT,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441191,,debt_consolidation,Debt consolidation,061xx,CT,14.39,0.0,Dec-1998,695.0,699.0,1.0,,,5.0,0.0,31350.0,83.6,21.0,f,0.0,0.0,21700.4220547207,21700.42,20000.0,1700.42,0.0,0.0,0.0,May-2017,17586.54,,May-2017,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,36688.0,0.0,0.0,0.0,0.0,125.0,0.0,,0.0,1.0,20941.0,82.0,37500.0,0.0,0.0,1.0,1.0,7338.0,2227.0,93.0,0.0,0.0,125.0,213.0,19.0,19.0,3.0,19.0,,6.0,,0.0,3.0,4.0,3.0,7.0,1.0,4.0,15.0,4.0,5.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,44879.0,36688.0,32000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90170498,,5000.0,5000.0,5000.0, 36 months,13.49,169.66,C,C2,Referral coordinator ,10+ years,MORTGAGE,35500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90170498,,medical,Medical expenses,629xx,IL,29.85,1.0,Mar-1996,660.0,664.0,0.0,11.0,117.0,6.0,1.0,17153.0,90.3,29.0,f,1135.65,1135.65,4916.39,4916.39,3864.35,1052.04,0.0,0.0,0.0,Mar-2019,169.66,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,98888.0,1.0,1.0,1.0,1.0,5.0,27304.0,96.0,1.0,3.0,7423.0,94.0,19000.0,4.0,3.0,6.0,4.0,19778.0,77.0,99.0,0.0,0.0,116.0,246.0,8.0,5.0,1.0,23.0,,5.0,,0.0,1.0,3.0,1.0,7.0,13.0,4.0,15.0,3.0,6.0,0.0,0.0,0.0,2.0,89.7,100.0,1.0,0.0,126709.0,44457.0,7500.0,28509.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90222118,,16200.0,16200.0,16200.0, 60 months,12.79,366.87,C,C1,Tax senior,2 years,RENT,52000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90222118,,credit_card,Credit card refinancing,146xx,NY,19.9,0.0,May-2008,715.0,719.0,0.0,29.0,,8.0,0.0,14680.0,53.4,13.0,f,9641.17,9641.17,10691.03,10691.03,6558.83,4132.2,0.0,0.0,0.0,Mar-2019,366.87,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,39039.0,0.0,2.0,0.0,0.0,26.0,24359.0,76.0,1.0,1.0,12034.0,66.0,27500.0,0.0,0.0,0.0,1.0,4880.0,10320.0,58.7,0.0,0.0,43.0,100.0,8.0,8.0,0.0,8.0,29.0,,29.0,0.0,2.0,2.0,4.0,9.0,2.0,6.0,11.0,2.0,8.0,0.0,0.0,0.0,1.0,92.3,25.0,0.0,0.0,59624.0,39039.0,25000.0,32124.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410106,,18000.0,18000.0,18000.0, 36 months,17.99,650.66,D,D2,Special education teacher,1 year,MORTGAGE,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410106,,debt_consolidation,Debt consolidation,025xx,MA,19.16,0.0,Oct-2005,665.0,669.0,2.0,,,16.0,0.0,6373.0,45.5,20.0,f,0.0,0.0,20549.4038941139,20549.4,18000.0,2549.4,0.0,0.0,0.0,Aug-2017,14711.45,,Aug-2017,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,81467.0,1.0,6.0,1.0,2.0,12.0,75094.0,113.0,2.0,6.0,1803.0,101.0,14000.0,2.0,0.0,3.0,8.0,5092.0,4931.0,52.6,0.0,0.0,102.0,131.0,6.0,6.0,0.0,6.0,,0.0,,0.0,5.0,9.0,5.0,6.0,9.0,10.0,11.0,9.0,16.0,0.0,0.0,0.0,3.0,100.0,20.0,0.0,0.0,80450.0,81467.0,10400.0,66450.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427258,,35000.0,35000.0,34750.0, 60 months,25.69,1041.51,F,F1,production operator,10+ years,MORTGAGE,85000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427258,,debt_consolidation,Debt consolidation,760xx,TX,27.7,1.0,Jun-2004,685.0,689.0,2.0,21.0,,11.0,0.0,4134.0,29.7,26.0,f,0.0,0.0,40249.4998654484,39962.0,35000.0,5249.5,0.0,0.0,0.0,May-2017,34025.42,,Oct-2018,539.0,535.0,0.0,,1.0,Joint App,111600.0,21.88,Not Verified,0.0,0.0,250403.0,4.0,3.0,3.0,7.0,7.0,91259.0,100.0,4.0,5.0,2786.0,68.0,13900.0,6.0,2.0,6.0,13.0,22764.0,7366.0,35.9,0.0,0.0,147.0,140.0,1.0,1.0,2.0,2.0,,1.0,,0.0,4.0,4.0,6.0,8.0,14.0,7.0,10.0,4.0,11.0,0.0,0.0,0.0,8.0,92.3,33.3,0.0,0.0,277020.0,95393.0,11500.0,107120.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301545,,25000.0,25000.0,25000.0, 36 months,16.99,891.2,D,D1,Service tech,5 years,RENT,105000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301545,,debt_consolidation,Debt consolidation,770xx,TX,7.33,6.0,Oct-1999,680.0,684.0,0.0,23.0,,12.0,0.0,12561.0,35.1,17.0,f,5899.33,5899.33,25986.38,25986.38,19100.67,6885.71,0.0,0.0,0.0,Mar-2019,891.2,Apr-2019,Mar-2019,679.0,675.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,36079.0,2.0,6.0,0.0,0.0,90.0,23518.0,115.0,3.0,3.0,10071.0,64.0,35800.0,0.0,0.0,0.0,3.0,3007.0,15239.0,45.2,0.0,0.0,203.0,91.0,0.0,0.0,0.0,3.0,77.0,14.0,77.0,7.0,4.0,4.0,4.0,5.0,7.0,6.0,10.0,4.0,12.0,0.0,0.0,6.0,3.0,76.9,25.0,0.0,0.0,56253.0,36079.0,27800.0,20453.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90149378,,7500.0,7500.0,7500.0, 36 months,13.49,254.48,C,C2,Project Manager ,3 years,OWN,92500.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90149378,,home_improvement,Home improvement,071xx,NJ,13.06,2.0,Nov-2000,665.0,669.0,0.0,17.0,,10.0,0.0,12756.0,78.7,14.0,f,0.0,0.0,2030.22,2030.22,1416.12,614.1,0.0,0.0,0.0,Jun-2017,254.48,,Feb-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,28978.0,0.0,2.0,1.0,2.0,10.0,16222.0,59.0,1.0,2.0,5503.0,66.0,16200.0,2.0,3.0,2.0,4.0,3622.0,2766.0,81.2,0.0,0.0,33.0,190.0,12.0,10.0,0.0,24.0,17.0,3.0,17.0,0.0,5.0,6.0,7.0,9.0,3.0,8.0,11.0,6.0,10.0,0.0,0.0,0.0,2.0,78.6,40.0,0.0,0.0,43792.0,28978.0,14700.0,27592.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90112071,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,,5 years,OWN,74000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90112071,,home_improvement,Home improvement,190xx,PA,2.4,0.0,Jun-2012,715.0,719.0,3.0,,,5.0,0.0,1380.0,11.1,6.0,f,685.24,685.24,2970.75,2970.75,2314.76,655.99,0.0,0.0,0.0,Mar-2019,102.52,Apr-2019,Mar-2019,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,274011.0,3.0,0.0,0.0,0.0,51.0,0.0,,2.0,4.0,247.0,11.0,12400.0,2.0,0.0,5.0,5.0,54802.0,8903.0,3.2,0.0,0.0,51.0,14.0,3.0,3.0,1.0,3.0,,0.0,,0.0,2.0,3.0,3.0,3.0,1.0,4.0,4.0,3.0,5.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,287229.0,1380.0,9200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90252180,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,Office Manager,10+ years,RENT,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90252180,,debt_consolidation,Debt consolidation,062xx,CT,18.84,1.0,Mar-2001,665.0,669.0,3.0,18.0,87.0,10.0,1.0,6060.0,58.3,18.0,f,1127.0,1127.0,4888.41,4888.41,3873.0,1015.41,0.0,0.0,0.0,Mar-2019,167.97,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,868.0,30767.0,3.0,1.0,2.0,2.0,2.0,24707.0,100.0,2.0,4.0,2138.0,88.0,10400.0,3.0,1.0,9.0,6.0,3077.0,314.0,92.7,0.0,0.0,123.0,186.0,5.0,2.0,0.0,23.0,36.0,2.0,18.0,0.0,2.0,8.0,2.0,6.0,5.0,9.0,13.0,8.0,10.0,0.0,0.0,0.0,4.0,88.9,100.0,1.0,0.0,35107.0,30767.0,4300.0,24707.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89834185,,25000.0,25000.0,25000.0, 36 months,15.59,873.88,C,C5,Sr. Buyer ,3 years,RENT,77000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89834185,,credit_card,Credit card refinancing,024xx,MA,16.44,0.0,Jun-2006,680.0,684.0,0.0,,,8.0,0.0,31740.0,96.2,16.0,f,0.0,0.0,29556.603838518902,29556.6,25000.0,4556.6,0.0,0.0,0.0,Mar-2018,15509.56,,Mar-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,37690.0,1.0,5.0,0.0,0.0,74.0,5950.0,35.0,1.0,2.0,24836.0,75.0,33000.0,0.0,1.0,0.0,2.0,4711.0,1260.0,96.2,0.0,0.0,123.0,96.0,4.0,4.0,0.0,4.0,,,,0.0,3.0,3.0,3.0,3.0,13.0,3.0,3.0,3.0,8.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,50172.0,37690.0,33000.0,17172.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412122,,11500.0,11500.0,11500.0, 36 months,18.99,421.49,D,D3,,,RENT,28752.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412122,,debt_consolidation,Debt consolidation,234xx,VA,19.7,0.0,Jun-1997,705.0,709.0,0.0,68.0,,10.0,0.0,6855.0,49.7,18.0,f,2772.03,2772.03,12211.08,12211.08,8727.97,3483.11,0.0,0.0,0.0,Mar-2019,421.49,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,20646.0,0.0,1.0,0.0,1.0,14.0,13791.0,84.0,0.0,0.0,4488.0,69.0,13800.0,0.0,1.0,0.0,1.0,2294.0,4145.0,62.3,0.0,0.0,92.0,231.0,34.0,14.0,0.0,45.0,,,68.0,0.0,5.0,5.0,6.0,10.0,2.0,9.0,15.0,5.0,10.0,0.0,0.0,0.0,0.0,94.4,16.7,0.0,0.0,30157.0,20646.0,11000.0,16357.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90210347,,14000.0,14000.0,14000.0, 60 months,18.99,363.1,D,D3,IT Support Analyst,2 years,MORTGAGE,80000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90210347,,debt_consolidation,Debt consolidation,328xx,FL,22.65,1.0,Oct-2004,675.0,679.0,0.0,18.0,,37.0,0.0,17867.0,33.1,57.0,f,8841.62,8841.62,10515.13,10515.13,5158.38,5356.75,0.0,0.0,0.0,Mar-2019,363.1,Apr-2019,Mar-2019,639.0,635.0,0.0,18.0,1.0,Individual,,,,0.0,0.0,242359.0,2.0,19.0,0.0,1.0,24.0,109953.0,89.0,3.0,5.0,5630.0,72.0,53900.0,0.0,1.0,0.0,6.0,6925.0,21286.0,45.3,0.0,0.0,142.0,143.0,0.0,0.0,4.0,4.0,,,,3.0,8.0,9.0,13.0,16.0,22.0,17.0,31.0,9.0,37.0,0.0,0.0,1.0,3.0,94.7,16.7,0.0,0.0,351812.0,127820.0,38900.0,123512.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221688,,7200.0,7200.0,7200.0, 36 months,15.59,251.68,C,C5,Customer Service Representative,1 year,RENT,32000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221688,,credit_card,Credit card refinancing,554xx,MN,27.16,0.0,Jan-2003,665.0,669.0,1.0,,64.0,14.0,2.0,8587.0,62.7,29.0,f,0.0,0.0,1841.01,1841.01,644.99,355.49,0.0,840.53,151.2954,Feb-2017,251.68,,Aug-2017,564.0,560.0,0.0,,1.0,Individual,,,,0.0,0.0,51421.0,0.0,8.0,0.0,4.0,14.0,42834.0,108.0,4.0,7.0,4693.0,96.0,13700.0,0.0,5.0,2.0,11.0,3673.0,175.0,97.2,0.0,0.0,164.0,67.0,7.0,7.0,0.0,19.0,,2.0,,0.0,2.0,5.0,2.0,5.0,18.0,6.0,11.0,5.0,14.0,0.0,0.0,0.0,4.0,100.0,100.0,2.0,0.0,53423.0,51421.0,6300.0,39723.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414499,,18400.0,18400.0,18400.0, 36 months,16.99,655.92,D,D1,Owner,6 years,MORTGAGE,40000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414499,,debt_consolidation,Debt consolidation,728xx,AR,15.39,0.0,May-2006,710.0,714.0,1.0,,,10.0,0.0,14720.0,37.2,15.0,f,0.0,0.0,20774.8215229666,20774.82,18400.0,2374.82,0.0,0.0,0.0,Aug-2017,14888.91,,Jun-2018,714.0,710.0,0.0,,1.0,Individual,,,,0.0,3121.0,45184.0,0.0,1.0,1.0,1.0,8.0,5314.0,87.0,1.0,1.0,6136.0,44.0,39600.0,0.0,1.0,4.0,2.0,4518.0,17965.0,34.4,0.0,0.0,87.0,117.0,12.0,8.0,2.0,12.0,,1.0,,0.0,3.0,5.0,6.0,7.0,2.0,8.0,11.0,5.0,10.0,0.0,0.0,0.0,2.0,100.0,16.7,0.0,0.0,77762.0,20034.0,27400.0,6129.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90172039,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,Lab Assoc,10+ years,OWN,46000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90172039,,vacation,Vacation,150xx,PA,27.34,0.0,Jul-2004,690.0,694.0,1.0,42.0,,14.0,0.0,42536.0,12.2,28.0,f,1652.91,1652.91,7230.05,7230.05,5347.09,1882.96,0.0,0.0,0.0,Mar-2019,249.54,Apr-2019,Mar-2019,529.0,525.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,116763.0,9.0,2.0,4.0,4.0,2.0,24144.0,80.0,11.0,13.0,2074.0,52.0,61300.0,1.0,2.0,6.0,18.0,8340.0,16294.0,13.8,0.0,0.0,146.0,75.0,0.0,0.0,1.0,4.0,59.0,2.0,59.0,4.0,5.0,6.0,7.0,9.0,12.0,11.0,15.0,6.0,14.0,0.0,0.0,0.0,15.0,82.1,0.0,0.0,0.0,142546.0,66680.0,18900.0,30246.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90124427,,18000.0,18000.0,18000.0, 36 months,13.49,610.75,C,C2,district manager,10+ years,MORTGAGE,135000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90124427,,major_purchase,Major purchase,029xx,RI,29.99,0.0,Dec-2003,690.0,694.0,1.0,,,17.0,0.0,49453.0,59.9,31.0,f,0.0,0.0,19287.319152495802,19287.32,18000.0,1287.32,0.0,0.0,0.0,May-2017,157.31,,Dec-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,393691.0,2.0,5.0,1.0,3.0,2.0,84145.0,53.0,2.0,2.0,14557.0,57.0,82500.0,3.0,3.0,2.0,5.0,24606.0,31322.0,60.3,0.0,0.0,121.0,153.0,6.0,2.0,4.0,6.0,,2.0,,0.0,8.0,9.0,8.0,11.0,11.0,10.0,16.0,9.0,17.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,516535.0,133598.0,78900.0,115085.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89968547,,16000.0,16000.0,16000.0, 36 months,16.99,570.37,D,D1,Systems Analyst,7 years,MORTGAGE,81000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89968547,,debt_consolidation,Debt consolidation,460xx,IN,26.25,0.0,May-1996,680.0,684.0,2.0,26.0,25.0,17.0,2.0,8300.0,32.0,55.0,f,0.0,0.0,19996.1245427923,19996.12,16000.0,3996.12,0.0,0.0,0.0,Oct-2018,19.1,,Mar-2019,644.0,640.0,0.0,32.0,1.0,Individual,,,,0.0,0.0,186253.0,5.0,5.0,4.0,6.0,2.0,46206.0,84.0,2.0,5.0,3823.0,68.0,25900.0,4.0,5.0,6.0,11.0,10956.0,9682.0,36.7,0.0,0.0,212.0,244.0,2.0,2.0,3.0,2.0,,2.0,,7.0,4.0,8.0,6.0,10.0,30.0,11.0,22.0,8.0,17.0,0.0,0.0,0.0,6.0,83.3,16.7,0.0,2.0,219199.0,54506.0,15300.0,54801.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90276664,,18000.0,18000.0,18000.0, 60 months,8.99,373.57,B,B1,Corrections Officer,10+ years,MORTGAGE,106000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90276664,,home_improvement,Home improvement,564xx,MN,9.26,0.0,Sep-2001,730.0,734.0,0.0,,,9.0,0.0,5056.0,42.1,16.0,f,0.0,0.0,10731.34,10731.34,2214.0,1139.14,0.0,7378.2,1328.076,Jul-2017,373.57,,Aug-2018,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,143360.0,2.0,3.0,1.0,2.0,3.0,23767.0,75.0,1.0,1.0,4335.0,66.0,12000.0,1.0,1.0,0.0,4.0,15929.0,5560.0,46.5,0.0,0.0,135.0,180.0,2.0,2.0,1.0,2.0,,13.0,,0.0,3.0,4.0,3.0,6.0,7.0,5.0,8.0,4.0,9.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,161165.0,28823.0,10400.0,31921.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2018,COMPLETE,Feb-2018,7378.2,45.0,1.0 +90191920,,20000.0,20000.0,20000.0, 36 months,12.79,671.86,C,C1,System Administrato,2 years,RENT,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191920,,debt_consolidation,Debt consolidation,799xx,TX,16.26,0.0,Oct-2000,660.0,664.0,0.0,38.0,,6.0,0.0,14490.0,52.5,20.0,f,0.0,0.0,21115.1276951798,21115.13,20000.0,1115.13,0.0,0.0,0.0,Mar-2017,18441.9,,Jul-2018,699.0,695.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,66929.0,0.0,1.0,1.0,1.0,7.0,52439.0,,2.0,3.0,4848.0,53.0,27600.0,0.0,2.0,0.0,4.0,11155.0,5391.0,58.8,0.0,0.0,127.0,191.0,7.0,7.0,0.0,27.0,,22.0,,1.0,2.0,3.0,3.0,4.0,8.0,5.0,11.0,3.0,6.0,0.0,0.0,0.0,3.0,90.0,33.3,0.0,0.0,82371.0,66929.0,13100.0,54771.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90122081,,7000.0,7000.0,7000.0, 36 months,13.99,239.21,C,C3,,,MORTGAGE,30000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90122081,,credit_card,Credit card refinancing,112xx,NY,11.76,0.0,Jan-1991,665.0,669.0,2.0,70.0,64.0,9.0,1.0,5924.0,31.1,26.0,f,0.0,0.0,8348.7498460761,8348.75,7000.0,1333.75,15.0000000857,0.0,0.0,Aug-2018,3115.78,,Jan-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,5924.0,3.0,0.0,0.0,0.0,135.0,0.0,,5.0,6.0,2687.0,31.0,16100.0,0.0,0.0,4.0,6.0,658.0,3602.0,48.8,0.0,0.0,135.0,307.0,1.0,1.0,0.0,5.0,,1.0,70.0,0.0,4.0,8.0,4.0,13.0,1.0,9.0,24.0,8.0,9.0,0.0,0.0,0.0,5.0,95.5,75.0,1.0,0.0,16100.0,5924.0,8300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90078040,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,Administrative Assistant,10+ years,MORTGAGE,64000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90078040,,debt_consolidation,Debt consolidation,453xx,OH,34.7,0.0,Apr-2003,690.0,694.0,3.0,25.0,,15.0,0.0,10663.0,43.9,35.0,f,0.0,0.0,17678.3501661063,17678.35,15000.0,2678.35,0.0,0.0,0.0,Mar-2018,12124.3,,Feb-2019,739.0,735.0,0.0,98.0,1.0,Individual,,,,0.0,0.0,190399.0,1.0,9.0,1.0,2.0,6.0,100743.0,97.0,2.0,2.0,4125.0,82.0,24300.0,9.0,2.0,15.0,4.0,12693.0,12020.0,37.7,0.0,0.0,145.0,161.0,7.0,6.0,4.0,7.0,98.0,1.0,98.0,1.0,3.0,4.0,4.0,9.0,18.0,5.0,13.0,4.0,15.0,0.0,0.0,0.0,3.0,85.3,0.0,0.0,0.0,217901.0,111406.0,19300.0,108333.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90177899,,11050.0,11050.0,11050.0, 36 months,17.99,399.43,D,D2,personal trainer,5 years,OWN,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90177899,,other,Other,451xx,OH,4.11,1.0,Aug-2007,670.0,674.0,0.0,22.0,,7.0,0.0,4116.0,22.7,13.0,f,2395.34,2395.34,11772.43,11772.43,8654.66,3117.77,0.0,0.0,0.0,Mar-2019,399.43,Apr-2019,Mar-2019,764.0,760.0,0.0,58.0,1.0,Individual,,,,0.0,19970.0,123768.0,0.0,0.0,0.0,0.0,98.0,0.0,,0.0,0.0,3691.0,23.0,18100.0,0.0,0.0,1.0,0.0,17681.0,3809.0,49.2,0.0,0.0,101.0,109.0,25.0,25.0,1.0,28.0,58.0,3.0,22.0,1.0,1.0,2.0,2.0,5.0,2.0,6.0,10.0,2.0,7.0,0.0,0.0,0.0,0.0,83.3,50.0,0.0,0.0,157500.0,4116.0,7500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197017,,19475.0,19475.0,19425.0, 60 months,24.49,565.81,E,E3,SECURITY,10+ years,RENT,46402.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197017,,home_improvement,Home improvement,783xx,TX,25.63,0.0,Jul-2006,660.0,664.0,0.0,58.0,,8.0,0.0,3896.0,41.9,45.0,f,0.0,0.0,13552.94,13518.14,5138.6,8414.34,0.0,0.0,0.0,Oct-2018,565.81,,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,40716.0,1.0,3.0,5.0,13.0,5.0,36820.0,92.0,0.0,3.0,1911.0,83.0,9300.0,3.0,8.0,5.0,16.0,5090.0,3889.0,32.9,0.0,0.0,122.0,45.0,16.0,5.0,0.0,20.0,,3.0,,0.0,1.0,4.0,2.0,2.0,39.0,5.0,6.0,4.0,8.0,0.0,0.0,0.0,5.0,97.8,0.0,0.0,0.0,49130.0,40716.0,5800.0,39830.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90215360,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Corporate Marketing Manager,2 years,RENT,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90215360,,debt_consolidation,Debt consolidation,333xx,FL,11.13,0.0,Jan-2004,660.0,664.0,0.0,66.0,,15.0,0.0,30460.0,73.4,32.0,f,0.0,0.0,23249.837410045697,23249.84,20000.0,3249.84,0.0,0.0,0.0,Feb-2018,12935.76,,Mar-2019,684.0,680.0,0.0,66.0,1.0,Individual,,,,0.0,0.0,30460.0,0.0,0.0,0.0,1.0,24.0,0.0,,0.0,3.0,8985.0,73.0,41500.0,0.0,0.0,0.0,4.0,2176.0,8823.0,77.1,0.0,0.0,148.0,152.0,16.0,16.0,0.0,18.0,,,,1.0,9.0,11.0,12.0,17.0,8.0,15.0,23.0,11.0,15.0,0.0,0.0,0.0,0.0,96.8,58.3,0.0,0.0,41500.0,30460.0,38600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90292068,,7500.0,7500.0,7500.0, 36 months,13.99,256.3,C,C3,Retail Sales Associate,2 years,RENT,45000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90292068,,credit_card,Credit card refinancing,922xx,CA,13.49,0.0,Feb-2012,690.0,694.0,0.0,,,10.0,0.0,9567.0,30.9,17.0,f,0.0,0.0,2557.17,2557.17,1780.03,777.14,0.0,0.0,0.0,Aug-2017,256.3,,May-2018,499.0,0.0,1.0,,1.0,Individual,,,,0.0,54.0,31145.0,3.0,1.0,1.0,1.0,4.0,21578.0,97.0,4.0,6.0,2431.0,58.0,31000.0,0.0,0.0,1.0,7.0,3115.0,15930.0,23.8,0.0,0.0,4.0,55.0,3.0,3.0,0.0,3.0,,4.0,,0.0,3.0,4.0,4.0,5.0,1.0,9.0,16.0,4.0,10.0,0.0,0.0,0.0,5.0,100.0,25.0,0.0,0.0,53331.0,31145.0,20900.0,22331.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90152214,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,plant manager,2 years,MORTGAGE,135000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90152214,,debt_consolidation,Debt consolidation,328xx,FL,25.86,0.0,Aug-2001,670.0,674.0,1.0,,,18.0,0.0,30221.0,80.6,39.0,f,4568.51,4568.51,19804.8,19804.8,15431.49,4373.31,0.0,0.0,0.0,Mar-2019,683.46,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,570804.0,4.0,5.0,2.0,3.0,2.0,34978.0,55.0,3.0,3.0,7348.0,63.0,37500.0,0.0,4.0,1.0,7.0,33577.0,2763.0,90.6,0.0,0.0,153.0,181.0,1.0,1.0,5.0,6.0,,2.0,,0.0,6.0,9.0,6.0,8.0,15.0,10.0,18.0,9.0,18.0,0.0,0.0,0.0,5.0,100.0,83.3,0.0,0.0,628574.0,68305.0,29300.0,64205.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89063139,,35000.0,35000.0,35000.0, 36 months,17.99,1265.16,D,D2,Managing Director,10+ years,MORTGAGE,500000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89063139,,credit_card,Credit card refinancing,606xx,IL,9.33,0.0,Aug-1995,680.0,684.0,4.0,,,15.0,0.0,311486.0,77.9,24.0,f,0.0,0.0,43533.8204049345,43533.82,35000.0,8533.82,0.0,0.0,0.0,Jul-2018,18265.6,,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,1277368.0,2.0,3.0,0.0,0.0,34.0,49074.0,55.0,2.0,4.0,15681.0,69.0,346800.0,1.0,6.0,4.0,5.0,85158.0,24628.0,65.7,0.0,0.0,151.0,253.0,4.0,4.0,5.0,4.0,,0.0,,0.0,6.0,10.0,7.0,7.0,4.0,11.0,14.0,10.0,15.0,0.0,0.0,0.0,2.0,100.0,71.4,0.0,0.0,1377471.0,360560.0,71800.0,88671.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191767,,18000.0,18000.0,17975.0, 60 months,13.99,418.74,C,C3,Pharmacist,2 years,MORTGAGE,95000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191767,,debt_consolidation,Debt consolidation,730xx,OK,16.01,5.0,Apr-1995,660.0,664.0,0.0,6.0,17.0,7.0,1.0,7501.0,91.5,15.0,f,10841.37,10826.31,12169.18,12152.28,7158.63,5010.55,0.0,0.0,0.0,Mar-2019,418.74,Apr-2019,Mar-2019,679.0,675.0,0.0,17.0,1.0,Individual,,,,0.0,150.0,170225.0,0.0,4.0,3.0,3.0,7.0,48563.0,89.0,0.0,0.0,5496.0,89.0,8200.0,4.0,0.0,10.0,3.0,24318.0,699.0,91.5,0.0,0.0,135.0,172.0,96.0,7.0,1.0,96.0,6.0,10.0,6.0,2.0,2.0,2.0,2.0,4.0,6.0,2.0,7.0,2.0,7.0,0.0,0.0,2.0,3.0,53.3,100.0,0.0,1.0,204642.0,56064.0,8200.0,54558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90180936,,25000.0,25000.0,25000.0, 36 months,12.79,839.83,C,C1,sheetmetal,7 years,OWN,64000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90180936,,credit_card,Credit card refinancing,560xx,MN,11.51,0.0,May-2006,680.0,684.0,0.0,,103.0,5.0,1.0,7334.0,66.1,7.0,f,0.0,0.0,7540.71,7540.71,5385.91,2154.8,0.0,0.0,0.0,Jul-2017,839.83,,Feb-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,17918.0,0.0,1.0,0.0,0.0,25.0,10584.0,53.0,0.0,0.0,7334.0,58.0,11100.0,0.0,0.0,0.0,0.0,4480.0,3766.0,66.1,0.0,0.0,124.0,95.0,50.0,25.0,0.0,72.0,,,,0.0,1.0,1.0,3.0,3.0,2.0,4.0,5.0,1.0,5.0,0.0,0.0,0.0,0.0,100.0,33.3,1.0,0.0,31100.0,17918.0,11100.0,20000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197636,,35000.0,35000.0,35000.0, 60 months,18.99,907.73,D,D3,PRINCIPAL DATABASE ADMIN,1 year,MORTGAGE,128000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197636,,debt_consolidation,Debt consolidation,750xx,TX,25.0,0.0,Nov-1999,720.0,724.0,0.0,34.0,,8.0,0.0,20672.0,72.5,35.0,w,22142.82,22142.82,26287.25,26287.25,12857.18,13430.07,0.0,0.0,0.0,Mar-2019,907.73,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,476601.0,1.0,3.0,1.0,2.0,9.0,66376.0,53.0,1.0,3.0,11291.0,61.0,28500.0,2.0,1.0,2.0,6.0,68086.0,7828.0,72.5,0.0,0.0,102.0,202.0,5.0,5.0,2.0,5.0,34.0,2.0,34.0,0.0,3.0,3.0,4.0,16.0,5.0,4.0,26.0,3.0,8.0,0.0,0.0,0.0,2.0,97.1,33.3,0.0,0.0,519079.0,87048.0,28500.0,90579.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90182234,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Senior Accountant,4 years,MORTGAGE,73000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90182234,,credit_card,Credit card refinancing,370xx,TN,24.03,1.0,Dec-2003,690.0,694.0,0.0,5.0,,16.0,0.0,13937.0,57.6,31.0,f,2254.34,2254.34,9734.86,9734.86,7745.66,1989.2,0.0,0.0,0.0,Mar-2019,335.93,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,210030.0,0.0,6.0,0.0,2.0,23.0,18484.0,42.0,0.0,0.0,5900.0,48.0,24200.0,0.0,2.0,1.0,2.0,13127.0,3749.0,76.1,0.0,0.0,132.0,153.0,37.0,23.0,4.0,58.0,,2.0,,0.0,5.0,7.0,5.0,6.0,16.0,9.0,11.0,7.0,16.0,0.0,0.0,0.0,0.0,96.8,40.0,0.0,0.0,263026.0,32421.0,15700.0,44033.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90161622,,6500.0,6500.0,6500.0, 36 months,12.79,218.36,C,C1,Therapy Services Aide,10+ years,RENT,43000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90161622,,debt_consolidation,Debt consolidation,535xx,WI,17.53,1.0,Oct-2004,695.0,699.0,1.0,10.0,,8.0,0.0,7329.0,39.2,16.0,f,1465.13,1465.13,6327.82,6327.82,5034.87,1292.95,0.0,0.0,0.0,Mar-2019,218.36,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,17530.0,1.0,2.0,0.0,0.0,28.0,10201.0,43.0,2.0,4.0,3957.0,41.0,18700.0,0.0,2.0,1.0,4.0,2191.0,9667.0,35.6,0.0,0.0,143.0,133.0,3.0,3.0,0.0,3.0,72.0,3.0,10.0,0.0,3.0,6.0,3.0,5.0,4.0,6.0,12.0,6.0,8.0,0.0,0.0,0.0,2.0,75.0,33.3,0.0,0.0,42717.0,17530.0,15000.0,24017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89977645,,32000.0,32000.0,32000.0, 60 months,21.49,874.56,D,D5,I.T. Specialist,5 years,RENT,77000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89977645,,debt_consolidation,Debt consolidation,474xx,IN,18.38,0.0,Oct-2007,710.0,714.0,0.0,,47.0,16.0,2.0,9417.0,32.4,21.0,f,0.0,0.0,38358.4834711079,38358.48,32000.0,6358.48,0.0,0.0,0.0,Sep-2017,29651.08,,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,40768.0,0.0,3.0,1.0,3.0,9.0,31351.0,77.0,1.0,3.0,4831.0,58.0,29100.0,2.0,2.0,3.0,6.0,2718.0,12986.0,37.3,0.0,0.0,76.0,107.0,12.0,9.0,0.0,12.0,,0.0,,0.0,5.0,9.0,7.0,8.0,4.0,13.0,17.0,9.0,16.0,0.0,0.0,0.0,2.0,100.0,14.3,1.0,1.0,69813.0,40768.0,20700.0,40713.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413786,,5000.0,5000.0,5000.0, 36 months,16.99,178.24,D,D1,Teacher ,6 years,RENT,85000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413786,,other,Other,112xx,NY,3.37,1.0,Jul-2009,665.0,669.0,1.0,23.0,,9.0,0.0,8109.0,40.7,11.0,f,1179.87,1179.87,5164.24,5164.24,3820.13,1344.11,0.0,0.0,0.0,Mar-2019,178.24,Apr-2019,Mar-2019,724.0,720.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,14609.0,2.0,1.0,0.0,0.0,66.0,6474.0,89.0,3.0,5.0,2672.0,54.0,19900.0,0.0,0.0,1.0,6.0,1623.0,11791.0,40.7,0.0,0.0,66.0,86.0,3.0,3.0,0.0,3.0,,3.0,,1.0,7.0,7.0,7.0,7.0,1.0,7.0,9.0,7.0,9.0,0.0,0.0,1.0,4.0,81.8,0.0,0.0,0.0,27221.0,14609.0,19900.0,7295.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398856,,35000.0,35000.0,35000.0, 60 months,16.99,869.66,D,D1,Senior Manager,10+ years,OWN,250000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398856,,home_improvement,Home improvement,786xx,TX,8.58,1.0,Jun-2005,730.0,734.0,1.0,17.0,,9.0,0.0,7500.0,25.0,27.0,f,21698.89,21698.89,25137.55,25137.55,13301.11,11836.44,0.0,0.0,0.0,Mar-2019,869.66,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,27490.0,0.0,3.0,1.0,4.0,11.0,19990.0,53.0,0.0,2.0,4541.0,41.0,30000.0,1.0,0.0,4.0,6.0,3054.0,19051.0,28.1,0.0,0.0,111.0,135.0,13.0,11.0,0.0,13.0,61.0,0.0,61.0,0.0,2.0,4.0,3.0,10.0,9.0,6.0,18.0,4.0,9.0,0.0,0.0,0.0,1.0,92.0,0.0,0.0,0.0,67950.0,27490.0,26500.0,37950.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280510,,20000.0,20000.0,19975.0, 36 months,19.99,743.17,D,D4,AAA Director,10+ years,MORTGAGE,72000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280510,,debt_consolidation,Debt consolidation,287xx,NC,33.95,0.0,Jun-1992,660.0,664.0,1.0,,,15.0,0.0,22489.0,74.5,35.0,f,0.0,0.0,20828.9291289677,20802.89,20000.0,828.93,0.0,0.0,0.0,Dec-2016,20107.97,,Feb-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,39170.0,0.0,2.0,0.0,4.0,13.0,16681.0,51.0,0.0,0.0,4452.0,62.0,30200.0,1.0,0.0,1.0,4.0,3264.0,4422.0,79.1,0.0,0.0,64.0,291.0,40.0,13.0,0.0,49.0,,4.0,,0.0,6.0,9.0,6.0,18.0,8.0,13.0,27.0,9.0,14.0,0.0,0.0,0.0,0.0,100.0,85.7,0.0,0.0,62778.0,39170.0,21200.0,32578.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90160497,,15600.0,15600.0,15600.0, 36 months,12.79,524.05,C,C1,Admin Asst,10+ years,RENT,45000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90160497,,credit_card,Credit card refinancing,751xx,TX,30.73,0.0,Oct-2003,660.0,664.0,1.0,30.0,,12.0,0.0,14794.0,55.2,24.0,f,0.0,0.0,5010.37,5010.37,3360.77,1344.6,0.0,305.0,54.9000000788,Jul-2017,524.05,,Mar-2019,589.0,585.0,0.0,,1.0,Individual,,,,0.0,0.0,19535.0,2.0,1.0,0.0,0.0,63.0,4741.0,14.0,3.0,8.0,4960.0,32.0,26800.0,1.0,1.0,1.0,8.0,1628.0,3230.0,76.8,0.0,0.0,109.0,155.0,4.0,4.0,0.0,4.0,52.0,4.0,52.0,0.0,5.0,9.0,5.0,13.0,4.0,11.0,20.0,9.0,12.0,0.0,0.0,0.0,3.0,83.3,80.0,0.0,0.0,61684.0,19535.0,13900.0,34884.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2018,ACTIVE,Feb-2018,5812.96,45.0,24.0 +90111587,,14000.0,14000.0,14000.0, 60 months,13.99,325.69,C,C3,Headend/Video Tech,10+ years,MORTGAGE,83500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111587,,debt_consolidation,Debt consolidation,206xx,MD,20.37,2.0,Jan-1995,685.0,689.0,1.0,22.0,,10.0,0.0,14498.0,66.5,24.0,f,8432.06,8432.06,9417.81,9417.81,5567.94,3849.87,0.0,0.0,0.0,Mar-2019,325.69,Apr-2019,Mar-2019,744.0,740.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,211223.0,1.0,1.0,0.0,2.0,15.0,12870.0,77.0,1.0,5.0,10233.0,71.0,21800.0,0.0,1.0,1.0,7.0,21122.0,0.0,100.2,0.0,0.0,133.0,260.0,5.0,5.0,2.0,18.0,,5.0,22.0,2.0,2.0,5.0,2.0,6.0,5.0,8.0,17.0,5.0,10.0,0.0,0.0,0.0,1.0,70.8,100.0,0.0,0.0,320968.0,27368.0,10700.0,16788.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89958357,,19225.0,19225.0,19225.0, 36 months,13.49,652.32,C,C2,Manager,4 years,MORTGAGE,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89958357,,debt_consolidation,Debt consolidation,234xx,VA,24.68,0.0,Nov-1992,685.0,689.0,0.0,75.0,,9.0,0.0,23559.0,74.6,18.0,f,4367.36,4367.36,18938.89,18938.89,14857.64,4081.25,0.0,0.0,0.0,Mar-2019,652.32,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,217807.0,2.0,1.0,0.0,0.0,31.0,2179.0,17.0,2.0,5.0,9474.0,58.0,31600.0,0.0,0.0,3.0,5.0,24201.0,1302.0,90.8,0.0,0.0,117.0,286.0,5.0,5.0,5.0,5.0,,1.0,,0.0,3.0,6.0,3.0,4.0,2.0,7.0,11.0,6.0,9.0,0.0,0.0,0.0,2.0,94.4,100.0,0.0,0.0,244924.0,25738.0,14200.0,13074.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90196723,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,superintendent,10+ years,MORTGAGE,135000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90196723,,debt_consolidation,Debt consolidation,959xx,CA,10.52,2.0,May-2003,675.0,679.0,0.0,4.0,,10.0,0.0,11484.0,70.9,31.0,w,0.0,0.0,36244.5050782775,36244.51,35000.0,1244.51,0.0,0.0,0.0,Dec-2016,35431.29,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,521498.0,0.0,3.0,0.0,2.0,13.0,59286.0,92.0,0.0,2.0,1735.0,88.0,16200.0,0.0,9.0,4.0,6.0,65187.0,3707.0,40.2,0.0,0.0,97.0,160.0,16.0,13.0,7.0,60.0,4.0,6.0,4.0,0.0,2.0,3.0,2.0,4.0,10.0,5.0,14.0,3.0,10.0,0.0,0.0,0.0,0.0,93.5,0.0,0.0,0.0,546407.0,70770.0,6200.0,64457.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90302239,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,Manager,2 years,MORTGAGE,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90302239,,debt_consolidation,Debt consolidation,925xx,CA,4.83,0.0,Dec-2000,675.0,679.0,0.0,,73.0,10.0,1.0,17054.0,72.9,26.0,f,0.0,0.0,16154.9138980325,16154.91,15000.0,1154.91,0.0,0.0,0.0,Jul-2017,1486.99,,Mar-2018,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,258230.0,1.0,2.0,0.0,0.0,29.0,9754.0,90.0,6.0,8.0,9945.0,78.0,23400.0,1.0,0.0,4.0,9.0,28692.0,4923.0,77.0,0.0,0.0,147.0,189.0,1.0,1.0,1.0,1.0,,1.0,,0.0,5.0,6.0,5.0,10.0,8.0,7.0,17.0,6.0,10.0,0.0,0.0,0.0,6.0,100.0,60.0,1.0,0.0,269909.0,26808.0,21400.0,10856.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89824506,,36000.0,36000.0,36000.0, 60 months,21.49,983.88,D,D5,Federal Officer ,9 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=89824506,,debt_consolidation,Debt consolidation,640xx,MO,27.82,0.0,Mar-2000,690.0,694.0,3.0,77.0,,30.0,0.0,31632.0,52.9,49.0,f,25406.37,25406.37,24784.73,24784.73,10593.63,14191.1,0.0,0.0,0.0,Nov-2018,983.88,Apr-2019,Mar-2019,564.0,560.0,0.0,,1.0,Individual,,,,0.0,0.0,283322.0,2.0,13.0,2.0,2.0,4.0,190916.0,101.0,0.0,0.0,8177.0,84.0,59800.0,3.0,3.0,11.0,2.0,9770.0,3403.0,86.5,0.0,0.0,135.0,198.0,32.0,4.0,3.0,95.0,,1.0,,0.0,4.0,9.0,6.0,9.0,26.0,15.0,20.0,9.0,30.0,0.0,0.0,0.0,2.0,95.9,66.7,0.0,0.0,329943.0,222548.0,25200.0,195701.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331654,,35000.0,35000.0,35000.0, 36 months,21.49,1327.45,D,D5,Supply Sergeant,10+ years,RENT,80976.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331654,,debt_consolidation,Debt consolidation,030xx,NH,28.59,0.0,Dec-2010,715.0,719.0,0.0,,,10.0,0.0,14727.0,57.3,14.0,f,0.0,0.0,9423.62,9423.62,4396.71,3776.91,0.0,1250.0,224.9999998595,Apr-2017,1327.45,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,62799.0,2.0,4.0,1.0,3.0,1.0,48072.0,74.0,3.0,4.0,805.0,69.0,25700.0,0.0,6.0,0.0,7.0,6280.0,395.0,67.1,0.0,0.0,69.0,54.0,3.0,1.0,0.0,24.0,,,,0.0,1.0,4.0,1.0,1.0,8.0,6.0,6.0,4.0,10.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,90844.0,62799.0,1200.0,65144.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Sep-2018,ACTIVE,Sep-2018,15032.28,44.99,24.0 +90131767,,7000.0,7000.0,7000.0, 36 months,12.79,235.16,C,C1,Senior Accountant,8 years,MORTGAGE,85700.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131767,,debt_consolidation,Debt consolidation,820xx,WY,15.15,0.0,Dec-1991,665.0,669.0,1.0,28.0,10.0,17.0,1.0,26441.0,70.9,30.0,f,0.0,0.0,8010.4144299773,8010.41,7000.0,1010.41,0.0,0.0,0.0,Mar-2018,34.44,,Mar-2018,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,260905.0,1.0,1.0,0.0,0.0,46.0,3858.0,25.0,2.0,3.0,3929.0,57.0,37300.0,2.0,0.0,5.0,4.0,17394.0,956.0,89.3,0.0,0.0,88.0,297.0,5.0,5.0,1.0,15.0,,1.0,,1.0,3.0,9.0,4.0,13.0,4.0,15.0,25.0,9.0,17.0,0.0,0.0,0.0,2.0,76.7,75.0,0.0,1.0,288775.0,30299.0,8900.0,15455.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171801,,35000.0,35000.0,34750.0, 60 months,25.69,1041.51,F,F1,Creative Services Director,9 years,RENT,85000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171801,,debt_consolidation,Debt consolidation,029xx,RI,27.77,0.0,Oct-1993,675.0,679.0,0.0,41.0,,6.0,0.0,34723.0,88.8,12.0,f,0.0,0.0,23956.86,23785.74,7636.39,14185.37,52.08,2083.02,374.943600021,Jul-2018,1041.51,,Oct-2017,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,59317.0,1.0,2.0,0.0,1.0,23.0,24594.0,50.0,1.0,1.0,17076.0,67.0,39100.0,0.0,0.0,0.0,2.0,9886.0,4377.0,88.8,0.0,0.0,275.0,174.0,2.0,2.0,0.0,2.0,41.0,,41.0,0.0,4.0,4.0,4.0,5.0,7.0,4.0,5.0,4.0,6.0,0.0,0.0,0.0,1.0,90.9,100.0,0.0,0.0,88026.0,59317.0,39100.0,48926.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191303,,27600.0,27600.0,27550.0, 36 months,16.99,983.88,D,D1,Digital Support Specialist,10+ years,RENT,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191303,,debt_consolidation,Debt consolidation,906xx,CA,31.1,0.0,Sep-2000,660.0,664.0,2.0,91.0,66.0,7.0,2.0,1151.0,6.3,27.0,f,0.0,0.0,29760.552458898903,29706.64,27600.0,2160.55,0.0,0.0,0.0,Mar-2017,25851.08,,Mar-2019,724.0,720.0,0.0,91.0,1.0,Individual,,,,0.0,0.0,19196.0,1.0,1.0,2.0,3.0,1.0,18045.0,100.0,1.0,3.0,1151.0,53.0,18200.0,1.0,0.0,3.0,6.0,2742.0,15449.0,6.9,0.0,0.0,145.0,192.0,12.0,1.0,1.0,12.0,91.0,3.0,91.0,1.0,1.0,1.0,4.0,13.0,7.0,6.0,19.0,1.0,7.0,0.0,0.0,0.0,3.0,95.7,0.0,2.0,0.0,36200.0,19196.0,16600.0,18000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221765,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Design Engineer,10+ years,MORTGAGE,93000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221765,,home_improvement,Debt consolidation,532xx,WI,12.05,1.0,Jun-1998,675.0,679.0,3.0,18.0,69.0,7.0,1.0,9587.0,82.6,14.0,f,2254.34,2254.34,9734.86,9734.86,7745.66,1989.2,0.0,0.0,0.0,Mar-2019,335.93,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,204638.0,1.0,2.0,1.0,2.0,5.0,24869.0,83.0,0.0,1.0,4764.0,83.0,11600.0,4.0,2.0,5.0,4.0,29234.0,2013.0,82.6,0.0,0.0,79.0,219.0,21.0,5.0,2.0,21.0,18.0,2.0,18.0,0.0,3.0,3.0,4.0,4.0,6.0,4.0,5.0,3.0,7.0,0.0,0.0,0.0,2.0,92.9,50.0,0.0,0.0,218016.0,34456.0,11600.0,30084.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90312349,,20000.0,20000.0,20000.0, 60 months,12.79,452.92,C,C1,IT Manager,1 year,RENT,115000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90312349,,debt_consolidation,Debt consolidation,986xx,WA,18.28,0.0,Sep-2005,690.0,694.0,0.0,,,11.0,0.0,27151.0,92.0,54.0,f,11906.16,11906.16,13120.47,13120.47,8093.84,5026.63,0.0,0.0,0.0,Mar-2019,452.92,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,161664.0,0.0,4.0,1.0,1.0,8.0,134513.0,76.0,0.0,2.0,7683.0,82.0,29500.0,0.0,8.0,2.0,3.0,14697.0,1052.0,94.3,0.0,0.0,132.0,126.0,14.0,8.0,1.0,14.0,,8.0,,0.0,4.0,6.0,4.0,6.0,43.0,7.0,9.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,75.0,0.0,0.0,173784.0,161664.0,18500.0,144284.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403585,,6000.0,6000.0,6000.0, 36 months,15.59,209.73,C,C5,Shift Supervisor ,4 years,RENT,20000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403585,,credit_card,Credit card refinancing,329xx,FL,11.64,0.0,May-2012,685.0,689.0,0.0,,,4.0,0.0,9323.0,82.5,4.0,f,1396.95,1396.95,6076.97,6076.97,4603.05,1473.92,0.0,0.0,0.0,Mar-2019,209.73,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,9323.0,0.0,0.0,0.0,0.0,,0.0,,2.0,2.0,3296.0,83.0,11300.0,0.0,0.0,0.0,2.0,2331.0,1031.0,90.0,0.0,0.0,,52.0,7.0,7.0,0.0,7.0,,,,0.0,3.0,4.0,3.0,3.0,0.0,4.0,4.0,4.0,4.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,11300.0,9323.0,10300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141646,,12800.0,12800.0,12800.0, 36 months,14.49,440.53,C,C4,Public Relations Manager,6 years,RENT,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141646,,other,Other,908xx,CA,21.84,19.0,May-2000,665.0,669.0,0.0,7.0,,19.0,0.0,7110.0,82.7,31.0,f,2942.87,2942.87,12779.24,12779.24,9857.13,2922.11,0.0,0.0,0.0,Mar-2019,440.53,Apr-2019,Mar-2019,719.0,715.0,0.0,14.0,1.0,Individual,,,,0.0,0.0,106417.0,1.0,12.0,1.0,1.0,3.0,99307.0,86.0,0.0,1.0,3154.0,86.0,8600.0,0.0,0.0,0.0,2.0,5912.0,200.0,96.7,0.0,0.0,121.0,196.0,23.0,3.0,0.0,23.0,,23.0,18.0,0.0,2.0,4.0,2.0,3.0,22.0,7.0,9.0,4.0,19.0,0.0,0.0,16.0,1.0,36.7,100.0,0.0,0.0,116530.0,106417.0,6000.0,107930.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90195919,,14400.0,14400.0,14400.0, 60 months,21.49,393.55,D,D5,Laborer,10+ years,OWN,36000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90195919,,debt_consolidation,Debt consolidation,179xx,PA,33.0,0.0,Jun-2006,670.0,674.0,1.0,,,9.0,0.0,9371.0,84.4,18.0,f,9299.87,9299.87,11369.97,11369.97,5100.13,6269.84,0.0,0.0,0.0,Mar-2019,393.55,Apr-2019,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,29019.0,2.0,3.0,2.0,2.0,3.0,19648.0,68.0,1.0,1.0,3023.0,73.0,11100.0,1.0,0.0,3.0,3.0,3224.0,729.0,92.8,0.0,0.0,100.0,123.0,3.0,3.0,0.0,52.0,,3.0,,0.0,5.0,5.0,5.0,5.0,12.0,6.0,6.0,5.0,9.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,40036.0,29019.0,10100.0,28936.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90156180,,12000.0,12000.0,12000.0, 60 months,12.79,271.75,C,C1,Machinist,4 years,RENT,42500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90156180,,car,Car financing,054xx,VT,18.5,0.0,Jul-2004,695.0,699.0,0.0,,,11.0,0.0,14397.0,51.1,31.0,f,7141.79,7141.79,7872.22,7872.22,4858.21,3014.01,0.0,0.0,0.0,Mar-2019,271.75,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,22882.0,1.0,2.0,0.0,1.0,15.0,8485.0,57.0,2.0,5.0,5317.0,53.0,28200.0,0.0,1.0,0.0,6.0,2080.0,11803.0,55.0,0.0,0.0,135.0,146.0,4.0,4.0,2.0,4.0,,16.0,,0.0,3.0,3.0,7.0,14.0,8.0,9.0,21.0,3.0,11.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,43126.0,22882.0,26200.0,14926.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413899,,16800.0,16800.0,16800.0, 60 months,10.49,361.02,B,B3,Registered Nurse,10+ years,MORTGAGE,92000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413899,,home_improvement,Home improvement,773xx,TX,3.21,1.0,Oct-2001,695.0,699.0,0.0,18.0,,10.0,0.0,9675.0,36.2,27.0,f,0.0,0.0,7234.9,7234.9,4405.6,2611.25,18.05,200.0,35.99999997,Oct-2018,200.0,,Mar-2019,509.0,505.0,0.0,35.0,1.0,Individual,,,,0.0,1127.0,268109.0,2.0,1.0,0.0,0.0,49.0,122110.0,,2.0,2.0,3378.0,36.0,26700.0,1.0,0.0,1.0,3.0,26811.0,11609.0,35.5,0.0,0.0,179.0,144.0,3.0,3.0,4.0,54.0,55.0,11.0,18.0,1.0,3.0,5.0,3.0,7.0,9.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,3.0,77.8,0.0,0.0,0.0,221013.0,131785.0,18000.0,53013.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Aug-2018,ACTIVE,Aug-2018,6369.0,50.0,18.0 +90319662,,24000.0,24000.0,24000.0, 36 months,14.49,825.99,C,C4,CEO,< 1 year,OWN,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90319662,,credit_card,Credit card refinancing,018xx,MA,16.35,0.0,Aug-2007,710.0,714.0,1.0,,,6.0,0.0,13274.0,54.0,24.0,f,0.0,0.0,8740.58,8740.58,5662.83,2577.75,0.0,500.0,90.0,Aug-2017,825.99,,Mar-2019,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,82738.0,0.0,1.0,0.0,0.0,26.0,69464.0,,2.0,3.0,6415.0,54.0,17700.0,0.0,4.0,2.0,3.0,13790.0,0.0,,0.0,0.0,108.0,109.0,4.0,4.0,0.0,4.0,,1.0,,0.0,1.0,3.0,1.0,6.0,13.0,5.0,11.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,78036.0,82738.0,5000.0,60336.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,BROKEN,Jun-2018,7800.0,40.03,24.0 +89937804,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,Machine Operator,10+ years,MORTGAGE,40000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937804,,debt_consolidation,Debt consolidation,463xx,IN,14.91,0.0,May-2005,660.0,664.0,1.0,,,9.0,0.0,13162.0,70.4,15.0,w,0.0,0.0,8900.62,8900.62,6222.43,2678.19,0.0,0.0,0.0,Mar-2018,524.33,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,149387.0,0.0,1.0,0.0,1.0,15.0,4020.0,67.0,2.0,4.0,4905.0,70.0,18700.0,2.0,1.0,4.0,6.0,16599.0,2628.0,77.3,0.0,0.0,101.0,136.0,9.0,9.0,1.0,10.0,,1.0,,0.0,3.0,5.0,4.0,6.0,5.0,7.0,9.0,5.0,9.0,0.0,0.0,0.0,3.0,100.0,75.0,0.0,0.0,158500.0,17182.0,11600.0,6000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392859,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,waitress,4 years,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392859,,debt_consolidation,Debt consolidation,030xx,NH,19.25,0.0,Dec-2010,685.0,689.0,3.0,32.0,,12.0,0.0,7902.0,27.2,20.0,f,0.0,0.0,8972.7230746392,8972.72,8000.0,957.72,15.0,0.0,0.0,Sep-2017,5960.86,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,3007.0,74960.0,2.0,2.0,0.0,1.0,24.0,67058.0,33.0,2.0,4.0,1517.0,29.0,29000.0,1.0,0.0,4.0,5.0,6815.0,15998.0,33.1,0.0,0.0,63.0,69.0,0.0,0.0,0.0,0.0,32.0,0.0,32.0,0.0,8.0,8.0,8.0,8.0,3.0,10.0,17.0,8.0,12.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,0.0,99297.0,74960.0,23900.0,70297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130583,,15400.0,15400.0,15400.0, 36 months,14.49,530.01,C,C4,CMA,2 years,RENT,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130583,,debt_consolidation,Debt consolidation,775xx,TX,22.36,0.0,Aug-2003,685.0,689.0,4.0,43.0,,11.0,0.0,16034.0,51.6,31.0,f,0.0,0.0,17925.6053616488,17925.61,15400.0,2525.61,0.0,0.0,0.0,Feb-2018,9987.86,,Mar-2019,709.0,705.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,24611.0,2.0,1.0,0.0,0.0,31.0,8577.0,52.0,3.0,5.0,7771.0,52.0,31100.0,2.0,0.0,7.0,5.0,2461.0,5149.0,73.3,0.0,0.0,116.0,157.0,2.0,2.0,1.0,10.0,48.0,2.0,48.0,3.0,5.0,7.0,5.0,10.0,6.0,10.0,24.0,7.0,11.0,0.0,0.0,0.0,3.0,90.3,60.0,0.0,0.0,47461.0,24611.0,19300.0,16361.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90098837,,20000.0,20000.0,20000.0, 60 months,16.99,496.95,D,D1,Senior Accountant,< 1 year,MORTGAGE,70000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90098837,,credit_card,Credit card refinancing,451xx,OH,19.06,0.0,Apr-2004,685.0,689.0,1.0,73.0,,15.0,0.0,9880.0,28.2,36.0,f,0.0,0.0,20562.9000000001,20562.9,20000.0,562.9,0.0,0.0,0.0,Dec-2016,20084.83,,Mar-2019,779.0,775.0,0.0,73.0,1.0,Individual,,,,0.0,150.0,242670.0,1.0,2.0,0.0,2.0,18.0,38844.0,78.0,3.0,6.0,2730.0,58.0,35000.0,3.0,1.0,6.0,8.0,16178.0,11002.0,37.5,0.0,0.0,140.0,149.0,2.0,2.0,4.0,12.0,,2.0,76.0,1.0,4.0,8.0,5.0,11.0,7.0,12.0,25.0,8.0,14.0,0.0,0.0,0.0,3.0,91.7,20.0,0.0,0.0,285581.0,48724.0,17600.0,49561.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412802,,17000.0,17000.0,17000.0, 36 months,14.49,585.08,C,C4,Administrative Assistant ,4 years,MORTGAGE,58006.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412802,,debt_consolidation,Debt consolidation,021xx,MA,27.0,0.0,Mar-1998,665.0,669.0,0.0,37.0,,14.0,0.0,16549.0,74.2,31.0,f,0.0,0.0,18399.5011441349,18399.5,17000.0,1399.5,0.0,0.0,0.0,May-2017,14902.7,,Sep-2018,689.0,685.0,0.0,37.0,1.0,Individual,,,,0.0,1381.0,360672.0,1.0,9.0,1.0,1.0,6.0,51616.0,93.0,0.0,1.0,10136.0,88.0,22300.0,0.0,2.0,0.0,2.0,25762.0,1962.0,89.1,0.0,0.0,149.0,222.0,15.0,6.0,3.0,15.0,,14.0,,2.0,3.0,4.0,3.0,6.0,17.0,4.0,11.0,4.0,14.0,0.0,0.0,0.0,1.0,96.7,66.7,0.0,0.0,385627.0,68165.0,18000.0,55327.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90330906,,24000.0,24000.0,24000.0, 60 months,10.49,515.74,B,B3,Senior Pricing Manager,< 1 year,MORTGAGE,92000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90330906,,credit_card,Credit card refinancing,631xx,MO,12.34,0.0,Apr-1999,695.0,699.0,0.0,,,10.0,0.0,21169.0,46.5,22.0,f,13951.42,13951.42,15019.83,15019.83,10048.58,4971.25,0.0,0.0,0.0,Mar-2019,515.74,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,440.0,202143.0,0.0,3.0,0.0,0.0,45.0,10617.0,37.0,2.0,2.0,11276.0,43.0,45500.0,0.0,0.0,3.0,3.0,20214.0,20008.0,49.3,0.0,0.0,142.0,209.0,10.0,10.0,4.0,10.0,,10.0,,0.0,3.0,4.0,4.0,4.0,9.0,6.0,9.0,4.0,10.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,247624.0,31786.0,39500.0,29124.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407600,,30000.0,30000.0,30000.0, 36 months,17.99,1084.43,D,D2,Sales,10+ years,RENT,725000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407600,,debt_consolidation,Debt consolidation,606xx,IL,6.31,0.0,Mar-1989,675.0,679.0,1.0,,,17.0,0.0,178379.0,63.0,29.0,f,0.0,0.0,31046.588688763197,31046.59,30000.0,1046.59,0.0,0.0,0.0,Dec-2016,29992.14,,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,201817.0,0.0,0.0,0.0,1.0,21.0,0.0,,1.0,2.0,37423.0,68.0,244400.0,0.0,4.0,3.0,3.0,11872.0,34378.0,71.2,0.0,0.0,136.0,330.0,7.0,7.0,0.0,24.0,,0.0,,0.0,9.0,13.0,11.0,15.0,6.0,16.0,22.0,13.0,17.0,0.0,0.0,0.0,1.0,100.0,63.6,0.0,0.0,267838.0,201817.0,181200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90220886,,10050.0,10050.0,10050.0, 36 months,17.99,363.29,D,D2,maintenance,5 years,RENT,28000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90220886,,debt_consolidation,Debt consolidation,920xx,CA,19.2,0.0,Nov-2006,660.0,664.0,1.0,,,9.0,0.0,4398.0,37.9,13.0,w,0.0,0.0,8237.69,8237.69,5202.56,2416.49,0.0,618.64,111.3552,Jul-2018,363.29,,Mar-2019,509.0,505.0,0.0,,1.0,Individual,,,,0.0,1343.0,10503.0,1.0,1.0,1.0,2.0,1.0,6105.0,101.0,1.0,6.0,1437.0,59.0,11600.0,1.0,0.0,1.0,8.0,1167.0,1502.0,74.5,0.0,0.0,54.0,118.0,11.0,1.0,0.0,11.0,,1.0,,0.0,5.0,5.0,5.0,6.0,4.0,8.0,9.0,5.0,9.0,0.0,0.0,0.0,2.0,100.0,80.0,0.0,0.0,17675.0,10503.0,5900.0,6075.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,2615.0,50.01,12.0 +90413568,,30000.0,30000.0,29750.0, 36 months,15.59,1048.65,C,C5,Security Analyst,4 years,OWN,95000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413568,,debt_consolidation,Debt consolidation,201xx,VA,11.38,1.0,Apr-2007,680.0,684.0,1.0,22.0,,9.0,0.0,33372.0,74.0,14.0,f,6973.42,6915.3,30506.12,30251.9,23026.58,7479.54,0.0,0.0,0.0,Mar-2019,1048.65,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,396970.0,0.0,2.0,0.0,1.0,24.0,1139.0,35.0,2.0,3.0,12534.0,71.0,45100.0,1.0,0.0,4.0,5.0,44108.0,10074.0,75.4,0.0,0.0,69.0,113.0,11.0,11.0,1.0,11.0,22.0,0.0,22.0,0.0,4.0,6.0,4.0,7.0,4.0,6.0,9.0,6.0,9.0,0.0,0.0,0.0,3.0,92.9,75.0,0.0,0.0,416000.0,34511.0,41000.0,3250.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407990,,5000.0,5000.0,5000.0, 36 months,18.99,183.26,D,D3,Assembler,10+ years,MORTGAGE,36000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407990,,home_improvement,Home improvement,276xx,NC,18.53,4.0,Oct-1999,685.0,689.0,4.0,3.0,,7.0,0.0,979.0,14.8,10.0,f,0.0,0.0,5104.492363187,5104.49,5000.0,104.49,0.0,0.0,0.0,Jun-2017,126.95,,May-2018,559.0,555.0,0.0,,1.0,Individual,,,,0.0,81.0,143366.0,1.0,1.0,0.0,1.0,20.0,19987.0,86.0,1.0,1.0,497.0,70.0,6600.0,2.0,0.0,4.0,2.0,20481.0,2204.0,21.3,0.0,0.0,130.0,110.0,1.0,1.0,2.0,28.0,13.0,1.0,7.0,0.0,2.0,3.0,2.0,2.0,3.0,5.0,5.0,3.0,7.0,0.0,0.0,0.0,1.0,55.6,0.0,0.0,0.0,159553.0,20966.0,2800.0,23344.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415558,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,AVP Commercial Relationship Manager,10+ years,MORTGAGE,54000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415558,,credit_card,Credit card refinancing,245xx,VA,18.56,0.0,Jun-1998,670.0,674.0,0.0,33.0,,9.0,0.0,11994.0,93.0,23.0,f,9038.81,9038.81,10125.34,10125.34,5961.19,4146.7,17.45,0.0,0.0,Mar-2019,348.95,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,172029.0,0.0,1.0,0.0,1.0,20.0,10699.0,71.0,0.0,0.0,4941.0,81.0,12900.0,0.0,5.0,0.0,2.0,24576.0,60.0,99.4,0.0,0.0,128.0,219.0,29.0,14.0,4.0,29.0,,15.0,33.0,0.0,3.0,5.0,4.0,6.0,9.0,7.0,10.0,5.0,9.0,0.0,0.0,0.0,0.0,95.7,100.0,0.0,0.0,180216.0,22693.0,10100.0,15098.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90384636,,6100.0,6100.0,6100.0, 36 months,16.99,217.46,D,D1,Caregiver,5 years,RENT,18000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90384636,,credit_card,Credit card refinancing,606xx,IL,20.27,0.0,Dec-2006,660.0,664.0,1.0,,91.0,6.0,1.0,6333.0,71.2,11.0,w,1439.18,1439.18,6343.76,6343.76,4660.82,1682.94,0.0,0.0,0.0,Mar-2019,217.46,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,6333.0,0.0,0.0,0.0,0.0,,0.0,,0.0,3.0,1150.0,71.0,8900.0,0.0,0.0,2.0,3.0,1267.0,850.0,57.5,0.0,0.0,,117.0,17.0,17.0,0.0,17.0,,0.0,,0.0,1.0,5.0,1.0,2.0,0.0,6.0,11.0,5.0,6.0,0.0,0.0,0.0,0.0,100.0,0.0,1.0,0.0,8900.0,6333.0,2000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191293,,13725.0,13725.0,13725.0, 60 months,27.79,425.61,F,F5,,,OWN,42960.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191293,,debt_consolidation,Debt consolidation,973xx,OR,34.19,0.0,Mar-2005,675.0,679.0,1.0,,59.0,8.0,3.0,6753.0,38.8,15.0,f,0.0,0.0,15511.333089695801,15511.33,13725.0,1786.33,0.0,0.0,0.0,Mar-2017,13830.08,,Oct-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,414.0,98989.0,1.0,1.0,0.0,3.0,13.0,92236.0,,2.0,3.0,5012.0,39.0,17400.0,1.0,2.0,2.0,6.0,12374.0,6288.0,44.4,0.0,0.0,114.0,138.0,0.0,0.0,0.0,0.0,,5.0,,0.0,1.0,2.0,3.0,4.0,5.0,7.0,10.0,2.0,8.0,0.0,0.0,0.0,2.0,100.0,33.3,1.0,2.0,115309.0,98989.0,11300.0,97909.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141480,,28000.0,28000.0,28000.0, 36 months,12.79,940.61,C,C1,"Accountant, CPA",1 year,MORTGAGE,62000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141480,,debt_consolidation,Debt consolidation,700xx,LA,7.34,1.0,Feb-2009,715.0,719.0,2.0,18.0,,18.0,0.0,6634.0,13.3,31.0,f,0.0,0.0,31972.032878667902,31972.03,28000.0,3972.03,0.0,0.0,0.0,Aug-2018,6239.12,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,779.0,174712.0,1.0,3.0,0.0,0.0,72.0,8494.0,64.0,1.0,3.0,3354.0,24.0,49700.0,1.0,0.0,2.0,3.0,11647.0,31646.0,9.6,0.0,0.0,91.0,70.0,6.0,6.0,1.0,6.0,18.0,1.0,18.0,0.0,1.0,2.0,7.0,9.0,7.0,14.0,22.0,2.0,18.0,0.0,0.0,0.0,1.0,96.8,0.0,0.0,0.0,229295.0,15128.0,35000.0,13345.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407180,,20000.0,20000.0,20000.0, 36 months,18.99,733.02,D,D3,Supervisor,10+ years,OWN,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407180,,debt_consolidation,Debt consolidation,727xx,AR,24.11,0.0,Oct-2001,690.0,694.0,3.0,,,13.0,0.0,17287.0,44.7,41.0,f,0.0,0.0,21823.8019282749,21823.8,20000.0,1823.8,0.0,0.0,0.0,May-2017,6098.15,,Dec-2018,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,191571.0,4.0,2.0,1.0,2.0,11.0,38488.0,80.0,4.0,9.0,4792.0,55.0,32800.0,1.0,1.0,5.0,13.0,17416.0,2375.0,67.9,0.0,0.0,155.0,179.0,1.0,1.0,2.0,1.0,,0.0,,0.0,2.0,5.0,4.0,10.0,8.0,10.0,31.0,5.0,13.0,0.0,0.0,0.0,6.0,97.5,33.3,0.0,0.0,216356.0,55775.0,7400.0,47300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90188492,,12000.0,12000.0,12000.0, 60 months,24.49,348.64,E,E3,Shipping/Warehouse,4 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90188492,,debt_consolidation,Debt consolidation,983xx,WA,34.42,0.0,Jun-2003,705.0,709.0,1.0,,,6.0,0.0,7140.0,62.6,11.0,w,7950.83,7950.83,10102.39,10102.39,4049.17,6053.22,0.0,0.0,0.0,Mar-2019,348.64,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,182541.0,1.0,1.0,1.0,1.0,11.0,175401.0,,1.0,2.0,4155.0,63.0,11400.0,0.0,0.0,2.0,3.0,30424.0,486.0,91.2,0.0,0.0,143.0,159.0,2.0,2.0,0.0,2.0,,2.0,,0.0,2.0,4.0,2.0,5.0,3.0,5.0,8.0,4.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,189463.0,182541.0,5500.0,178063.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230013,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Sales,1 year,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230013,,debt_consolidation,Debt consolidation,191xx,PA,0.6,1.0,Jul-1968,680.0,684.0,1.0,14.0,37.0,9.0,3.0,684.0,2.8,30.0,f,0.0,0.0,11036.5999623101,11036.6,10000.0,1036.6,0.0,0.0,0.0,Sep-2017,684.41,,Nov-2017,709.0,705.0,1.0,,1.0,Individual,,,,0.0,1050.0,684.0,1.0,0.0,0.0,0.0,37.0,0.0,,1.0,3.0,684.0,3.0,24400.0,0.0,0.0,1.0,3.0,98.0,16716.0,3.9,0.0,0.0,37.0,578.0,4.0,4.0,0.0,4.0,,4.0,14.0,0.0,1.0,1.0,3.0,7.0,1.0,9.0,29.0,1.0,9.0,0.0,0.0,0.0,1.0,96.7,0.0,0.0,2.0,24400.0,684.0,17400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270943,,5000.0,5000.0,5000.0, 36 months,15.59,174.78,C,C5,Nurse ,10+ years,MORTGAGE,67000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270943,,other,Other,319xx,GA,19.68,0.0,Sep-1994,695.0,699.0,3.0,47.0,64.0,17.0,1.0,5658.0,39.3,26.0,f,1163.07,1163.07,5064.29,5064.29,3836.93,1227.36,0.0,0.0,0.0,Mar-2019,174.78,Apr-2019,Mar-2019,674.0,670.0,0.0,50.0,1.0,Individual,,,,0.0,138.0,249994.0,5.0,13.0,7.0,8.0,2.0,87385.0,103.0,1.0,1.0,2808.0,89.0,14400.0,0.0,1.0,4.0,10.0,14706.0,5022.0,39.5,0.0,0.0,158.0,264.0,5.0,2.0,1.0,5.0,47.0,4.0,47.0,1.0,2.0,3.0,2.0,2.0,21.0,3.0,4.0,3.0,17.0,0.0,0.0,0.0,9.0,92.3,50.0,0.0,1.0,262353.0,93043.0,8300.0,89621.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230621,,30000.0,30000.0,30000.0, 36 months,13.49,1017.92,C,C2,tech,6 years,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230621,,credit_card,Credit card refinancing,843xx,UT,25.1,1.0,Mar-1999,685.0,689.0,0.0,18.0,,13.0,0.0,37756.0,79.7,32.0,f,0.0,0.0,31758.9279183792,31758.93,30000.0,1758.93,0.0,0.0,0.0,Mar-2017,27795.55,,Dec-2017,729.0,725.0,0.0,61.0,1.0,Individual,,,,0.0,0.0,167881.0,0.0,1.0,0.0,0.0,36.0,2044.0,7.0,0.0,1.0,12518.0,51.0,47400.0,0.0,6.0,0.0,1.0,13990.0,6188.0,84.0,0.0,0.0,136.0,210.0,24.0,24.0,4.0,24.0,,,61.0,1.0,6.0,8.0,7.0,12.0,7.0,11.0,21.0,8.0,13.0,0.0,0.0,0.0,0.0,96.8,57.1,0.0,0.0,227400.0,39800.0,38700.0,30000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221125,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,HIM Clerk,4 years,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221125,,debt_consolidation,Debt consolidation,480xx,MI,32.84,0.0,Mar-2003,670.0,674.0,2.0,,41.0,21.0,1.0,8294.0,16.1,28.0,f,0.0,0.0,12657.7077064222,12657.71,10000.0,2657.71,0.0,0.0,0.0,Sep-2018,4655.18,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,1415.0,49651.0,1.0,10.0,0.0,0.0,26.0,41357.0,102.0,2.0,3.0,5055.0,54.0,51400.0,0.0,0.0,3.0,3.0,2364.0,30258.0,20.8,0.0,0.0,85.0,162.0,6.0,6.0,0.0,6.0,,3.0,,0.0,5.0,7.0,6.0,9.0,14.0,11.0,14.0,7.0,21.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,0.0,92050.0,49651.0,38200.0,40650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89868382,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Preferred account opening SR. rep,3 years,RENT,56000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89868382,,debt_consolidation,Debt consolidation,322xx,FL,20.36,0.0,Sep-2001,670.0,674.0,0.0,,83.0,12.0,1.0,5533.0,46.5,22.0,f,0.0,0.0,10654.1683742774,10654.17,10000.0,654.17,0.0,0.0,0.0,Feb-2017,9579.72,,Mar-2017,659.0,655.0,0.0,,1.0,Individual,,,,0.0,1805.0,23725.0,3.0,3.0,0.0,2.0,14.0,18192.0,53.0,4.0,8.0,2026.0,51.0,11900.0,0.0,2.0,1.0,10.0,1977.0,2889.0,64.8,0.0,0.0,140.0,180.0,3.0,3.0,0.0,4.0,,8.0,,0.0,4.0,5.0,4.0,7.0,5.0,9.0,17.0,5.0,12.0,0.0,0.0,0.0,4.0,100.0,50.0,1.0,0.0,46386.0,23725.0,8200.0,34486.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90158512,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,,,RENT,40641.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90158512,,car,Car financing,337xx,FL,23.83,0.0,May-1995,670.0,674.0,0.0,,44.0,7.0,1.0,1873.0,11.6,22.0,f,0.0,0.0,14436.3596134386,14436.36,12000.0,2436.36,0.0,0.0,0.0,Sep-2018,5360.02,,Nov-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,28447.0,1.0,3.0,2.0,3.0,5.0,26574.0,78.0,0.0,3.0,24.0,57.0,16200.0,1.0,1.0,2.0,6.0,4064.0,4376.0,0.5,0.0,0.0,138.0,256.0,15.0,5.0,4.0,15.0,,5.0,,0.0,1.0,2.0,1.0,5.0,7.0,4.0,11.0,2.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,0.0,50303.0,28447.0,4400.0,34103.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414131,,9225.0,9225.0,9225.0, 36 months,15.59,322.46,C,C5,Office Partner,3 years,RENT,33280.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414131,,debt_consolidation,Debt consolidation,146xx,NY,29.28,0.0,Oct-2005,685.0,689.0,0.0,,,21.0,0.0,15775.0,58.9,35.0,f,2147.04,2147.04,9376.55,9376.55,7077.96,2298.59,0.0,0.0,0.0,Mar-2019,322.46,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,51455.0,0.0,9.0,0.0,1.0,13.0,35680.0,93.0,0.0,0.0,3949.0,79.0,26800.0,0.0,2.0,0.0,1.0,2859.0,2114.0,84.3,0.0,0.0,131.0,126.0,25.0,13.0,0.0,25.0,,,,0.0,4.0,7.0,6.0,6.0,20.0,12.0,15.0,7.0,21.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,65122.0,51455.0,13500.0,38322.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90241808,,19600.0,19600.0,19600.0, 36 months,18.99,718.36,D,D3,Registered Nurse,4 years,RENT,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90241808,,debt_consolidation,Debt consolidation,647xx,MO,28.08,1.0,Dec-2006,660.0,664.0,0.0,11.0,,22.0,0.0,14368.0,46.5,33.0,f,4724.7,4724.7,20811.76,20811.76,14875.3,5936.46,0.0,0.0,0.0,Mar-2019,718.36,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,78940.0,3.0,11.0,0.0,0.0,27.0,64572.0,107.0,5.0,6.0,5715.0,79.0,30900.0,2.0,3.0,2.0,6.0,3759.0,12091.0,50.6,0.0,0.0,115.0,117.0,1.0,1.0,0.0,1.0,,3.0,,0.0,4.0,6.0,9.0,10.0,19.0,11.0,14.0,6.0,22.0,0.0,0.0,0.0,5.0,87.9,25.0,0.0,0.0,101498.0,78940.0,24500.0,70598.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89907135,,25000.0,25000.0,24750.0, 36 months,13.49,848.27,C,C2,Warrant Officer ,10+ years,RENT,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89907135,,other,Other,735xx,OK,34.51,0.0,Sep-1999,665.0,669.0,1.0,35.0,,11.0,0.0,24093.0,54.8,36.0,f,0.0,0.0,29407.4036903261,29113.33,25000.0,4407.4,0.0,0.0,0.0,May-2018,14044.87,,Mar-2019,659.0,655.0,0.0,54.0,1.0,Individual,,,,0.0,423.0,62477.0,2.0,2.0,1.0,4.0,8.0,38384.0,85.0,4.0,6.0,11405.0,66.0,44000.0,1.0,1.0,4.0,10.0,5680.0,14627.0,59.5,0.0,0.0,204.0,126.0,3.0,3.0,0.0,8.0,,3.0,35.0,3.0,3.0,4.0,6.0,6.0,24.0,9.0,10.0,4.0,11.0,0.0,0.0,0.0,5.0,86.1,33.3,0.0,0.0,104403.0,62477.0,36100.0,60403.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90066229,,35000.0,35000.0,35000.0, 36 months,13.49,1187.57,C,C2,Paralegal,10+ years,RENT,85000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90066229,,debt_consolidation,Debt consolidation,913xx,CA,14.23,0.0,Jun-2004,665.0,669.0,1.0,31.0,,9.0,0.0,9216.0,88.6,23.0,f,7951.27,7951.27,34413.3,34413.3,27048.73,7364.57,0.0,0.0,0.0,Mar-2019,1187.57,Apr-2019,Mar-2019,674.0,670.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,50521.0,0.0,3.0,3.0,4.0,7.0,41305.0,91.0,0.0,0.0,3421.0,91.0,10400.0,3.0,0.0,5.0,4.0,6315.0,973.0,87.8,0.0,0.0,107.0,147.0,26.0,7.0,5.0,26.0,,0.0,,3.0,4.0,5.0,4.0,7.0,7.0,6.0,11.0,5.0,9.0,0.0,0.0,0.0,3.0,82.6,100.0,0.0,0.0,55772.0,50521.0,8000.0,45372.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90211317,,7000.0,7000.0,7000.0, 36 months,14.49,240.92,C,C4,Service Representative IV,4 years,RENT,46728.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90211317,,other,Other,920xx,CA,21.73,3.0,Jun-2009,670.0,674.0,1.0,3.0,,6.0,0.0,1010.0,16.0,21.0,f,0.0,0.0,8333.606090110101,8333.61,7000.0,1333.61,0.0,0.0,0.0,Jun-2018,3961.37,,Oct-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,23910.0,0.0,2.0,0.0,0.0,30.0,22900.0,55.0,0.0,1.0,1010.0,50.0,6300.0,1.0,0.0,1.0,1.0,3985.0,1790.0,36.1,0.0,0.0,70.0,87.0,18.0,18.0,0.0,49.0,,3.0,8.0,0.0,1.0,1.0,2.0,7.0,5.0,4.0,16.0,1.0,6.0,0.0,0.0,0.0,0.0,85.0,50.0,0.0,0.0,48050.0,23910.0,2800.0,41750.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90083043,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Customer service Representative ,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90083043,,debt_consolidation,Debt consolidation,763xx,TX,21.57,2.0,Mar-2003,675.0,679.0,1.0,16.0,,10.0,0.0,3892.0,37.1,21.0,f,0.0,0.0,9433.8648934433,9433.86,8000.0,1433.86,0.0,0.0,0.0,Jun-2018,4245.67,,Mar-2019,749.0,745.0,0.0,16.0,1.0,Individual,,,,0.0,0.0,59579.0,2.0,2.0,0.0,0.0,27.0,55687.0,101.0,2.0,4.0,2486.0,91.0,10500.0,0.0,1.0,2.0,4.0,5958.0,4797.0,40.0,0.0,0.0,162.0,131.0,2.0,2.0,0.0,6.0,,6.0,,3.0,2.0,5.0,3.0,4.0,11.0,8.0,9.0,5.0,10.0,0.0,0.0,2.0,2.0,78.9,33.3,0.0,0.0,65401.0,59579.0,8000.0,54901.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90219218,,15425.0,15425.0,15425.0, 36 months,27.49,633.8,F,F4,,,OWN,38604.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90219218,,debt_consolidation,Debt consolidation,980xx,WA,28.75,0.0,Sep-1995,690.0,694.0,1.0,,,8.0,0.0,30895.0,79.0,13.0,f,0.0,0.0,5997.22,5997.22,2431.88,2614.96,0.0,950.38,171.06839997790001,Jun-2017,633.8,,Mar-2019,534.0,530.0,0.0,,1.0,Individual,,,,0.0,0.0,40494.0,3.0,1.0,1.0,1.0,5.0,9599.0,96.0,2.0,4.0,9406.0,83.0,39100.0,2.0,0.0,1.0,5.0,5062.0,5350.0,75.0,0.0,0.0,177.0,252.0,2.0,2.0,0.0,3.0,,5.0,,0.0,4.0,5.0,4.0,4.0,3.0,7.0,10.0,5.0,8.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,49100.0,40494.0,21400.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111482,,7475.0,7475.0,7475.0, 36 months,14.49,257.27,C,C4,,,RENT,22000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111482,,debt_consolidation,Debt consolidation,331xx,FL,14.18,0.0,Aug-2003,665.0,669.0,1.0,,67.0,10.0,1.0,12982.0,47.4,33.0,f,0.0,0.0,7845.1739021557,7845.17,7475.0,370.17,0.0,0.0,0.0,Feb-2017,7079.38,,Aug-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,12982.0,2.0,0.0,0.0,1.0,23.0,0.0,,3.0,4.0,9800.0,47.0,27400.0,2.0,0.0,6.0,5.0,1442.0,9418.0,58.0,0.0,0.0,157.0,155.0,2.0,2.0,0.0,6.0,,1.0,,0.0,2.0,2.0,6.0,20.0,2.0,10.0,31.0,2.0,10.0,0.0,0.0,0.0,3.0,100.0,40.0,1.0,0.0,27400.0,12982.0,22400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121553,,28800.0,28800.0,28800.0, 60 months,13.99,669.98,C,C3,Owner/CEO,7 years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121553,,debt_consolidation,Debt consolidation,850xx,AZ,13.01,0.0,Jul-2004,695.0,699.0,2.0,,,11.0,0.0,39117.0,70.1,17.0,f,17349.52,17349.52,19407.04,19407.04,11450.48,7956.56,0.0,0.0,0.0,Mar-2019,669.98,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,270653.0,2.0,0.0,0.0,0.0,146.0,0.0,,2.0,2.0,8444.0,69.0,55800.0,0.0,0.0,2.0,2.0,24605.0,13125.0,71.7,0.0,0.0,146.0,138.0,1.0,1.0,3.0,32.0,,1.0,,0.0,5.0,7.0,7.0,10.0,1.0,9.0,12.0,7.0,11.0,0.0,0.0,0.0,2.0,100.0,57.1,0.0,0.0,316586.0,40452.0,46300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100674,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Front desk,2 years,OWN,40000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100674,,debt_consolidation,Debt consolidation,281xx,NC,26.59,0.0,Jan-1998,660.0,664.0,1.0,35.0,35.0,26.0,1.0,11100.0,48.9,39.0,f,0.0,0.0,3611.99,3611.99,2291.18,1320.81,0.0,0.0,0.0,Aug-2017,356.48,,Sep-2018,539.0,535.0,0.0,35.0,1.0,Individual,,,,0.0,1144.0,123831.0,3.0,1.0,0.0,0.0,28.0,12725.0,68.0,7.0,15.0,2362.0,58.0,22700.0,1.0,1.0,3.0,16.0,4763.0,3363.0,67.3,0.0,0.0,142.0,224.0,4.0,4.0,3.0,10.0,35.0,4.0,35.0,2.0,7.0,15.0,9.0,12.0,3.0,24.0,33.0,15.0,26.0,0.0,0.0,0.0,8.0,92.3,33.3,0.0,0.0,142543.0,23825.0,10300.0,18733.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111718,,19950.0,19950.0,19950.0, 36 months,15.59,697.36,C,C5,STAFF ASSISTANT,8 years,OWN,63000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111718,,debt_consolidation,Debt consolidation,021xx,MA,18.4,0.0,Jul-2004,685.0,689.0,0.0,,,13.0,0.0,29272.0,57.6,25.0,f,4637.31,4637.31,20246.88,20246.88,15312.69,4934.19,0.0,0.0,0.0,Mar-2019,699.65,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,384528.0,1.0,1.0,0.0,1.0,22.0,4751.0,56.0,2.0,4.0,9047.0,57.0,50800.0,0.0,0.0,2.0,6.0,29579.0,15492.0,61.6,0.0,0.0,97.0,146.0,8.0,5.0,3.0,8.0,,6.0,,0.0,8.0,10.0,9.0,13.0,5.0,11.0,17.0,10.0,13.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,411285.0,34023.0,40300.0,8485.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301557,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Program Manager IT,1 year,MORTGAGE,125000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301557,,debt_consolidation,Debt consolidation,913xx,CA,9.23,0.0,Apr-2006,670.0,674.0,0.0,,47.0,5.0,2.0,9019.0,63.5,6.0,f,0.0,0.0,36159.350713883796,36159.35,30000.0,6159.35,0.0,0.0,0.0,Jan-2018,25571.35,,Mar-2018,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,29185.0,0.0,2.0,1.0,2.0,8.0,20166.0,81.0,0.0,0.0,6252.0,75.0,14200.0,0.0,1.0,2.0,2.0,5837.0,5181.0,63.5,0.0,0.0,125.0,41.0,28.0,8.0,0.0,28.0,,3.0,,0.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,33.3,1.0,1.0,39200.0,29185.0,14200.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90101442,,35000.0,35000.0,35000.0, 60 months,19.99,927.1,D,D4,Director,10+ years,MORTGAGE,186000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90101442,,debt_consolidation,Debt consolidation,917xx,CA,24.95,0.0,Apr-2000,720.0,724.0,2.0,59.0,,20.0,0.0,33238.0,41.3,39.0,f,0.0,0.0,13588.79,13588.79,3710.3,5521.83,0.0,4356.66,784.1988,Aug-2017,927.1,,Feb-2018,629.0,625.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,791861.0,3.0,6.0,2.0,4.0,5.0,148140.0,87.0,3.0,5.0,9682.0,66.0,80500.0,1.0,0.0,4.0,11.0,39593.0,27586.0,51.1,0.0,0.0,145.0,197.0,4.0,4.0,6.0,4.0,,0.0,,2.0,6.0,8.0,7.0,9.0,10.0,13.0,23.0,8.0,20.0,0.0,0.0,0.0,5.0,94.7,42.9,0.0,0.0,868737.0,181378.0,56400.0,162930.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90219907,,11200.0,11200.0,11200.0, 60 months,15.59,269.93,C,C5,Teacher,3 years,MORTGAGE,41000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90219907,,home_improvement,Home improvement,852xx,AZ,17.74,0.0,Aug-2010,685.0,689.0,0.0,,,16.0,0.0,11223.0,46.4,17.0,f,6851.78,6851.78,7818.27,7818.27,4348.22,3470.05,0.0,0.0,0.0,Mar-2019,269.93,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,332622.0,1.0,7.0,1.0,2.0,8.0,49610.0,95.0,1.0,3.0,2240.0,80.0,24200.0,3.0,0.0,2.0,7.0,20789.0,2939.0,67.7,0.0,0.0,73.0,58.0,11.0,6.0,2.0,11.0,,6.0,,0.0,4.0,6.0,4.0,4.0,7.0,8.0,8.0,6.0,16.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,349709.0,60833.0,9100.0,51990.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410406,,15575.0,15575.0,15575.0, 36 months,18.99,570.84,D,D3,,,MORTGAGE,52300.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410406,,debt_consolidation,Debt consolidation,820xx,WY,32.79,0.0,Feb-1994,725.0,729.0,0.0,,,12.0,0.0,42516.0,65.6,30.0,f,0.0,0.0,19804.4665234697,19804.47,15575.0,4229.47,0.0,0.0,0.0,Sep-2018,7262.42,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,283125.0,0.0,1.0,0.0,1.0,22.0,12377.0,70.0,0.0,0.0,12631.0,67.0,64800.0,0.0,4.0,0.0,2.0,25739.0,15955.0,70.5,0.0,0.0,151.0,271.0,36.0,19.0,5.0,40.0,,20.0,,0.0,6.0,9.0,6.0,13.0,8.0,10.0,17.0,9.0,12.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,317162.0,54893.0,54000.0,17593.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90077274,,35000.0,35000.0,35000.0, 36 months,15.59,1223.43,C,C5,Acquisition Program Manager,6 years,MORTGAGE,113000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90077274,,debt_consolidation,Debt consolidation,361xx,AL,20.63,0.0,May-1993,690.0,694.0,0.0,,,8.0,0.0,19415.0,76.1,24.0,f,0.0,0.0,41836.2802121918,41836.28,35000.0,6836.28,0.0,0.0,0.0,May-2018,20919.84,,Oct-2018,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,363427.0,2.0,3.0,4.0,6.0,2.0,78333.0,92.0,1.0,3.0,13173.0,85.0,25500.0,6.0,3.0,7.0,10.0,51918.0,6085.0,76.1,0.0,0.0,81.0,280.0,9.0,2.0,2.0,9.0,,3.0,,0.0,2.0,2.0,3.0,3.0,16.0,4.0,6.0,2.0,8.0,0.0,0.0,0.0,6.0,100.0,66.7,0.0,0.0,374650.0,97748.0,25500.0,81650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88999750,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,Enterprise Risk and CyberSecurity Mgr. ,1 year,OWN,240000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88999750,,debt_consolidation,Debt consolidation,113xx,NY,11.81,0.0,Jun-1988,715.0,719.0,2.0,,,14.0,0.0,47163.0,31.6,28.0,f,9034.47,9034.47,10119.14,10119.14,5965.53,4153.61,0.0,0.0,0.0,Mar-2019,348.95,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,222437.0,3.0,5.0,0.0,3.0,15.0,174584.0,90.0,3.0,5.0,15131.0,47.0,149400.0,0.0,0.0,2.0,8.0,15888.0,102237.0,31.6,0.0,0.0,170.0,339.0,0.0,0.0,0.0,0.0,,0.0,,0.0,6.0,6.0,8.0,11.0,16.0,8.0,11.0,6.0,14.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,352245.0,222437.0,149400.0,201922.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90409567,,22000.0,22000.0,22000.0, 36 months,16.99,784.26,D,D1,INSURANCE BROKER,10+ years,RENT,62000.0,Not Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90409567,,debt_consolidation,Debt consolidation,900xx,CA,23.61,0.0,Mar-1998,685.0,689.0,0.0,42.0,,6.0,0.0,17629.0,67.0,18.0,f,9574.63,9574.63,18816.08,18816.08,12425.37,6390.71,0.0,0.0,0.0,Feb-2019,784.26,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,38654.0,4.0,1.0,1.0,1.0,4.0,21025.0,96.0,3.0,5.0,5968.0,80.0,26300.0,1.0,0.0,2.0,6.0,6442.0,3396.0,71.2,0.0,0.0,129.0,222.0,2.0,2.0,0.0,16.0,,4.0,42.0,0.0,2.0,4.0,2.0,4.0,8.0,5.0,10.0,4.0,6.0,0.0,0.0,0.0,4.0,94.4,50.0,0.0,0.0,48197.0,38654.0,11800.0,21897.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,EXCESSIVE_OBLIGATIONS,COMPLETED,3.0,224.76,Nov-2017,Feb-2018,Dec-2017,3.0,12.0,In Grace Period,674.28,16193.18,336.94,Cash,N,,,,,, +90266004,,28000.0,28000.0,28000.0, 36 months,16.99,998.14,D,D1,Senior Marketing Manager,3 years,MORTGAGE,130000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90266004,,car,Car financing,280xx,NC,15.77,0.0,Jan-1994,665.0,669.0,0.0,,,13.0,0.0,36743.0,81.3,21.0,f,0.0,0.0,34355.7545889014,34355.75,28000.0,6355.75,0.0,0.0,0.0,Jun-2018,15219.31,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,603484.0,2.0,1.0,0.0,0.0,29.0,20915.0,62.0,1.0,2.0,8575.0,74.0,45200.0,0.0,0.0,1.0,4.0,46422.0,8177.0,81.1,0.0,0.0,141.0,272.0,1.0,1.0,3.0,14.0,,6.0,,0.0,7.0,8.0,7.0,10.0,3.0,9.0,14.0,8.0,12.0,0.0,0.0,0.0,2.0,100.0,87.5,0.0,0.0,632942.0,61435.0,43200.0,33971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88897816,,16000.0,16000.0,16000.0, 60 months,19.99,423.82,D,D4,manager,4 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88897816,,other,Other,330xx,FL,24.6,0.0,Dec-2001,705.0,709.0,1.0,,,22.0,0.0,17593.0,37.2,33.0,f,10196.62,10196.62,12273.01,12273.01,5803.38,6469.63,0.0,0.0,0.0,Mar-2019,423.82,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,314172.0,0.0,4.0,1.0,4.0,10.0,66447.0,82.0,1.0,4.0,5246.0,66.0,47300.0,1.0,1.0,2.0,8.0,16535.0,7169.0,61.7,0.0,0.0,152.0,177.0,8.0,8.0,4.0,25.0,,2.0,,0.0,6.0,8.0,7.0,7.0,10.0,17.0,19.0,8.0,22.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,377655.0,84040.0,18700.0,80755.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238481,,10000.0,10000.0,10000.0, 60 months,18.99,259.36,D,D3,,,RENT,30000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238481,,credit_card,Credit card refinancing,900xx,CA,19.04,0.0,Jul-2002,670.0,674.0,1.0,,,7.0,0.0,9572.0,44.3,12.0,f,0.0,0.0,6134.93,6134.93,2086.73,2571.2,0.0,1477.0,265.86,Apr-2018,259.36,,Mar-2019,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,17133.0,1.0,0.0,1.0,1.0,9.0,7561.0,95.0,1.0,4.0,3861.0,58.0,21600.0,0.0,0.0,1.0,5.0,2448.0,10953.0,46.3,0.0,0.0,170.0,53.0,4.0,4.0,0.0,4.0,,2.0,,0.0,5.0,6.0,5.0,5.0,6.0,6.0,6.0,6.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,29600.0,17133.0,20400.0,8000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,ACTIVE,Oct-2018,3421.76,40.0,8.0 +90408167,,24000.0,24000.0,24000.0, 36 months,16.99,855.55,D,D1,Owner,9 years,MORTGAGE,62000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90408167,,debt_consolidation,Debt consolidation,064xx,CT,9.45,3.0,May-1995,660.0,664.0,0.0,8.0,,8.0,0.0,14330.0,66.0,20.0,f,5663.43,5663.43,24788.3,24788.3,18336.57,6451.73,0.0,0.0,0.0,Mar-2019,855.55,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,123083.0,0.0,0.0,0.0,0.0,84.0,0.0,,0.0,1.0,4283.0,66.0,21700.0,0.0,1.0,1.0,1.0,15385.0,4030.0,70.1,0.0,0.0,123.0,256.0,23.0,23.0,4.0,27.0,19.0,2.0,19.0,0.0,3.0,5.0,5.0,11.0,2.0,7.0,14.0,5.0,8.0,0.0,0.0,0.0,0.0,75.0,60.0,0.0,0.0,151700.0,14330.0,13500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90409501,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Production Mgr,10+ years,MORTGAGE,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90409501,,debt_consolidation,Debt consolidation,580xx,ND,13.43,0.0,May-2001,675.0,679.0,0.0,87.0,54.0,16.0,1.0,20902.0,60.6,25.0,f,0.0,0.0,13504.530262679,13504.53,12000.0,1504.53,0.0,0.0,0.0,Nov-2017,364.53,,Mar-2019,704.0,700.0,0.0,87.0,1.0,Individual,,,,0.0,6196.0,102220.0,1.0,1.0,0.0,0.0,112.0,341.0,3.0,5.0,9.0,4972.0,45.0,34500.0,0.0,0.0,3.0,10.0,6389.0,8257.0,63.3,0.0,0.0,124.0,184.0,2.0,2.0,2.0,2.0,,11.0,87.0,1.0,6.0,12.0,8.0,11.0,2.0,14.0,21.0,12.0,16.0,0.0,0.0,0.0,5.0,92.0,50.0,0.0,0.0,132749.0,21243.0,22500.0,12627.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181772,,16500.0,16500.0,16250.0, 36 months,14.49,567.87,C,C4,Mortgage Support Assistant,< 1 year,RENT,38000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181772,,debt_consolidation,Debt consolidation,285xx,NC,29.44,0.0,Aug-2008,690.0,694.0,2.0,,,16.0,0.0,17149.0,49.6,24.0,f,3589.67,3535.28,16654.95,16402.6,12910.33,3744.62,0.0,0.0,0.0,Mar-2019,767.87,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,47846.0,1.0,6.0,0.0,0.0,39.0,30697.0,74.0,2.0,3.0,5679.0,63.0,35200.0,0.0,2.0,2.0,3.0,2990.0,5542.0,74.6,0.0,0.0,97.0,87.0,2.0,2.0,0.0,12.0,,0.0,,0.0,4.0,6.0,4.0,4.0,12.0,10.0,12.0,6.0,16.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,76688.0,47846.0,21800.0,41488.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90241151,,20000.0,20000.0,20000.0, 36 months,8.59,632.19,A,A5,Maintanence,,MORTGAGE,100000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90241151,,credit_card,Credit card refinancing,140xx,NY,17.7,0.0,Nov-1980,730.0,734.0,1.0,,,8.0,0.0,25848.0,51.7,26.0,w,0.0,0.0,21679.6896696774,21679.69,20000.0,1679.69,0.0,0.0,0.0,Dec-2017,13470.76,,Dec-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,125824.0,1.0,2.0,0.0,0.0,26.0,99976.0,84.0,1.0,1.0,11380.0,60.0,50000.0,1.0,4.0,1.0,1.0,17975.0,20650.0,47.1,0.0,0.0,168.0,430.0,1.0,1.0,1.0,1.0,,1.0,,0.0,2.0,3.0,3.0,7.0,10.0,6.0,15.0,3.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,158625.0,125824.0,39000.0,108625.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90139407,,10000.0,10000.0,9750.0, 36 months,15.59,349.55,C,C5,Advertising Manager,10+ years,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90139407,,credit_card,Credit card refinancing,342xx,FL,19.49,0.0,Nov-2001,690.0,694.0,3.0,30.0,,18.0,0.0,44948.0,53.3,29.0,f,0.0,0.0,11421.9045165047,11136.36,10000.0,1421.9,0.0,0.0,0.0,Oct-2017,7585.51,,Nov-2017,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,255743.0,4.0,3.0,1.0,3.0,2.0,21013.0,75.0,3.0,4.0,29342.0,59.0,84300.0,0.0,1.0,4.0,8.0,15984.0,27224.0,57.8,0.0,0.0,64.0,178.0,5.0,2.0,2.0,5.0,30.0,3.0,30.0,0.0,3.0,6.0,6.0,11.0,4.0,14.0,23.0,6.0,18.0,0.0,0.0,0.0,5.0,89.7,16.7,0.0,0.0,306725.0,65961.0,64500.0,27925.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90109317,,7000.0,7000.0,7000.0, 36 months,18.99,256.56,D,D3,Fabricator/Installer,10+ years,MORTGAGE,31900.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90109317,,debt_consolidation,Debt consolidation,871xx,NM,33.03,1.0,Mar-2001,690.0,694.0,3.0,7.0,88.0,18.0,1.0,7171.0,28.5,28.0,f,1692.32,1692.32,7432.86,7432.86,5307.68,2125.18,0.0,0.0,0.0,Mar-2019,256.56,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,0.0,103135.0,5.0,3.0,0.0,1.0,17.0,12738.0,40.0,6.0,8.0,2335.0,35.0,25200.0,0.0,3.0,3.0,9.0,5730.0,1940.0,75.1,0.0,0.0,132.0,186.0,1.0,1.0,1.0,4.0,,1.0,,0.0,5.0,10.0,5.0,5.0,7.0,14.0,20.0,10.0,18.0,0.0,0.0,0.0,6.0,96.4,80.0,1.0,0.0,169315.0,19909.0,7800.0,32192.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90320895,,23275.0,23275.0,23275.0, 36 months,13.99,795.38,C,C3,Director,10+ years,RENT,161200.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320895,,credit_card,Credit card refinancing,327xx,FL,16.22,1.0,Nov-1999,665.0,669.0,0.0,7.0,,9.0,0.0,27074.0,71.2,21.0,f,0.0,0.0,27030.4037068229,27030.4,23275.0,3755.4,0.0,0.0,0.0,Mar-2018,14322.41,,Mar-2018,724.0,720.0,0.0,33.0,1.0,Individual,,,,0.0,0.0,80329.0,0.0,2.0,0.0,1.0,18.0,45056.0,74.0,0.0,1.0,14740.0,65.0,38000.0,0.0,0.0,0.0,2.0,10041.0,8426.0,76.3,0.0,0.0,161.0,185.0,15.0,15.0,2.0,15.0,,,7.0,1.0,4.0,4.0,4.0,8.0,5.0,6.0,13.0,4.0,8.0,0.0,0.0,0.0,0.0,85.7,25.0,0.0,0.0,124065.0,80329.0,35500.0,60766.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271373,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Project Superintendent ,6 years,MORTGAGE,46500.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271373,,debt_consolidation,Debt consolidation,765xx,TX,13.45,0.0,May-2013,670.0,674.0,0.0,,,5.0,0.0,6602.0,79.5,5.0,f,0.0,0.0,18726.8232833609,18726.82,15000.0,3726.82,0.0,0.0,0.0,Oct-2018,6442.42,,Oct-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,98884.0,1.0,1.0,0.0,1.0,14.0,14673.0,85.0,2.0,2.0,4232.0,83.0,8300.0,1.0,0.0,1.0,4.0,19777.0,268.0,94.0,0.0,0.0,14.0,40.0,1.0,1.0,1.0,40.0,,7.0,,0.0,1.0,3.0,1.0,1.0,1.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,105419.0,21275.0,4500.0,17238.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280518,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Server,3 years,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280518,,debt_consolidation,Debt consolidation,926xx,CA,34.95,0.0,Jul-2011,695.0,699.0,1.0,,,8.0,0.0,12381.0,79.9,10.0,f,0.0,0.0,8833.7648656852,8833.76,8000.0,833.76,0.0,0.0,0.0,Jul-2017,6618.67,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,28099.0,0.0,2.0,0.0,1.0,15.0,15718.0,45.0,1.0,1.0,3391.0,56.0,15500.0,0.0,0.0,2.0,2.0,3512.0,2066.0,76.5,0.0,0.0,56.0,62.0,10.0,10.0,0.0,45.0,,2.0,,0.0,3.0,5.0,3.0,4.0,3.0,6.0,7.0,5.0,8.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,50598.0,28099.0,8800.0,35098.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90399198,,15000.0,15000.0,15000.0, 36 months,12.79,503.9,C,C1,Sales manager,10+ years,OWN,70000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90399198,,debt_consolidation,Debt consolidation,916xx,CA,22.15,0.0,Jun-2004,715.0,719.0,0.0,,100.0,15.0,1.0,6307.0,20.3,30.0,w,0.0,0.0,16032.1012769177,16032.1,15000.0,1032.1,0.0,0.0,0.0,Apr-2017,13457.17,,Oct-2017,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,35925.0,1.0,3.0,2.0,3.0,3.0,29618.0,75.0,0.0,3.0,1442.0,51.0,31000.0,1.0,3.0,1.0,6.0,2395.0,19349.0,9.6,0.0,0.0,147.0,95.0,13.0,3.0,0.0,13.0,,3.0,,0.0,3.0,4.0,9.0,16.0,10.0,12.0,20.0,4.0,15.0,0.0,0.0,0.0,2.0,100.0,11.1,1.0,0.0,70415.0,35925.0,21400.0,39415.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90383177,,12000.0,12000.0,12000.0, 60 months,21.49,327.96,D,D5,Paralegal,5 years,RENT,65000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90383177,,debt_consolidation,Debt consolidation,871xx,NM,9.16,0.0,Nov-1997,675.0,679.0,1.0,44.0,35.0,4.0,2.0,6123.0,70.4,11.0,f,7548.1,7548.1,9716.96,9716.96,4451.9,5265.06,0.0,0.0,0.0,Mar-2019,327.96,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,280.0,24040.0,1.0,1.0,0.0,1.0,16.0,17917.0,84.0,1.0,2.0,4674.0,80.0,8700.0,2.0,1.0,1.0,3.0,6010.0,1377.0,81.6,0.0,0.0,134.0,226.0,3.0,3.0,1.0,3.0,,3.0,,0.0,2.0,2.0,2.0,3.0,3.0,3.0,7.0,2.0,4.0,0.0,0.0,0.0,1.0,81.8,50.0,0.0,2.0,30170.0,24040.0,7500.0,21470.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90311146,,15000.0,15000.0,15000.0, 36 months,12.79,503.9,C,C1,Field Service Tech,10+ years,RENT,86000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90311146,,debt_consolidation,Debt consolidation,207xx,MD,8.0,0.0,Jul-2000,665.0,669.0,2.0,,52.0,11.0,1.0,14598.0,32.6,29.0,f,0.0,0.0,16305.419942081899,16305.42,15000.0,1305.42,0.0,0.0,0.0,Jul-2017,12284.88,,Jul-2017,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,21484.0,3.0,1.0,0.0,1.0,19.0,6886.0,70.0,4.0,5.0,2893.0,39.0,44800.0,2.0,4.0,5.0,6.0,2148.0,16478.0,29.3,0.0,0.0,194.0,150.0,4.0,4.0,4.0,5.0,,5.0,,0.0,4.0,7.0,4.0,8.0,7.0,10.0,18.0,7.0,11.0,0.0,0.0,0.0,4.0,100.0,0.0,1.0,0.0,54668.0,21484.0,23300.0,9868.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067297,,32400.0,32400.0,32400.0, 60 months,14.49,762.15,C,C4,Principal Programmer,< 1 year,MORTGAGE,145000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067297,,credit_card,Credit card refinancing,021xx,MA,14.8,0.0,Mar-1992,730.0,734.0,0.0,,,8.0,0.0,203075.0,82.0,19.0,f,0.0,0.0,38394.8264156956,38394.83,32400.0,5994.83,0.0,0.0,0.0,Feb-2018,26911.75,,Mar-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,451147.0,1.0,2.0,1.0,2.0,1.0,39737.0,101.0,1.0,2.0,16208.0,86.0,219600.0,0.0,0.0,0.0,4.0,56393.0,7568.0,78.1,0.0,0.0,110.0,294.0,12.0,1.0,2.0,20.0,,13.0,,0.0,2.0,4.0,3.0,9.0,5.0,5.0,12.0,4.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,492537.0,242812.0,34600.0,45937.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410698,,8000.0,8000.0,8000.0, 36 months,17.99,289.18,D,D2,associate,9 years,RENT,83000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410698,,debt_consolidation,Debt consolidation,208xx,MD,31.84,0.0,Sep-2003,665.0,669.0,1.0,,,18.0,0.0,30428.0,79.4,35.0,f,1908.09,1908.09,8378.22,8378.22,6091.91,2286.31,0.0,0.0,0.0,Mar-2019,289.18,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,81689.0,1.0,7.0,1.0,5.0,9.0,51261.0,73.0,1.0,2.0,9031.0,75.0,38300.0,0.0,6.0,2.0,7.0,4805.0,240.0,99.0,0.0,0.0,130.0,156.0,1.0,1.0,0.0,43.0,,1.0,,0.0,4.0,9.0,4.0,6.0,18.0,11.0,17.0,9.0,18.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,108576.0,81689.0,24100.0,70276.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121588,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Marketing Coordinator,3 years,RENT,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121588,,debt_consolidation,Debt consolidation,330xx,FL,30.33,1.0,Jul-2011,665.0,669.0,0.0,11.0,,13.0,0.0,12007.0,56.9,15.0,f,0.0,0.0,11769.745143326101,11769.75,10000.0,1769.75,0.0,0.0,0.0,Dec-2017,7083.19,,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,39078.0,2.0,2.0,0.0,0.0,25.0,25798.0,71.0,2.0,8.0,4462.0,66.0,21100.0,1.0,0.0,3.0,8.0,3006.0,211.0,96.5,0.0,0.0,25.0,62.0,2.0,2.0,0.0,4.0,,0.0,,0.0,3.0,8.0,3.0,3.0,2.0,10.0,12.0,9.0,13.0,0.0,0.0,0.0,2.0,93.3,100.0,0.0,0.0,59535.0,39078.0,6000.0,36487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90041121,,16700.0,16700.0,16700.0, 36 months,14.49,574.75,C,C4,,,MORTGAGE,38000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90041121,,debt_consolidation,Debt consolidation,809xx,CO,27.48,3.0,Oct-1995,690.0,694.0,1.0,17.0,,28.0,0.0,32803.0,39.5,47.0,f,0.0,0.0,18192.2424290482,18192.24,16700.0,1492.24,0.0,0.0,0.0,Jun-2017,13182.43,,Feb-2019,704.0,700.0,0.0,64.0,1.0,Individual,,,,0.0,0.0,98715.0,4.0,1.0,1.0,1.0,5.0,9904.0,97.0,3.0,4.0,8685.0,46.0,83000.0,0.0,1.0,1.0,5.0,3656.0,35671.0,45.3,0.0,0.0,37.0,251.0,3.0,3.0,5.0,3.0,17.0,3.0,17.0,4.0,8.0,12.0,14.0,23.0,2.0,26.0,40.0,12.0,28.0,0.0,0.0,0.0,4.0,85.1,35.7,0.0,0.0,163200.0,42707.0,65200.0,10200.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301398,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,warehouse manager,2 years,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301398,,major_purchase,Major purchase,560xx,MN,17.96,0.0,Sep-2003,685.0,689.0,1.0,29.0,,9.0,0.0,2364.0,16.3,18.0,f,0.0,0.0,15948.825430667099,15948.83,15000.0,948.83,0.0,0.0,0.0,Mar-2017,13895.91,,Mar-2019,669.0,665.0,0.0,29.0,1.0,Individual,,,,0.0,0.0,23276.0,2.0,1.0,0.0,2.0,15.0,20912.0,83.0,2.0,5.0,2364.0,59.0,14500.0,3.0,1.0,1.0,7.0,2910.0,4736.0,33.3,0.0,0.0,156.0,115.0,0.0,0.0,0.0,5.0,37.0,1.0,37.0,1.0,1.0,1.0,4.0,5.0,9.0,8.0,9.0,1.0,9.0,0.0,0.0,0.0,2.0,66.7,25.0,0.0,0.0,39566.0,23276.0,7100.0,25066.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405075,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Media Director,3 years,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405075,,debt_consolidation,Debt consolidation,303xx,GA,18.36,0.0,Oct-1998,660.0,664.0,0.0,,69.0,9.0,1.0,10524.0,79.7,20.0,f,0.0,0.0,10207.98,10207.98,10000.0,207.98,0.0,0.0,0.0,Nov-2016,10215.09,,Feb-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,25769.0,0.0,3.0,2.0,3.0,9.0,15245.0,55.0,2.0,2.0,5281.0,63.0,13200.0,0.0,1.0,3.0,5.0,2863.0,252.0,97.5,0.0,0.0,119.0,215.0,7.0,7.0,0.0,7.0,,9.0,,0.0,3.0,5.0,3.0,7.0,7.0,6.0,13.0,5.0,9.0,0.0,0.0,0.0,4.0,100.0,100.0,1.0,0.0,41032.0,25769.0,9900.0,27832.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140389,,18000.0,18000.0,17750.0, 36 months,14.49,619.49,C,C4,Property Manager,5 years,OWN,87000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140389,,other,Other,070xx,NJ,13.97,0.0,May-2008,670.0,674.0,1.0,31.0,,13.0,0.0,9960.0,60.7,16.0,f,0.0,0.0,19023.1117064807,18758.9,18000.0,1023.11,0.0,0.0,0.0,Mar-2017,16559.64,,Feb-2019,664.0,660.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,44729.0,1.0,5.0,0.0,2.0,14.0,34769.0,82.0,1.0,2.0,3197.0,76.0,16400.0,2.0,0.0,1.0,4.0,3441.0,1358.0,84.2,0.0,0.0,56.0,100.0,4.0,4.0,0.0,4.0,,5.0,,0.0,5.0,7.0,5.0,6.0,5.0,8.0,11.0,7.0,13.0,0.0,0.0,0.0,1.0,78.6,80.0,0.0,0.0,58958.0,44729.0,8600.0,42558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90294323,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,Registered Nurse,< 1 year,MORTGAGE,58000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90294323,,other,Other,549xx,WI,17.9,0.0,Sep-2009,675.0,679.0,0.0,,,16.0,0.0,6964.0,27.4,25.0,f,0.0,0.0,12125.5800000504,12125.58,12000.0,125.58,0.0,0.0,0.0,Nov-2016,12135.24,,Sep-2016,679.0,675.0,0.0,,1.0,Individual,,,,0.0,299.0,86371.0,2.0,5.0,1.0,2.0,11.0,79407.0,96.0,2.0,3.0,4625.0,67.0,25400.0,1.0,8.0,0.0,6.0,5758.0,8337.0,43.7,0.0,0.0,84.0,51.0,3.0,3.0,0.0,3.0,,23.0,,0.0,2.0,4.0,4.0,5.0,10.0,10.0,14.0,4.0,16.0,0.0,0.0,0.0,4.0,100.0,25.0,0.0,0.0,103268.0,86371.0,14800.0,77868.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240822,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,CSR,3 years,RENT,32000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240822,,other,Other,974xx,OR,24.61,0.0,Mar-2004,680.0,684.0,0.0,26.0,,5.0,0.0,3380.0,99.4,15.0,f,1679.32,1679.32,7252.68,7252.68,5320.68,1932.0,0.0,0.0,0.0,Mar-2019,249.54,Apr-2019,Mar-2019,594.0,590.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,15141.0,0.0,1.0,0.0,0.0,55.0,11761.0,60.0,0.0,1.0,2377.0,65.0,3400.0,0.0,5.0,1.0,1.0,5047.0,23.0,99.0,0.0,0.0,126.0,150.0,21.0,21.0,0.0,21.0,50.0,3.0,26.0,3.0,1.0,2.0,1.0,3.0,4.0,4.0,11.0,2.0,5.0,0.0,0.0,0.0,0.0,66.7,100.0,0.0,0.0,23142.0,15141.0,2400.0,19742.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90309401,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Scheduling Supervisor,7 years,RENT,65000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90309401,,debt_consolidation,Debt consolidation,300xx,GA,21.92,0.0,Jul-2005,675.0,679.0,3.0,,,13.0,0.0,8682.0,56.4,22.0,f,2386.67,2386.67,10472.93,10472.93,7613.33,2859.6,0.0,0.0,0.0,Mar-2019,361.48,Apr-2019,Mar-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,29815.0,6.0,3.0,1.0,2.0,6.0,21133.0,70.0,5.0,9.0,2237.0,66.0,15400.0,0.0,0.0,3.0,11.0,2293.0,5264.0,57.9,0.0,0.0,133.0,134.0,3.0,3.0,0.0,3.0,,3.0,,0.0,7.0,9.0,7.0,10.0,9.0,10.0,13.0,9.0,13.0,0.0,0.0,0.0,6.0,100.0,28.6,0.0,0.0,45512.0,29815.0,12500.0,30112.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189903,,14000.0,14000.0,14000.0, 60 months,17.99,355.44,D,D2,Student Re;porting Facilator,10+ years,MORTGAGE,57000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189903,,home_improvement,Home improvement,301xx,GA,28.21,3.0,Mar-2001,670.0,674.0,1.0,19.0,35.0,10.0,5.0,11437.0,68.5,16.0,f,8760.8,8760.8,10272.78,10272.78,5239.2,5033.58,0.0,0.0,0.0,Mar-2019,355.44,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,200977.0,0.0,3.0,1.0,2.0,10.0,36292.0,79.0,0.0,2.0,4956.0,76.0,16700.0,3.0,2.0,2.0,4.0,20098.0,2633.0,78.1,0.0,0.0,157.0,186.0,22.0,10.0,1.0,24.0,20.0,0.0,19.0,0.0,4.0,6.0,4.0,5.0,7.0,6.0,8.0,6.0,10.0,0.0,0.0,0.0,1.0,75.0,75.0,0.0,5.0,219083.0,47729.0,12000.0,45836.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251373,,24000.0,24000.0,24000.0, 60 months,18.99,622.45,D,D3,Bartender,10+ years,RENT,64000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251373,,debt_consolidation,Debt consolidation,956xx,CA,19.37,0.0,Aug-1991,710.0,714.0,0.0,,,10.0,0.0,18652.0,67.6,12.0,f,0.0,0.0,27829.368264330296,27829.37,24000.0,3829.37,0.0,0.0,0.0,Aug-2017,22252.64,,Aug-2017,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,36194.0,1.0,1.0,0.0,0.0,37.0,17542.0,56.0,1.0,3.0,4859.0,62.0,27600.0,0.0,0.0,0.0,3.0,3619.0,8282.0,64.0,0.0,0.0,37.0,301.0,2.0,2.0,0.0,2.0,,15.0,,0.0,6.0,9.0,6.0,6.0,1.0,9.0,11.0,9.0,10.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,58737.0,36194.0,23000.0,31137.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067702,,25850.0,25850.0,25850.0, 36 months,18.99,947.43,D,D3,haba manager,10+ years,OWN,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067702,,house,Home buying,600xx,IL,31.29,0.0,Feb-2005,720.0,724.0,0.0,,93.0,15.0,1.0,13389.0,28.1,21.0,f,0.0,0.0,32162.9224452473,32162.92,25850.0,6312.92,0.0,0.0,0.0,May-2018,15136.45,,May-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,180.0,31340.0,1.0,3.0,0.0,1.0,19.0,17951.0,40.0,2.0,4.0,6807.0,34.0,47600.0,1.0,0.0,1.0,5.0,2089.0,22691.0,28.0,0.0,0.0,139.0,74.0,5.0,5.0,0.0,5.0,,1.0,,0.0,6.0,7.0,6.0,6.0,8.0,12.0,13.0,7.0,15.0,0.0,0.0,0.0,2.0,100.0,16.7,1.0,0.0,92546.0,31340.0,31500.0,44946.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111085,,8000.0,8000.0,8000.0, 36 months,13.49,271.45,C,C2,Senior Accountant,< 1 year,MORTGAGE,70000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111085,,moving,Moving and relocation,064xx,CT,7.39,0.0,Dec-2004,680.0,684.0,1.0,31.0,,8.0,0.0,17499.0,64.8,11.0,f,1817.25,1817.25,7866.05,7866.05,6182.75,1683.3,0.0,0.0,0.0,Mar-2019,271.45,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,149357.0,0.0,2.0,0.0,0.0,78.0,5905.0,33.0,1.0,3.0,8680.0,52.0,27000.0,0.0,0.0,2.0,3.0,18670.0,2501.0,87.5,0.0,0.0,130.0,141.0,10.0,10.0,3.0,10.0,34.0,0.0,34.0,0.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,8.0,0.0,0.0,0.0,1.0,81.8,75.0,0.0,0.0,183457.0,23404.0,20000.0,17857.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90151317,,25000.0,25000.0,25000.0, 36 months,14.49,860.41,C,C4,,,RENT,71000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90151317,,debt_consolidation,Debt consolidation,334xx,FL,21.28,0.0,Jul-1986,720.0,724.0,1.0,,,11.0,0.0,30110.0,39.1,33.0,f,5741.89,5741.89,24931.77,24931.77,19258.11,5673.66,0.0,0.0,0.0,Mar-2019,860.41,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,60509.0,1.0,1.0,0.0,2.0,18.0,30399.0,,1.0,1.0,14344.0,39.0,77100.0,0.0,0.0,1.0,3.0,5501.0,42690.0,41.4,0.0,0.0,181.0,362.0,0.0,0.0,1.0,0.0,,0.0,,0.0,6.0,6.0,8.0,14.0,5.0,10.0,26.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,115129.0,60509.0,72800.0,38029.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90118255,,35000.0,35000.0,34750.0, 36 months,15.59,1223.43,C,C5,Program Manager,4 years,RENT,95000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90118255,,credit_card,Credit card refinancing,941xx,CA,15.68,0.0,Nov-2001,700.0,704.0,0.0,,,7.0,0.0,37605.0,76.9,17.0,f,0.0,0.0,40428.2397176136,40139.47,35000.0,5428.24,0.0,0.0,0.0,Dec-2017,24553.96,,Feb-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,63407.0,0.0,2.0,0.0,1.0,16.0,25802.0,65.0,1.0,3.0,15443.0,72.0,48900.0,0.0,2.0,0.0,4.0,9058.0,11295.0,76.9,0.0,0.0,152.0,178.0,9.0,9.0,0.0,9.0,,,,0.0,5.0,5.0,5.0,9.0,7.0,5.0,10.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,80.0,0.0,0.0,88432.0,63407.0,48900.0,39532.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90139416,,29900.0,29900.0,29900.0, 36 months,13.99,1021.77,C,C3,Area Trainer,9 years,RENT,140000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90139416,,debt_consolidation,Debt consolidation,980xx,WA,25.55,0.0,Jan-1997,680.0,684.0,0.0,72.0,3.0,13.0,1.0,18752.0,34.7,19.0,f,0.0,0.0,21518.27,21518.27,15911.09,5607.18,0.0,0.0,0.0,Jul-2018,1021.77,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,120179.0,2.0,4.0,2.0,5.0,3.0,101427.0,47.0,1.0,6.0,11543.0,40.0,54100.0,0.0,1.0,1.0,11.0,9245.0,33447.0,35.2,0.0,0.0,236.0,66.0,1.0,1.0,0.0,1.0,,8.0,,0.0,5.0,6.0,8.0,8.0,10.0,9.0,9.0,6.0,13.0,0.0,0.0,0.0,3.0,94.7,0.0,0.0,1.0,158755.0,120179.0,51600.0,104655.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90151297,,16925.0,16925.0,16900.0, 36 months,17.99,611.8,D,D2,Accounts Payable Coordinator,5 years,OWN,61000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90151297,,debt_consolidation,Debt consolidation,328xx,FL,22.71,1.0,May-1991,690.0,694.0,2.0,21.0,,9.0,0.0,29116.0,27.0,24.0,f,0.0,0.0,9946.88,9932.19,6420.56,3351.32,0.0,175.0,31.499999937800002,Feb-2018,611.8,,Mar-2019,664.0,660.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,43498.0,3.0,1.0,1.0,1.0,6.0,14382.0,90.0,3.0,4.0,18104.0,35.0,107700.0,1.0,0.0,3.0,5.0,4833.0,75992.0,27.6,0.0,0.0,6.0,304.0,2.0,2.0,2.0,2.0,48.0,1.0,48.0,7.0,4.0,5.0,6.0,14.0,1.0,8.0,20.0,5.0,9.0,0.0,0.0,1.0,4.0,70.8,0.0,0.0,0.0,123700.0,43498.0,104900.0,16000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Sep-2018,ACTIVE,Aug-2018,5095.09,45.0,24.0 +90140842,,13000.0,13000.0,13000.0, 36 months,14.49,447.41,C,C4,Teacher,< 1 year,OWN,40900.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140842,,credit_card,Credit card refinancing,678xx,KS,29.52,0.0,Jul-2009,715.0,719.0,3.0,,,14.0,0.0,7010.0,42.5,30.0,f,0.0,0.0,14764.0816826034,14764.08,13000.0,1764.08,0.0,0.0,0.0,Dec-2017,5319.61,,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,86379.0,2.0,10.0,1.0,3.0,2.0,79369.0,91.0,1.0,2.0,6167.0,83.0,16500.0,0.0,1.0,8.0,5.0,6170.0,1433.0,81.1,0.0,0.0,86.0,48.0,1.0,1.0,0.0,29.0,,0.0,,0.0,1.0,2.0,1.0,1.0,24.0,4.0,6.0,2.0,14.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,103891.0,86379.0,7600.0,87391.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181578,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Sr Business Analyst,< 1 year,RENT,77000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181578,,home_improvement,Home improvement,554xx,MN,9.34,1.0,Sep-2003,665.0,669.0,1.0,21.0,,6.0,0.0,3568.0,10.3,29.0,f,1838.94,1838.94,7981.35,7981.35,6161.06,1820.29,0.0,0.0,0.0,Mar-2019,275.33,Apr-2019,Mar-2019,704.0,700.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,57587.0,2.0,2.0,2.0,3.0,2.0,54019.0,100.0,1.0,2.0,2083.0,36.0,34500.0,1.0,9.0,13.0,6.0,9598.0,30932.0,10.3,0.0,0.0,116.0,156.0,8.0,2.0,1.0,8.0,63.0,0.0,63.0,10.0,2.0,2.0,4.0,8.0,16.0,4.0,12.0,2.0,6.0,0.0,0.0,1.0,4.0,66.7,0.0,0.0,0.0,90989.0,57587.0,34500.0,56489.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90190651,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,PROCESS TECHNICIAN,< 1 year,RENT,45000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90190651,,medical,Medical expenses,950xx,CA,30.59,2.0,Nov-2003,670.0,674.0,0.0,21.0,70.0,14.0,1.0,5864.0,27.9,27.0,f,0.0,0.0,7851.96,7851.96,5413.85,2438.11,0.0,0.0,0.0,Jan-2018,524.33,,Mar-2019,579.0,575.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,44339.0,0.0,3.0,1.0,2.0,11.0,38475.0,84.0,5.0,5.0,1967.0,66.0,21000.0,5.0,7.0,10.0,7.0,3411.0,2533.0,43.7,0.0,0.0,118.0,154.0,8.0,8.0,0.0,28.0,21.0,1.0,21.0,1.0,1.0,6.0,2.0,4.0,7.0,11.0,20.0,6.0,14.0,0.0,0.0,0.0,6.0,85.7,50.0,1.0,0.0,67096.0,44339.0,4500.0,46096.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405695,,6200.0,6200.0,6200.0, 36 months,14.49,213.38,C,C4,Building Official,1 year,RENT,61000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405695,,debt_consolidation,Debt consolidation,750xx,TX,14.66,3.0,Oct-2004,670.0,674.0,1.0,2.0,,8.0,0.0,6027.0,67.0,14.0,f,0.0,0.0,7475.761565011,7475.76,6200.0,1275.76,0.0,0.0,0.0,Aug-2018,2969.83,,Sep-2018,699.0,695.0,0.0,2.0,1.0,Individual,,,,1.0,0.0,20662.0,0.0,1.0,0.0,0.0,29.0,13630.0,43.0,1.0,2.0,1884.0,49.0,9000.0,0.0,4.0,2.0,3.0,2583.0,1844.0,62.4,0.0,1002.0,44.0,81.0,10.0,7.0,2.0,10.0,,0.0,,3.0,2.0,5.0,2.0,5.0,2.0,5.0,8.0,5.0,7.0,1.0,0.0,2.0,2.0,64.3,50.0,0.0,0.0,41797.0,20662.0,4900.0,31792.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404729,,25000.0,25000.0,24975.0, 36 months,16.99,891.2,D,D1,Office manager,10+ years,RENT,54000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404729,,debt_consolidation,Debt consolidation,903xx,CA,22.09,0.0,May-1996,690.0,694.0,0.0,41.0,,14.0,0.0,16955.0,53.0,24.0,f,0.0,0.0,21101.46,21080.36,14485.98,6282.19,44.56,288.73,51.9714,Feb-2019,288.73,,Mar-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,40965.0,1.0,1.0,1.0,1.0,4.0,24010.0,95.0,0.0,0.0,4932.0,72.0,32000.0,0.0,0.0,1.0,1.0,2926.0,9337.0,55.5,0.0,0.0,127.0,244.0,36.0,4.0,0.0,41.0,,4.0,41.0,0.0,5.0,11.0,6.0,10.0,4.0,13.0,20.0,11.0,14.0,0.0,0.0,0.0,1.0,95.8,50.0,0.0,0.0,57297.0,40965.0,21000.0,25297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,4952.0,45.0,18.0 +90320378,,35000.0,35000.0,34725.0, 60 months,27.79,1085.33,F,F5,Sales,4 years,MORTGAGE,130000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320378,,debt_consolidation,Debt consolidation,782xx,TX,34.03,0.0,Mar-1996,685.0,689.0,3.0,,,25.0,0.0,22336.0,39.5,54.0,f,0.0,0.0,10799.26,10714.41,3052.67,7746.59,0.0,0.0,0.0,Aug-2017,1085.33,,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,417587.0,3.0,7.0,1.0,5.0,4.0,176684.0,53.0,2.0,4.0,2515.0,46.0,56500.0,7.0,12.0,8.0,9.0,16703.0,13763.0,34.5,0.0,0.0,246.0,63.0,2.0,2.0,1.0,2.0,,1.0,,0.0,5.0,11.0,9.0,15.0,23.0,17.0,30.0,11.0,25.0,0.0,0.0,0.0,3.0,100.0,11.1,0.0,0.0,497866.0,199020.0,21000.0,214649.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410252,,11725.0,11725.0,11725.0, 36 months,13.49,397.84,C,C2,VENDING ROUTE DRIVER,10+ years,MORTGAGE,31200.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410252,,debt_consolidation,Debt consolidation,245xx,VA,17.12,0.0,Jul-1986,660.0,664.0,1.0,,,9.0,0.0,13485.0,89.3,12.0,f,2663.54,2663.54,11528.57,11528.57,9061.46,2467.11,0.0,0.0,0.0,Mar-2019,397.84,Apr-2019,Mar-2019,559.0,555.0,0.0,,1.0,Individual,,,,0.0,2008.0,106197.0,1.0,0.0,0.0,0.0,,0.0,,1.0,3.0,1897.0,89.0,15100.0,0.0,0.0,1.0,3.0,11800.0,355.0,94.0,0.0,0.0,,362.0,5.0,5.0,3.0,13.0,,5.0,,0.0,5.0,6.0,5.0,6.0,0.0,7.0,9.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,133902.0,13485.0,5900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240868,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Designer,3 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240868,,debt_consolidation,Debt consolidation,481xx,MI,18.32,3.0,Jun-2003,660.0,664.0,0.0,14.0,71.0,22.0,5.0,11810.0,62.5,30.0,f,2699.68,2699.68,11826.11,11826.11,9300.32,2525.79,0.0,0.0,0.0,Mar-2019,407.17,Apr-2019,Mar-2019,659.0,655.0,0.0,20.0,1.0,Individual,,,,0.0,150.0,62273.0,1.0,6.0,1.0,1.0,10.0,50463.0,128.0,2.0,4.0,2080.0,107.0,18900.0,0.0,0.0,0.0,5.0,3114.0,3108.0,74.3,0.0,0.0,121.0,159.0,3.0,3.0,0.0,19.0,14.0,21.0,14.0,1.0,8.0,10.0,8.0,10.0,9.0,16.0,21.0,10.0,22.0,0.0,0.0,1.0,3.0,89.3,75.0,1.0,4.0,58323.0,62273.0,12100.0,39423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90386210,,35000.0,35000.0,35000.0, 60 months,21.49,956.55,D,D5,Vice President,10+ years,MORTGAGE,130000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90386210,,debt_consolidation,Debt consolidation,657xx,MO,11.78,2.0,Aug-1986,665.0,669.0,0.0,13.0,,17.0,0.0,8846.0,89.4,54.0,f,22611.58,22611.58,27635.48,27635.48,12388.42,15247.06,0.0,0.0,0.0,Mar-2019,956.55,Apr-2019,Mar-2019,689.0,685.0,0.0,44.0,1.0,Joint App,160000.0,11.93,Not Verified,0.0,0.0,154266.0,1.0,6.0,0.0,4.0,13.0,44619.0,70.0,1.0,6.0,968.0,73.0,9900.0,2.0,0.0,0.0,10.0,9642.0,73.0,97.2,0.0,0.0,185.0,361.0,2.0,2.0,2.0,14.0,38.0,14.0,13.0,0.0,4.0,9.0,5.0,16.0,26.0,10.0,26.0,9.0,17.0,0.0,0.0,0.0,1.0,72.2,100.0,0.0,0.0,203721.0,53465.0,2600.0,63676.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90160890,,25000.0,25000.0,24950.0, 36 months,13.49,848.27,C,C2,Controller,9 years,MORTGAGE,345000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90160890,,debt_consolidation,Debt consolidation,085xx,NJ,17.15,0.0,Dec-2005,660.0,664.0,1.0,,115.0,24.0,1.0,376435.0,63.4,38.0,f,0.0,0.0,27910.340028485098,27854.52,25000.0,2910.34,0.0,0.0,0.0,Oct-2017,1199.11,,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,1064850.0,1.0,4.0,2.0,3.0,5.0,73700.0,79.0,0.0,4.0,24315.0,71.0,440500.0,2.0,1.0,2.0,9.0,44369.0,20429.0,73.5,0.0,0.0,121.0,129.0,14.0,5.0,4.0,14.0,,5.0,,0.0,10.0,13.0,14.0,21.0,6.0,19.0,28.0,13.0,24.0,0.0,0.0,0.0,2.0,100.0,57.1,1.0,0.0,1159280.0,450135.0,77200.0,93280.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90294629,,6725.0,6725.0,6725.0, 36 months,21.49,255.06,D,D5,Produce manager,10+ years,MORTGAGE,34000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90294629,,debt_consolidation,Debt consolidation,723xx,AR,33.36,0.0,Apr-1992,660.0,664.0,1.0,,15.0,7.0,1.0,1087.0,23.6,61.0,f,0.0,0.0,4756.72,4756.72,2293.29,1648.43,15.0,800.0,143.99999994479998,Jun-2018,50.0,,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,4444.0,38477.0,1.0,2.0,2.0,3.0,6.0,37390.0,93.0,3.0,3.0,963.0,86.0,4600.0,14.0,18.0,28.0,6.0,6413.0,2113.0,34.0,0.0,0.0,121.0,154.0,7.0,6.0,1.0,7.0,,0.0,,0.0,2.0,2.0,3.0,19.0,27.0,5.0,33.0,2.0,6.0,0.0,0.0,0.0,5.0,100.0,0.0,1.0,0.0,44839.0,38477.0,3200.0,40239.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,May-2018,ACTIVE,May-2018,2577.0,54.99,18.0 +90147900,,9600.0,9600.0,9600.0, 36 months,21.49,364.11,D,D5,Cuatomer Serice Manager,7 years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90147900,,other,Other,303xx,GA,2.52,0.0,Sep-1996,665.0,669.0,0.0,90.0,,6.0,0.0,2960.0,95.5,13.0,f,0.0,0.0,10582.2157795598,10582.22,9600.0,982.22,0.0,0.0,0.0,Apr-2017,8773.13,,Apr-2017,704.0,700.0,0.0,90.0,1.0,Individual,,,,0.0,0.0,12460.0,2.0,2.0,2.0,2.0,5.0,9500.0,100.0,0.0,0.0,2858.0,99.0,3100.0,0.0,0.0,0.0,2.0,3115.0,140.0,95.5,0.0,0.0,5.0,240.0,28.0,5.0,0.0,28.0,,,90.0,1.0,2.0,2.0,3.0,5.0,2.0,4.0,11.0,2.0,6.0,0.0,0.0,0.0,2.0,92.3,50.0,0.0,0.0,12600.0,12460.0,3100.0,9500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90400846,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Sr. Programmer Analyst,10+ years,MORTGAGE,51425.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90400846,,major_purchase,Major purchase,440xx,OH,13.19,0.0,Sep-1995,670.0,674.0,0.0,65.0,71.0,8.0,1.0,4184.0,41.8,14.0,f,0.0,0.0,9284.5833272572,9284.58,8000.0,1284.58,0.0,0.0,0.0,Feb-2018,5161.07,,Feb-2018,679.0,675.0,0.0,74.0,1.0,Individual,,,,0.0,109.0,90966.0,3.0,2.0,1.0,2.0,10.0,18765.0,86.0,3.0,4.0,2140.0,72.0,10000.0,1.0,0.0,0.0,6.0,11371.0,2836.0,51.9,0.0,0.0,104.0,252.0,0.0,0.0,2.0,0.0,,13.0,,1.0,2.0,3.0,3.0,3.0,4.0,5.0,7.0,3.0,8.0,0.0,0.0,0.0,4.0,85.7,0.0,0.0,0.0,109148.0,22949.0,5900.0,21942.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221258,,32000.0,32000.0,32000.0, 60 months,14.49,752.74,C,C4,tacher,10+ years,MORTGAGE,87000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221258,,debt_consolidation,Debt consolidation,751xx,TX,34.39,0.0,May-2000,690.0,694.0,0.0,,,12.0,0.0,21380.0,45.9,32.0,w,19368.7,19368.7,21826.02,21826.02,12631.3,9194.72,0.0,0.0,0.0,Mar-2019,752.74,Apr-2019,Mar-2019,734.0,730.0,1.0,,1.0,Individual,,,,0.0,423.0,148263.0,1.0,4.0,1.0,2.0,3.0,39518.0,55.0,0.0,0.0,7622.0,53.0,46600.0,0.0,2.0,1.0,2.0,12355.0,5450.0,70.2,0.0,0.0,196.0,155.0,56.0,3.0,3.0,106.0,,3.0,,0.0,2.0,4.0,2.0,4.0,19.0,6.0,9.0,4.0,12.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,220950.0,66249.0,18300.0,71949.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90092595,,15000.0,15000.0,15000.0, 60 months,18.99,389.03,D,D3,Account Manager ,10+ years,RENT,70210.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90092595,,debt_consolidation,Debt consolidation,721xx,AR,13.78,0.0,Sep-2000,695.0,699.0,2.0,31.0,,14.0,0.0,8668.0,30.4,22.0,f,0.0,0.0,19690.0617855017,19690.06,15000.0,4690.06,0.0,0.0,0.0,Aug-2018,11823.97,,Feb-2019,649.0,645.0,0.0,44.0,1.0,Individual,,,,0.0,389.0,41070.0,2.0,4.0,2.0,2.0,6.0,32402.0,94.0,1.0,8.0,3059.0,65.0,28500.0,3.0,1.0,6.0,11.0,2934.0,12045.0,33.5,0.0,0.0,192.0,87.0,4.0,4.0,1.0,4.0,,1.0,44.0,6.0,5.0,7.0,5.0,5.0,10.0,9.0,10.0,7.0,14.0,0.0,0.0,0.0,3.0,59.1,0.0,0.0,0.0,63367.0,41070.0,18100.0,34439.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181443,,20000.0,20000.0,20000.0, 36 months,14.49,688.33,C,C4,Department Management,10+ years,RENT,42000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181443,,credit_card,Credit card refinancing,453xx,OH,19.69,0.0,Dec-2000,685.0,689.0,0.0,,,9.0,0.0,22030.0,93.3,12.0,f,0.0,0.0,11707.65,11707.65,8376.13,3331.52,0.0,0.0,0.0,Mar-2018,688.33,,Jul-2018,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,22030.0,0.0,0.0,0.0,0.0,37.0,0.0,,0.0,0.0,7416.0,93.0,23600.0,0.0,0.0,0.0,0.0,2448.0,541.0,96.9,0.0,0.0,152.0,189.0,29.0,29.0,0.0,29.0,,20.0,,0.0,7.0,9.0,7.0,7.0,2.0,9.0,10.0,9.0,9.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,23600.0,22030.0,17400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90220535,,7975.0,7975.0,7975.0, 36 months,13.49,270.6,C,C2,Service Rep III,5 years,OWN,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90220535,,credit_card,Credit card refinancing,115xx,NY,4.94,1.0,Oct-1989,665.0,669.0,1.0,16.0,,8.0,0.0,8613.0,22.7,31.0,f,0.0,0.0,9522.6267875725,9522.63,7975.0,1547.63,0.0,0.0,0.0,Sep-2018,3575.41,,Feb-2019,694.0,690.0,0.0,28.0,1.0,Individual,,,,0.0,0.0,26975.0,0.0,2.0,0.0,2.0,19.0,18362.0,105.0,0.0,2.0,4366.0,49.0,37900.0,1.0,0.0,5.0,5.0,3372.0,26044.0,20.8,0.0,0.0,323.0,189.0,16.0,15.0,2.0,16.0,,3.0,28.0,3.0,2.0,3.0,3.0,8.0,13.0,6.0,14.0,3.0,8.0,0.0,0.0,0.0,0.0,76.7,33.3,0.0,0.0,55396.0,26975.0,32900.0,17496.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90311542,,23000.0,23000.0,23000.0, 36 months,16.99,819.9,D,D1,Budget Analyst ,1 year,MORTGAGE,86000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90311542,,debt_consolidation,Debt consolidation,207xx,MD,32.13,0.0,Dec-2000,695.0,699.0,0.0,33.0,,44.0,0.0,16492.0,42.9,66.0,f,0.0,0.0,15595.94,15595.94,10677.98,4892.96,0.0,25.0,4.4999999883,May-2018,819.9,,Mar-2019,609.0,605.0,0.0,33.0,1.0,Individual,,,,0.0,0.0,509324.0,5.0,22.0,3.0,6.0,1.0,209485.0,115.0,4.0,7.0,4381.0,102.0,38400.0,2.0,7.0,5.0,13.0,12127.0,436.0,93.9,0.0,0.0,131.0,189.0,0.0,0.0,3.0,0.0,,2.0,,2.0,5.0,14.0,5.0,6.0,32.0,21.0,31.0,14.0,44.0,0.0,0.0,0.0,7.0,97.0,60.0,0.0,0.0,610765.0,225977.0,7200.0,182665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2019,ACTIVE,Feb-2019,5973.33,45.0,24.0 +90067294,,16000.0,16000.0,16000.0, 60 months,17.99,406.21,D,D2,Supervisor,10+ years,MORTGAGE,67000.0,Source Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067294,,credit_card,Credit card refinancing,707xx,LA,15.74,0.0,Apr-2003,670.0,674.0,1.0,31.0,,8.0,0.0,4616.0,30.4,13.0,f,10267.36,10267.36,11357.89,11357.89,5732.64,5625.25,0.0,0.0,0.0,Feb-2019,406.21,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,2196.0,33436.0,1.0,1.0,0.0,0.0,25.0,28820.0,,1.0,1.0,1800.0,30.0,15200.0,0.0,1.0,4.0,1.0,4180.0,9210.0,28.6,0.0,0.0,138.0,161.0,1.0,1.0,0.0,1.0,77.0,1.0,31.0,0.0,4.0,6.0,5.0,6.0,4.0,7.0,9.0,6.0,8.0,0.0,0.0,0.0,1.0,53.8,40.0,0.0,0.0,54541.0,33436.0,12900.0,39341.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90291289,,25000.0,25000.0,25000.0, 60 months,19.99,662.21,D,D4,Border patrol agent ,10+ years,MORTGAGE,90000.0,Verified,Oct-2016,Late (31-120 days),y,https://lendingclub.com/browse/loanDetail.action?loan_id=90291289,,debt_consolidation,Debt consolidation,785xx,TX,22.71,1.0,May-2006,665.0,669.0,2.0,20.0,,9.0,0.0,17427.0,78.5,23.0,f,17087.59,17087.59,17730.55,17730.55,7912.41,9818.14,0.0,0.0,0.0,Mar-2019,284.66,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,293568.0,2.0,3.0,1.0,2.0,12.0,60750.0,79.0,1.0,1.0,7395.0,79.0,22200.0,3.0,0.0,7.0,4.0,32619.0,3806.0,80.7,0.0,0.0,119.0,124.0,3.0,3.0,3.0,3.0,20.0,0.0,20.0,0.0,3.0,4.0,4.0,7.0,9.0,5.0,11.0,4.0,9.0,0.0,0.0,0.0,3.0,95.7,75.0,0.0,0.0,310919.0,78177.0,19700.0,72704.0,,,,,,,,,,,,,,Y,INTEREST ONLY-3 MONTHS DEFERRAL,INCOME_CURTAILMENT,ACTIVE,3.0,284.66,Jan-2019,Apr-2019,Feb-2019,3.0,11.0,In Grace Period,853.98,17479.29,509.74,Cash,N,,,,,, +90076680,,30000.0,30000.0,29950.0, 36 months,16.99,1069.44,D,D1,Loan Officer,4 years,MORTGAGE,146000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90076680,,credit_card,Credit card refinancing,326xx,FL,30.73,0.0,Feb-1990,705.0,709.0,1.0,,,23.0,0.0,45948.0,72.4,56.0,f,0.0,0.0,35803.5068993171,35743.83,30000.0,5803.51,0.0,0.0,0.0,Feb-2018,19618.2,,Feb-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,490689.0,1.0,13.0,4.0,7.0,7.0,197315.0,74.0,1.0,3.0,12196.0,73.0,63500.0,2.0,13.0,3.0,10.0,21334.0,10395.0,80.9,0.0,0.0,144.0,319.0,4.0,4.0,6.0,4.0,,0.0,,0.0,6.0,7.0,6.0,18.0,21.0,8.0,29.0,7.0,23.0,0.0,0.0,0.0,5.0,100.0,83.3,0.0,0.0,605242.0,243263.0,54500.0,257260.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90231007,,27200.0,27200.0,27175.0, 60 months,8.99,564.5,B,B1,Electrical Project Manager,4 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90231007,,debt_consolidation,Debt consolidation,630xx,MO,21.33,0.0,Aug-1999,735.0,739.0,1.0,,,11.0,0.0,18960.0,37.0,28.0,f,0.0,0.0,31970.5149738625,31941.13,27200.0,4770.51,0.0,0.0,0.0,Mar-2019,16198.47,,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,207657.0,1.0,2.0,2.0,3.0,1.0,48335.0,100.0,0.0,1.0,9575.0,49.0,51200.0,2.0,2.0,1.0,6.0,18878.0,31240.0,37.8,0.0,0.0,192.0,205.0,21.0,1.0,4.0,21.0,,3.0,,0.0,2.0,2.0,7.0,12.0,10.0,8.0,14.0,2.0,11.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,248758.0,67295.0,50200.0,53058.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111260,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Registered Nurse,< 1 year,MORTGAGE,68000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111260,,home_improvement,Home improvement,762xx,TX,12.27,0.0,Nov-2001,660.0,664.0,3.0,,77.0,11.0,1.0,22018.0,62.4,45.0,f,1827.2,1827.2,7968.72,7968.72,6172.8,1795.92,0.0,0.0,0.0,Mar-2019,273.39,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,389956.0,3.0,1.0,0.0,1.0,14.0,29702.0,98.0,2.0,3.0,5508.0,79.0,35300.0,3.0,2.0,5.0,5.0,35451.0,4902.0,75.2,0.0,0.0,178.0,177.0,3.0,3.0,2.0,4.0,,4.0,,0.0,3.0,6.0,4.0,4.0,34.0,9.0,9.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,75.0,0.0,0.0,404862.0,51720.0,19800.0,30346.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238787,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Shop Floorman,10+ years,RENT,117000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238787,,debt_consolidation,Debt consolidation,590xx,MT,21.66,1.0,Nov-2003,680.0,684.0,1.0,15.0,99.0,7.0,2.0,7662.0,51.4,39.0,f,21342.48,21342.48,26357.31,26357.31,13657.52,12699.79,0.0,0.0,0.0,Mar-2019,888.58,Apr-2019,Mar-2019,694.0,690.0,0.0,56.0,1.0,Individual,,,,0.0,66.0,87119.0,1.0,4.0,2.0,6.0,6.0,79457.0,88.0,0.0,1.0,0.0,78.0,14900.0,3.0,4.0,10.0,7.0,12446.0,,,0.0,0.0,154.0,138.0,21.0,6.0,3.0,,15.0,0.0,15.0,2.0,0.0,3.0,0.0,4.0,27.0,3.0,9.0,3.0,7.0,0.0,0.0,0.0,2.0,86.8,,0.0,2.0,104759.0,87119.0,0.0,89859.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90224953,,18000.0,18000.0,18000.0, 60 months,13.49,414.09,C,C2,Team Leader,3 years,MORTGAGE,55000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90224953,,debt_consolidation,Debt consolidation,088xx,NJ,14.9,0.0,Jan-1998,695.0,699.0,0.0,,,8.0,0.0,19368.0,82.4,25.0,f,0.0,0.0,4127.41,4127.41,2227.79,1899.62,0.0,0.0,0.0,Aug-2017,414.09,,Jul-2018,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,23238.0,1.0,1.0,0.0,0.0,27.0,3707.0,34.0,3.0,3.0,5296.0,64.0,23500.0,0.0,0.0,2.0,3.0,2905.0,4132.0,82.4,0.0,0.0,166.0,224.0,4.0,4.0,1.0,4.0,,11.0,,0.0,6.0,6.0,6.0,17.0,6.0,6.0,17.0,6.0,8.0,0.0,0.0,0.0,3.0,100.0,83.3,0.0,0.0,36218.0,23238.0,23500.0,10800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130792,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,driver,2 years,MORTGAGE,185000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130792,,home_improvement,Home improvement,751xx,TX,2.45,0.0,Oct-2008,680.0,684.0,2.0,35.0,,6.0,0.0,5260.0,68.3,17.0,f,2254.34,2254.34,9734.86,9734.86,7745.66,1989.2,0.0,0.0,0.0,Mar-2019,335.93,Apr-2019,Mar-2019,644.0,640.0,0.0,46.0,1.0,Individual,,,,0.0,0.0,159289.0,0.0,1.0,0.0,0.0,27.0,619.0,13.0,1.0,2.0,4418.0,46.0,7700.0,2.0,3.0,5.0,2.0,26548.0,2440.0,68.3,0.0,0.0,89.0,95.0,7.0,7.0,1.0,7.0,35.0,0.0,35.0,3.0,3.0,3.0,4.0,7.0,7.0,4.0,8.0,3.0,6.0,0.0,0.0,0.0,1.0,76.5,25.0,0.0,0.0,184501.0,5879.0,7700.0,4971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90156995,,28000.0,28000.0,28000.0, 60 months,19.99,741.68,D,D4,Owner,10+ years,MORTGAGE,225000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90156995,,debt_consolidation,Debt consolidation,982xx,WA,12.76,0.0,Nov-1999,695.0,699.0,2.0,38.0,91.0,29.0,1.0,34570.0,45.4,34.0,f,0.0,0.0,11835.78,11835.78,4999.35,6836.43,0.0,0.0,0.0,Feb-2018,741.68,,Mar-2019,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,455012.0,8.0,4.0,3.0,4.0,3.0,81399.0,88.0,5.0,7.0,8625.0,63.0,76100.0,11.0,0.0,10.0,13.0,15690.0,31187.0,41.2,0.0,0.0,132.0,202.0,4.0,3.0,2.0,6.0,38.0,4.0,38.0,0.0,8.0,11.0,17.0,19.0,5.0,23.0,27.0,11.0,29.0,0.0,0.0,0.0,10.0,97.1,23.5,0.0,1.0,508927.0,115969.0,53000.0,90678.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90406010,,12500.0,12500.0,12500.0, 60 months,10.99,271.72,B,B4,,,OWN,25000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90406010,,debt_consolidation,Debt consolidation,030xx,NH,13.35,1.0,Jun-1986,735.0,739.0,0.0,15.0,,8.0,0.0,14393.0,22.5,12.0,f,7304.15,7304.15,7872.25,7872.25,5195.85,2676.4,0.0,0.0,0.0,Mar-2019,271.72,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,14393.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,7102.0,23.0,64000.0,0.0,0.0,0.0,0.0,1799.0,41607.0,25.7,0.0,0.0,,363.0,34.0,34.0,0.0,42.0,15.0,,15.0,0.0,3.0,3.0,6.0,8.0,0.0,8.0,12.0,3.0,8.0,0.0,0.0,0.0,0.0,91.7,0.0,0.0,0.0,64000.0,14393.0,56000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271232,,35000.0,35000.0,34975.0, 36 months,18.99,1282.79,D,D3,Administrative assistant ,7 years,RENT,76000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271232,,debt_consolidation,Debt consolidation,113xx,NY,18.56,0.0,Oct-1997,675.0,679.0,0.0,,,4.0,0.0,17610.0,88.1,19.0,f,0.0,0.0,14073.77,14063.72,8683.59,5390.18,0.0,0.0,0.0,Sep-2017,1282.79,,Feb-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,46384.0,1.0,0.0,0.0,0.0,51.0,0.0,,1.0,2.0,10673.0,88.0,20000.0,0.0,0.0,0.0,2.0,11596.0,2390.0,88.1,0.0,0.0,227.0,166.0,3.0,3.0,0.0,3.0,,17.0,,0.0,3.0,3.0,3.0,4.0,6.0,3.0,12.0,3.0,4.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,60746.0,46384.0,20000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171102,,7500.0,7500.0,7500.0, 36 months,12.79,251.95,C,C1,Office Manager ,5 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171102,,debt_consolidation,Debt consolidation,724xx,AR,31.34,0.0,Aug-2003,660.0,664.0,3.0,,48.0,11.0,1.0,6113.0,71.1,34.0,f,0.0,0.0,8829.3877262882,8829.39,7500.0,1329.39,0.0,0.0,0.0,Aug-2018,3543.77,,Aug-2018,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,204996.0,2.0,5.0,2.0,4.0,2.0,75096.0,81.0,1.0,2.0,2635.0,80.0,8600.0,3.0,0.0,7.0,7.0,18636.0,732.0,85.4,0.0,0.0,157.0,108.0,3.0,2.0,2.0,17.0,,3.0,,0.0,2.0,4.0,2.0,7.0,17.0,4.0,15.0,4.0,11.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,239867.0,81209.0,5000.0,93180.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189908,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Teacter,10+ years,MORTGAGE,78000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189908,,debt_consolidation,Debt consolidation,440xx,OH,19.94,0.0,Nov-1993,665.0,669.0,2.0,,75.0,12.0,1.0,15279.0,74.2,25.0,f,0.0,0.0,14077.409313055701,14077.41,12000.0,2077.41,0.0,0.0,0.0,Jun-2018,6350.17,,Jul-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,247550.0,1.0,4.0,0.0,2.0,18.0,45875.0,69.0,3.0,4.0,1982.0,70.0,20600.0,2.0,0.0,4.0,8.0,22505.0,51.0,98.8,0.0,0.0,169.0,274.0,6.0,6.0,5.0,10.0,,6.0,,0.0,3.0,5.0,3.0,7.0,7.0,7.0,13.0,5.0,12.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,277910.0,61154.0,4400.0,66885.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407152,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,Nurse,7 years,MORTGAGE,90000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407152,,debt_consolidation,Debt consolidation,342xx,FL,16.0,0.0,Jan-1994,665.0,669.0,0.0,36.0,45.0,10.0,9.0,6450.0,43.9,19.0,w,0.0,0.0,17157.002212613,17157.0,15000.0,2157.0,0.0,0.0,0.0,Dec-2017,10457.83,,Mar-2019,654.0,650.0,0.0,60.0,1.0,Individual,,,,0.0,53.0,311306.0,1.0,2.0,1.0,2.0,8.0,28069.0,84.0,1.0,2.0,3383.0,72.0,14700.0,2.0,1.0,4.0,5.0,31131.0,5350.0,54.7,0.0,0.0,165.0,272.0,12.0,5.0,2.0,16.0,,5.0,,0.0,4.0,4.0,4.0,6.0,6.0,7.0,10.0,4.0,10.0,0.0,0.0,0.0,3.0,93.3,25.0,8.0,0.0,326370.0,34519.0,11800.0,33551.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075704,,16000.0,16000.0,15925.0, 36 months,13.49,542.89,C,C2,Quality Assurance Lead,3 years,RENT,39000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075704,,debt_consolidation,Debt consolidation,836xx,ID,25.69,0.0,Aug-2010,665.0,669.0,0.0,,49.0,15.0,1.0,14184.0,51.0,18.0,f,0.0,0.0,5137.61,5113.53,2238.86,1006.49,0.0,1892.26,340.6068,Apr-2017,542.89,,Oct-2017,524.0,520.0,0.0,,1.0,Joint App,48828.0,20.52,Not Verified,0.0,0.0,25363.0,0.0,1.0,0.0,0.0,30.0,11179.0,65.0,0.0,2.0,4405.0,56.0,27800.0,0.0,1.0,1.0,2.0,1691.0,472.0,92.5,0.0,0.0,30.0,73.0,16.0,16.0,0.0,16.0,,7.0,,0.0,3.0,9.0,3.0,5.0,1.0,14.0,17.0,9.0,15.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,45034.0,25363.0,6300.0,17234.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270671,,23100.0,23100.0,23050.0, 36 months,14.49,795.02,C,C4,RN,2 years,RENT,55000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270671,,debt_consolidation,Debt consolidation,128xx,NY,28.61,0.0,Feb-1997,675.0,679.0,0.0,,,11.0,0.0,21197.0,73.1,30.0,f,0.0,0.0,26146.1992193848,26089.61,23100.0,3046.2,0.0,0.0,0.0,Oct-2017,17419.58,,May-2018,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,102368.0,0.0,4.0,1.0,2.0,12.0,81171.0,87.0,2.0,7.0,8887.0,82.0,29000.0,1.0,0.0,2.0,9.0,9306.0,7803.0,73.1,0.0,0.0,235.0,81.0,10.0,10.0,0.0,10.0,,0.0,,0.0,6.0,6.0,7.0,13.0,11.0,7.0,19.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,42.9,0.0,0.0,113832.0,102368.0,29000.0,84832.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221069,,10000.0,10000.0,10000.0, 60 months,13.49,230.05,C,C2,Dmv specialist ,10+ years,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221069,,debt_consolidation,Debt consolidation,180xx,PA,16.46,0.0,Aug-2001,680.0,684.0,2.0,,,12.0,0.0,15460.0,66.1,39.0,f,0.0,0.0,12700.9186925352,12700.92,10000.0,2700.92,0.0,0.0,0.0,Mar-2019,6251.34,,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,132702.0,2.0,1.0,1.0,2.0,6.0,5768.0,41.0,3.0,4.0,4861.0,57.0,23400.0,4.0,0.0,5.0,6.0,12064.0,3360.0,80.9,0.0,0.0,75.0,181.0,1.0,1.0,2.0,9.0,,1.0,,0.0,5.0,9.0,5.0,18.0,7.0,10.0,30.0,9.0,12.0,0.0,0.0,0.0,4.0,100.0,80.0,0.0,0.0,168768.0,21228.0,17600.0,13968.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89025380,,14400.0,14400.0,14400.0, 36 months,12.79,483.74,C,C1,Senior Digital Designer,2 years,RENT,75000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=89025380,,debt_consolidation,Debt consolidation,553xx,MN,22.03,0.0,Sep-2004,670.0,674.0,0.0,54.0,,7.0,0.0,14058.0,93.7,13.0,f,4130.35,4130.35,13117.25,13117.25,10269.65,2847.6,0.0,0.0,0.0,Jan-2019,483.74,Apr-2019,Mar-2019,629.0,625.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,57505.0,0.0,4.0,1.0,3.0,10.0,43447.0,74.0,0.0,0.0,11056.0,78.0,15000.0,3.0,0.0,0.0,3.0,8215.0,970.0,92.2,0.0,0.0,122.0,144.0,34.0,10.0,0.0,34.0,54.0,22.0,54.0,1.0,2.0,3.0,2.0,5.0,6.0,3.0,7.0,3.0,7.0,0.0,0.0,0.0,1.0,92.3,100.0,0.0,0.0,73663.0,57505.0,12500.0,58663.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88853181,,6000.0,6000.0,6000.0, 36 months,12.79,201.56,C,C1,Warehouse/ counter ,2 years,OWN,43000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88853181,,major_purchase,Major purchase,756xx,TX,23.73,0.0,Feb-2004,680.0,684.0,3.0,39.0,,8.0,0.0,9849.0,45.2,22.0,f,0.0,0.0,6919.6592497124,6919.66,6000.0,919.66,0.0,0.0,0.0,Apr-2018,3497.4,,Apr-2018,654.0,650.0,1.0,39.0,1.0,Individual,,,,0.0,0.0,39780.0,1.0,2.0,1.0,2.0,3.0,29931.0,89.0,1.0,2.0,4949.0,47.0,21800.0,4.0,0.0,4.0,4.0,4973.0,11006.0,45.8,0.0,0.0,151.0,98.0,10.0,3.0,0.0,24.0,78.0,2.0,78.0,6.0,4.0,5.0,5.0,8.0,10.0,6.0,9.0,5.0,8.0,0.0,0.0,0.0,2.0,76.2,20.0,0.0,0.0,57820.0,39780.0,20300.0,36020.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197175,,6250.0,6250.0,6250.0, 36 months,14.49,215.11,C,C4,Production Line Leader ,10+ years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197175,,home_improvement,Home improvement,310xx,GA,11.32,0.0,Nov-2005,670.0,674.0,2.0,30.0,23.0,9.0,1.0,2282.0,25.6,14.0,f,1435.21,1435.21,6233.16,6233.16,4814.79,1418.37,0.0,0.0,0.0,Mar-2019,215.11,Apr-2019,Mar-2019,739.0,735.0,0.0,80.0,1.0,Individual,,,,0.0,424.0,11199.0,3.0,2.0,2.0,2.0,3.0,8917.0,64.0,2.0,4.0,1107.0,49.0,8900.0,3.0,2.0,5.0,6.0,1244.0,526.0,79.0,0.0,0.0,130.0,67.0,5.0,3.0,0.0,5.0,,0.0,30.0,1.0,2.0,5.0,2.0,2.0,6.0,7.0,8.0,5.0,9.0,0.0,0.0,0.0,4.0,78.6,50.0,0.0,0.0,22952.0,11199.0,2500.0,14052.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88215952,,12000.0,12000.0,12000.0, 60 months,15.59,289.21,C,C5,Warehouse Supervisor,10+ years,OWN,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88215952,,debt_consolidation,Debt consolidation,921xx,CA,10.51,0.0,Sep-1992,675.0,679.0,1.0,41.0,,11.0,0.0,6874.0,41.9,26.0,f,0.0,0.0,13360.978345084799,13360.98,12000.0,1360.98,0.0,0.0,0.0,Jul-2017,11057.69,,Jul-2017,709.0,705.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,10883.0,0.0,1.0,0.0,1.0,19.0,4009.0,68.0,2.0,7.0,2484.0,49.0,16400.0,1.0,0.0,1.0,8.0,989.0,1406.0,75.3,0.0,0.0,116.0,288.0,12.0,12.0,0.0,12.0,44.0,1.0,41.0,5.0,5.0,9.0,5.0,13.0,2.0,10.0,24.0,9.0,11.0,0.0,0.0,0.0,2.0,80.8,40.0,0.0,0.0,22274.0,10883.0,5700.0,5874.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230566,,11000.0,11000.0,11000.0, 36 months,16.99,392.13,D,D1,GIS Technician,3 years,OWN,36000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230566,,debt_consolidation,Debt consolidation,666xx,KS,15.2,1.0,Dec-1999,675.0,679.0,1.0,23.0,,9.0,0.0,3294.0,32.3,15.0,f,0.0,0.0,13227.839676247,13227.84,11000.0,2227.84,0.0,0.0,0.0,Mar-2018,6964.14,,Mar-2019,704.0,700.0,0.0,42.0,1.0,Individual,,,,0.0,397.0,20416.0,0.0,5.0,0.0,1.0,16.0,17122.0,78.0,1.0,3.0,1942.0,64.0,10200.0,2.0,0.0,4.0,4.0,2268.0,58.0,97.1,0.0,0.0,201.0,74.0,10.0,10.0,0.0,22.0,42.0,1.0,42.0,5.0,1.0,2.0,1.0,2.0,10.0,4.0,5.0,2.0,9.0,0.0,0.0,0.0,1.0,60.0,100.0,0.0,0.0,32061.0,20416.0,2000.0,21861.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140455,,7200.0,7200.0,7200.0, 36 months,16.99,256.67,D,D1,Carpenter,1 year,RENT,30000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140455,,other,Other,191xx,PA,7.68,0.0,Jul-2013,675.0,679.0,1.0,,,7.0,0.0,8235.0,38.8,7.0,f,0.0,0.0,2559.9,2559.9,1649.7,910.2,0.0,0.0,0.0,Aug-2017,256.67,,Feb-2019,629.0,625.0,0.0,,1.0,Individual,,,,0.0,0.0,8235.0,2.0,0.0,0.0,0.0,,0.0,,2.0,6.0,3846.0,39.0,21200.0,1.0,0.0,1.0,6.0,1176.0,10165.0,44.8,0.0,0.0,,38.0,5.0,5.0,0.0,5.0,,5.0,,0.0,4.0,4.0,5.0,5.0,0.0,7.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,40.0,0.0,0.0,21200.0,8235.0,18400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140563,,12000.0,12000.0,12000.0, 60 months,16.99,298.17,D,D1,Warenhouse Manager,8 years,RENT,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140563,,debt_consolidation,Debt consolidation,201xx,VA,31.42,0.0,Jun-1996,695.0,699.0,0.0,,,13.0,0.0,23486.0,66.9,21.0,f,0.0,0.0,2413.67,2413.67,1078.47,1335.2,0.0,0.0,0.0,Jun-2017,298.17,,Jan-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,49245.0,1.0,2.0,1.0,3.0,6.0,25759.0,87.0,0.0,0.0,5208.0,76.0,35100.0,0.0,0.0,0.0,3.0,4104.0,10090.0,68.6,0.0,0.0,34.0,243.0,39.0,6.0,1.0,39.0,,,,0.0,8.0,9.0,9.0,14.0,4.0,11.0,16.0,9.0,13.0,0.0,0.0,0.0,1.0,100.0,37.5,0.0,0.0,64600.0,49245.0,32100.0,29500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404436,,25000.0,25000.0,24750.0, 60 months,25.69,743.94,F,F1,District Manager,6 years,MORTGAGE,70000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404436,,other,Other,812xx,CO,15.1,0.0,Sep-1999,675.0,679.0,3.0,,,9.0,0.0,5557.0,24.8,19.0,f,0.0,0.0,2196.14,2174.18,639.7,1556.44,0.0,0.0,0.0,Jan-2017,743.94,,Jul-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,6659.0,35978.0,2.0,2.0,2.0,3.0,4.0,30421.0,81.0,2.0,3.0,1590.0,60.0,22400.0,0.0,10.0,4.0,6.0,3998.0,7410.0,17.7,0.0,0.0,113.0,204.0,2.0,2.0,0.0,2.0,,2.0,,0.0,1.0,3.0,3.0,5.0,10.0,7.0,9.0,3.0,9.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,60133.0,35978.0,9000.0,37733.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075258,,7000.0,7000.0,7000.0, 36 months,8.59,221.27,A,A5,Catering,10+ years,OWN,35000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075258,,debt_consolidation,Debt consolidation,770xx,TX,19.86,0.0,Oct-1998,785.0,789.0,1.0,,,5.0,0.0,7306.0,16.5,17.0,w,0.0,0.0,7259.7344970305,7259.73,7000.0,259.73,0.0,0.0,0.0,Mar-2017,6377.99,,Mar-2017,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,16602.0,0.0,1.0,1.0,1.0,12.0,9296.0,72.0,0.0,2.0,5798.0,29.0,44200.0,1.0,0.0,1.0,3.0,3320.0,34794.0,17.4,0.0,0.0,109.0,215.0,23.0,12.0,1.0,23.0,,4.0,,0.0,3.0,3.0,3.0,6.0,6.0,4.0,10.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,57200.0,16602.0,42100.0,13000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90180843,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Marketing Traffic Coordinator ,2 years,RENT,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90180843,,other,Other,770xx,TX,11.36,0.0,Oct-2008,665.0,669.0,0.0,52.0,,4.0,0.0,5463.0,47.5,26.0,f,0.0,0.0,12104.4784516724,12104.48,10000.0,2104.48,0.0,0.0,0.0,Feb-2019,1765.23,,Mar-2019,759.0,755.0,0.0,52.0,1.0,Individual,,,,0.0,0.0,112011.0,2.0,2.0,2.0,3.0,5.0,106548.0,90.0,1.0,2.0,5250.0,77.0,11500.0,2.0,0.0,3.0,5.0,28003.0,6037.0,47.5,0.0,0.0,95.0,24.0,2.0,2.0,0.0,2.0,,9.0,,1.0,2.0,2.0,2.0,2.0,24.0,2.0,2.0,2.0,4.0,0.0,0.0,0.0,3.0,96.2,0.0,0.0,0.0,120846.0,112011.0,11500.0,109346.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90190873,,35000.0,35000.0,34950.0, 36 months,12.79,1175.76,C,C1,Firefighter. ,10+ years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90190873,,credit_card,Credit card refinancing,773xx,TX,31.26,0.0,Oct-2000,695.0,699.0,1.0,,,24.0,0.0,42263.0,44.0,42.0,f,7890.01,7878.73,34072.17,34023.5,27109.99,6962.18,0.0,0.0,0.0,Mar-2019,1175.76,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,131673.0,2.0,4.0,1.0,5.0,8.0,89410.0,84.0,5.0,6.0,12625.0,60.0,96100.0,4.0,1.0,9.0,11.0,5725.0,37401.0,48.8,0.0,0.0,107.0,191.0,1.0,1.0,4.0,1.0,,0.0,,0.0,11.0,14.0,12.0,13.0,11.0,20.0,27.0,14.0,24.0,0.0,0.0,0.0,6.0,100.0,8.3,0.0,0.0,203199.0,131673.0,73000.0,107099.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150906,,18000.0,18000.0,18000.0, 60 months,10.49,386.81,B,B3,Food Merchandiser,10+ years,OWN,92500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150906,,debt_consolidation,Debt consolidation,481xx,MI,34.15,0.0,Oct-1998,730.0,734.0,2.0,,,26.0,0.0,17976.0,27.0,42.0,f,10463.39,10463.39,11263.33,11263.33,7536.61,3726.72,0.0,0.0,0.0,Mar-2019,386.81,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,87943.0,1.0,4.0,1.0,4.0,1.0,69967.0,58.0,0.0,1.0,3640.0,40.0,66700.0,1.0,1.0,6.0,5.0,3382.0,38156.0,31.0,0.0,0.0,127.0,215.0,18.0,1.0,2.0,18.0,,1.0,,0.0,15.0,17.0,17.0,21.0,13.0,22.0,27.0,17.0,26.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,158182.0,87943.0,55300.0,91482.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90387513,,23000.0,23000.0,23000.0, 36 months,15.59,803.97,C,C5,Owner,7 years,RENT,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90387513,,debt_consolidation,Debt consolidation,067xx,CT,24.56,0.0,Jun-2002,695.0,699.0,0.0,,72.0,7.0,1.0,6208.0,77.6,19.0,f,0.0,0.0,19343.85,19343.85,13978.45,5244.8,120.6,0.0,0.0,Nov-2018,2400.0,,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,507.0,34679.0,0.0,5.0,0.0,1.0,21.0,28471.0,43.0,0.0,0.0,3442.0,46.0,8000.0,4.0,0.0,1.0,1.0,4954.0,1792.0,77.6,0.0,0.0,171.0,109.0,26.0,21.0,0.0,26.0,,8.0,,0.0,2.0,2.0,2.0,4.0,13.0,2.0,6.0,2.0,7.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,74783.0,34679.0,8000.0,66783.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90399582,,20000.0,20000.0,20000.0, 36 months,17.99,722.95,D,D2,manager,7 years,MORTGAGE,48000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90399582,,debt_consolidation,Debt consolidation,726xx,AR,34.15,0.0,May-2000,700.0,704.0,2.0,,,12.0,0.0,16223.0,61.0,27.0,f,0.0,0.0,24960.886153312702,24960.89,20000.0,4960.89,0.0,0.0,0.0,Jul-2018,10451.92,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,123.0,123203.0,2.0,3.0,0.0,4.0,13.0,37352.0,75.0,3.0,4.0,6142.0,70.0,26600.0,2.0,1.0,4.0,8.0,10267.0,5153.0,73.2,0.0,0.0,121.0,196.0,1.0,1.0,2.0,1.0,,0.0,,0.0,6.0,8.0,6.0,9.0,13.0,8.0,12.0,8.0,12.0,0.0,0.0,0.0,3.0,100.0,66.7,0.0,0.0,169106.0,53575.0,19200.0,50006.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403782,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Dental hygienist,5 years,MORTGAGE,120000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403782,,debt_consolidation,Debt consolidation,950xx,CA,26.28,1.0,Jul-1994,675.0,679.0,1.0,6.0,,25.0,0.0,45859.0,69.2,45.0,f,0.0,0.0,23916.8758299523,23916.88,20000.0,3916.88,0.0,0.0,0.0,Sep-2018,8896.3,,Jan-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,397863.0,2.0,5.0,0.0,0.0,35.0,27067.0,32.0,1.0,1.0,4901.0,49.0,66300.0,1.0,0.0,6.0,2.0,18085.0,11295.0,48.9,0.0,0.0,132.0,266.0,2.0,2.0,3.0,2.0,,0.0,,0.0,6.0,15.0,6.0,12.0,9.0,19.0,33.0,15.0,25.0,0.0,0.0,0.0,2.0,97.8,66.7,0.0,0.0,476702.0,72926.0,22100.0,84081.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130178,,20000.0,20000.0,19975.0, 36 months,18.99,733.02,D,D3,Owner/ Operator ,6 years,OWN,74000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130178,,small_business,Business,111xx,NY,27.86,0.0,Sep-2001,715.0,719.0,2.0,,,11.0,0.0,21352.0,55.5,26.0,f,0.0,0.0,8825.22,8814.19,3994.94,2581.14,0.0,2249.14,404.8452,Jul-2017,733.02,,Jan-2018,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,53174.0,0.0,2.0,1.0,1.0,9.0,31822.0,63.0,0.0,0.0,9379.0,60.0,38500.0,3.0,0.0,4.0,1.0,5317.0,13443.0,60.3,0.0,0.0,153.0,180.0,31.0,9.0,1.0,31.0,,0.0,,0.0,4.0,5.0,6.0,14.0,4.0,9.0,21.0,5.0,11.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,88794.0,53174.0,33900.0,50294.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90110762,,24000.0,24000.0,24000.0, 60 months,8.99,498.09,B,B1,Business Application Dev Manager,4 years,MORTGAGE,140000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90110762,,credit_card,Credit card refinancing,773xx,TX,21.78,0.0,Dec-1997,740.0,744.0,0.0,53.0,,13.0,0.0,22785.0,46.6,35.0,f,13732.9,13732.9,14486.56,14486.56,10267.1,4219.46,0.0,0.0,0.0,Mar-2019,498.09,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,478174.0,0.0,2.0,1.0,2.0,12.0,68487.0,78.0,1.0,1.0,14222.0,56.0,48900.0,1.0,1.0,0.0,4.0,36783.0,17353.0,55.3,0.0,0.0,225.0,216.0,8.0,8.0,4.0,8.0,,14.0,53.0,0.0,6.0,8.0,6.0,8.0,10.0,9.0,20.0,8.0,13.0,0.0,0.0,0.0,2.0,97.1,33.3,0.0,0.0,555317.0,95003.0,38800.0,91143.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300768,,34425.0,34425.0,34125.0, 60 months,25.69,1024.4,F,F1,Supervisor,2 years,RENT,72000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300768,,debt_consolidation,Debt consolidation,956xx,CA,14.02,0.0,Jul-1998,675.0,679.0,0.0,,74.0,10.0,1.0,11755.0,75.4,23.0,f,0.0,0.0,16393.08,16250.22,2819.7,6522.73,0.0,7050.65,1269.1170000159,Jul-2017,1024.4,,Oct-2017,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,20250.0,1.0,2.0,0.0,1.0,15.0,8495.0,49.0,4.0,8.0,5255.0,62.0,15600.0,0.0,8.0,0.0,9.0,2025.0,929.0,89.4,0.0,0.0,116.0,218.0,2.0,2.0,1.0,59.0,,17.0,,0.0,3.0,6.0,3.0,7.0,5.0,8.0,17.0,6.0,10.0,0.0,0.0,0.0,4.0,100.0,66.7,1.0,0.0,32794.0,20250.0,8800.0,17194.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130342,,9600.0,9600.0,9575.0, 36 months,13.99,328.06,C,C3,BUSINESS APPLICATION ANALYST,10+ years,MORTGAGE,65000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130342,,major_purchase,Major purchase,381xx,TN,9.62,1.0,Oct-2003,665.0,669.0,3.0,18.0,41.0,10.0,2.0,13396.0,66.6,18.0,f,0.0,0.0,6930.0,6911.95,4567.39,1658.29,0.0,704.32,126.7776,May-2018,328.06,,Nov-2018,499.0,0.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,83007.0,2.0,1.0,1.0,1.0,8.0,69611.0,,3.0,6.0,2244.0,67.0,20100.0,1.0,2.0,4.0,7.0,8301.0,1532.0,72.1,0.0,0.0,144.0,155.0,1.0,1.0,1.0,16.0,68.0,1.0,18.0,1.0,3.0,8.0,3.0,5.0,4.0,9.0,13.0,8.0,10.0,0.0,0.0,0.0,4.0,88.9,66.7,2.0,0.0,86350.0,83007.0,5500.0,66250.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90169786,,18700.0,18700.0,18700.0, 36 months,18.99,685.38,D,D3,Production manager,10+ years,RENT,65520.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90169786,,credit_card,Credit card refinancing,064xx,CT,28.54,0.0,Apr-2005,685.0,689.0,3.0,,,23.0,0.0,16991.0,28.8,61.0,f,4507.53,4507.53,19856.29,19856.29,14192.47,5663.82,0.0,0.0,0.0,Mar-2019,685.38,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,42842.0,6.0,2.0,0.0,1.0,14.0,25643.0,53.0,9.0,10.0,3397.0,39.0,59000.0,1.0,2.0,5.0,12.0,1947.0,26786.0,36.1,0.0,0.0,135.0,137.0,1.0,1.0,0.0,1.0,,1.0,,0.0,7.0,10.0,12.0,31.0,9.0,20.0,51.0,10.0,23.0,0.0,0.0,0.0,9.0,100.0,0.0,0.0,0.0,109332.0,42842.0,41900.0,48605.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075710,,14000.0,14000.0,14000.0, 36 months,12.79,470.31,C,C1,driver,10+ years,MORTGAGE,50000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075710,,home_improvement,Home improvement,372xx,TN,13.32,0.0,Aug-1997,685.0,689.0,2.0,,36.0,9.0,1.0,2878.0,25.7,20.0,f,0.0,0.0,14949.894714386499,14949.89,14000.0,949.89,0.0,0.0,0.0,Apr-2017,12538.66,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,1153.0,121810.0,1.0,1.0,1.0,1.0,9.0,8501.0,85.0,1.0,1.0,2413.0,54.0,11200.0,1.0,0.0,2.0,2.0,13534.0,4487.0,35.0,0.0,0.0,56.0,229.0,0.0,0.0,1.0,25.0,,0.0,,0.0,1.0,2.0,3.0,6.0,4.0,7.0,15.0,2.0,9.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,138927.0,11379.0,6900.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88877648,,40000.0,40000.0,40000.0, 60 months,21.49,1093.19,D,D5,Probation Officer,10+ years,RENT,93400.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88877648,,debt_consolidation,Debt consolidation,088xx,NJ,14.09,0.0,Jun-1983,705.0,709.0,0.0,,,8.0,0.0,48414.0,81.8,14.0,f,0.0,0.0,52583.9719723636,52583.97,40000.0,12583.97,0.0,0.0,0.0,May-2018,32954.31,,May-2018,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,48414.0,0.0,0.0,0.0,0.0,124.0,0.0,,0.0,0.0,23450.0,82.0,59200.0,0.0,1.0,0.0,0.0,8069.0,4854.0,90.8,0.0,0.0,147.0,399.0,29.0,29.0,0.0,29.0,,,,0.0,3.0,6.0,3.0,4.0,2.0,8.0,12.0,6.0,8.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,59200.0,48414.0,52500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392915,,24000.0,24000.0,24000.0, 60 months,14.49,564.56,C,C4,Attorney,4 years,MORTGAGE,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392915,,debt_consolidation,Debt consolidation,478xx,IN,21.0,1.0,Nov-2002,660.0,664.0,0.0,22.0,,14.0,0.0,16564.0,75.6,36.0,f,0.0,0.0,30845.9005403508,30845.9,24000.0,6845.9,0.0,0.0,0.0,Mar-2019,18.9,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,178168.0,2.0,4.0,0.0,2.0,13.0,138182.0,92.0,2.0,2.0,3947.0,88.0,21900.0,1.0,2.0,0.0,4.0,13705.0,286.0,97.0,0.0,0.0,158.0,166.0,3.0,3.0,3.0,94.0,,19.0,22.0,0.0,3.0,6.0,4.0,5.0,17.0,8.0,16.0,6.0,14.0,0.0,0.0,0.0,2.0,94.4,100.0,0.0,0.0,194406.0,154746.0,9500.0,137218.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90227946,,35000.0,35000.0,35000.0, 36 months,10.49,1137.43,B,B3,Deputy Program Manager,1 year,MORTGAGE,200000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90227946,,credit_card,Credit card refinancing,606xx,IL,8.75,0.0,Aug-1996,670.0,674.0,1.0,,,20.0,0.0,40521.0,63.1,35.0,w,0.0,0.0,37897.548480666,37897.55,35000.0,2897.55,0.0,0.0,0.0,Oct-2018,999.92,,Nov-2018,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,63367.0,2.0,1.0,0.0,1.0,13.0,22846.0,76.0,2.0,2.0,8985.0,66.0,64200.0,3.0,4.0,2.0,3.0,3520.0,14974.0,69.6,0.0,0.0,78.0,241.0,1.0,1.0,1.0,59.0,,4.0,,0.0,10.0,11.0,12.0,20.0,3.0,18.0,30.0,11.0,20.0,0.0,0.0,0.0,2.0,100.0,41.7,0.0,0.0,96654.0,63367.0,49200.0,30187.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90318578,,12000.0,12000.0,12000.0, 36 months,12.79,403.12,C,C1,Maintenance Supervisor ,3 years,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90318578,,credit_card,Credit card refinancing,913xx,CA,21.21,0.0,Dec-1984,665.0,669.0,0.0,,105.0,6.0,1.0,5625.0,82.7,8.0,f,2705.07,2705.07,11681.95,11681.95,9294.93,2387.02,0.0,0.0,0.0,Mar-2019,403.12,Apr-2019,Mar-2019,579.0,575.0,1.0,,1.0,Individual,,,,0.0,700.0,23564.0,0.0,2.0,1.0,1.0,12.0,17825.0,65.0,0.0,3.0,2745.0,68.0,6800.0,0.0,0.0,0.0,5.0,3927.0,1175.0,82.7,0.0,0.0,36.0,381.0,14.0,12.0,0.0,14.0,,14.0,,0.0,3.0,3.0,3.0,4.0,2.0,3.0,4.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,1.0,34614.0,23564.0,6800.0,27639.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90120818,,12000.0,12000.0,12000.0, 36 months,16.99,427.78,D,D1,Assistant Director Athletic Development,2 years,RENT,38000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90120818,,debt_consolidation,Debt consolidation,822xx,WY,32.34,0.0,Jul-2005,680.0,684.0,0.0,,,11.0,0.0,12758.0,67.9,36.0,f,2831.53,2831.53,12462.25,12462.25,9168.47,3293.78,0.0,0.0,0.0,Mar-2019,427.78,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,136811.0,1.0,7.0,0.0,3.0,14.0,124053.0,64.0,2.0,2.0,7514.0,66.0,18800.0,0.0,2.0,1.0,5.0,12437.0,2786.0,73.0,0.0,0.0,134.0,50.0,5.0,5.0,0.0,5.0,,11.0,,0.0,1.0,3.0,2.0,2.0,32.0,4.0,4.0,3.0,11.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,155208.0,136811.0,10300.0,136408.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150890,,24000.0,24000.0,23950.0, 60 months,14.49,564.56,C,C4,Dispatcher 3,10+ years,RENT,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150890,,debt_consolidation,Debt consolidation,190xx,PA,18.24,0.0,Feb-2002,680.0,684.0,1.0,66.0,,8.0,0.0,7723.0,59.0,17.0,f,14530.48,14500.21,16401.18,16367.01,9469.52,6931.66,0.0,0.0,0.0,Mar-2019,564.56,Apr-2019,Mar-2019,679.0,675.0,1.0,,1.0,Individual,,,,0.0,222.0,40228.0,0.0,4.0,1.0,3.0,12.0,32505.0,57.0,0.0,0.0,2717.0,58.0,13100.0,2.0,3.0,1.0,3.0,5029.0,1033.0,77.5,0.0,0.0,148.0,175.0,31.0,12.0,2.0,142.0,,3.0,,0.0,2.0,4.0,2.0,3.0,9.0,4.0,6.0,4.0,8.0,0.0,0.0,0.0,1.0,94.1,100.0,0.0,0.0,69728.0,40228.0,4600.0,56628.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90265459,,14225.0,14225.0,14225.0, 60 months,8.99,295.22,B,B1,Project Engineer,2 years,MORTGAGE,54915.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90265459,,credit_card,Credit card refinancing,199xx,DE,15.78,0.0,Apr-1986,740.0,744.0,0.0,,,10.0,0.0,30326.0,51.9,15.0,f,0.0,0.0,14875.0726065373,14875.07,14225.0,650.07,0.0,0.0,0.0,Apr-2017,13406.07,,Apr-2017,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,212133.0,0.0,0.0,0.0,0.0,109.0,0.0,,0.0,0.0,12582.0,52.0,58400.0,0.0,0.0,0.0,0.0,21213.0,18130.0,59.6,0.0,0.0,109.0,365.0,46.0,46.0,4.0,46.0,,,,0.0,3.0,5.0,4.0,4.0,1.0,9.0,10.0,5.0,10.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,256400.0,30326.0,44900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300995,,8000.0,8000.0,8000.0, 36 months,15.59,279.64,C,C5,Salesperson,< 1 year,RENT,30000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300995,,credit_card,Credit card refinancing,371xx,TN,14.28,0.0,Nov-2008,670.0,674.0,0.0,,,8.0,0.0,6263.0,83.5,9.0,f,1859.59,1859.59,8106.09,8106.09,6140.41,1965.68,0.0,0.0,0.0,Mar-2019,279.64,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,52940.0,1.0,6.0,1.0,1.0,6.0,46677.0,123.0,1.0,1.0,4018.0,117.0,7500.0,0.0,0.0,1.0,2.0,6618.0,1237.0,83.5,0.0,0.0,94.0,65.0,8.0,6.0,0.0,8.0,,12.0,,0.0,2.0,2.0,2.0,2.0,7.0,2.0,2.0,2.0,8.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,45350.0,52940.0,7500.0,37850.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229718,,16000.0,16000.0,16000.0, 60 months,17.99,406.21,D,D2,Sales,3 years,MORTGAGE,55000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229718,,home_improvement,Home improvement,975xx,OR,23.48,0.0,Feb-2004,660.0,664.0,1.0,,20.0,11.0,1.0,16490.0,67.6,26.0,f,0.0,0.0,20675.8306213644,20675.83,16000.0,4675.83,0.0,0.0,0.0,Aug-2018,12272.44,,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,162049.0,1.0,1.0,0.0,1.0,13.0,30520.0,,1.0,2.0,4199.0,68.0,24400.0,1.0,4.0,2.0,4.0,14732.0,2215.0,77.6,0.0,0.0,151.0,118.0,1.0,1.0,2.0,22.0,,1.0,,1.0,4.0,8.0,4.0,8.0,7.0,9.0,17.0,8.0,11.0,0.0,0.0,0.0,1.0,92.3,75.0,0.0,0.0,177101.0,47010.0,9900.0,35899.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189931,,35000.0,35000.0,35000.0, 36 months,12.79,1175.76,C,C1,Administrator,10+ years,OWN,150000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189931,,debt_consolidation,Debt consolidation,785xx,TX,13.66,0.0,Dec-2003,725.0,729.0,3.0,52.0,,16.0,0.0,18941.0,32.7,28.0,f,0.0,0.0,11122.42,11122.42,4946.48,2083.21,0.0,4092.73,736.6914000121001,Apr-2017,1175.76,,Oct-2017,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,258043.0,5.0,6.0,5.0,6.0,3.0,88956.0,64.0,4.0,4.0,11921.0,47.0,57900.0,2.0,3.0,3.0,10.0,16128.0,15079.0,44.2,0.0,0.0,153.0,130.0,0.0,0.0,1.0,30.0,,0.0,,0.0,1.0,7.0,2.0,3.0,14.0,9.0,13.0,7.0,16.0,0.0,0.0,0.0,9.0,92.6,0.0,0.0,0.0,329724.0,107897.0,27000.0,98824.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229828,,25000.0,25000.0,24950.0, 60 months,12.79,566.15,C,C1,Investment Officer,9 years,MORTGAGE,179000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229828,,debt_consolidation,Debt consolidation,201xx,VA,16.54,1.0,May-2007,675.0,679.0,0.0,5.0,,9.0,0.0,74976.0,82.2,24.0,f,0.0,0.0,28652.773715933,28595.47,25000.0,3624.46,28.31,0.0,0.0,Dec-2017,21275.27,,Jan-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,406136.0,1.0,4.0,2.0,5.0,5.0,64065.0,71.0,0.0,0.0,0.0,73.0,82000.0,0.0,16.0,0.0,5.0,45126.0,,,0.0,0.0,108.0,112.0,25.0,5.0,1.0,,,,,0.0,0.0,3.0,0.0,1.0,15.0,4.0,8.0,3.0,9.0,0.0,0.0,0.0,2.0,95.8,,0.0,0.0,480643.0,139041.0,0.0,90643.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90306947,,10000.0,10000.0,10000.0, 60 months,12.79,226.46,C,C1,Senior mechanic,10+ years,OWN,79000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90306947,,home_improvement,Home improvement,070xx,NJ,6.29,5.0,Mar-1984,715.0,719.0,1.0,22.0,,10.0,0.0,4011.0,21.3,43.0,f,5951.44,5951.44,6560.23,6560.23,4048.56,2511.67,0.0,0.0,0.0,Mar-2019,226.46,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,87296.0,2.0,1.0,1.0,3.0,7.0,8552.0,81.0,6.0,7.0,3107.0,43.0,18800.0,0.0,0.0,7.0,11.0,9700.0,11187.0,25.9,0.0,0.0,155.0,390.0,6.0,5.0,1.0,6.0,22.0,6.0,22.0,0.0,2.0,3.0,5.0,18.0,5.0,8.0,37.0,3.0,10.0,0.0,0.0,0.0,8.0,88.4,0.0,0.0,0.0,105417.0,12563.0,15100.0,10617.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90085272,,3000.0,3000.0,3000.0, 36 months,13.49,101.8,C,C2,Marketing Manager,1 year,RENT,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90085272,,other,Other,331xx,FL,19.83,0.0,Aug-2009,680.0,684.0,0.0,29.0,,10.0,0.0,1379.0,98.5,22.0,w,688.2,688.2,3006.61,3006.61,2311.8,649.81,45.0,0.0,0.0,Mar-2019,101.8,Apr-2019,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,50695.0,0.0,6.0,0.0,0.0,36.0,49316.0,88.0,0.0,2.0,1379.0,88.0,1400.0,1.0,0.0,1.0,2.0,7242.0,21.0,98.5,0.0,0.0,85.0,63.0,20.0,20.0,0.0,52.0,,1.0,,0.0,1.0,1.0,1.0,1.0,17.0,4.0,5.0,1.0,10.0,0.0,0.0,0.0,0.0,95.2,100.0,0.0,0.0,57703.0,50695.0,1400.0,56303.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90330536,,12000.0,12000.0,12000.0, 36 months,19.99,445.91,D,D4,Operations Manager,9 years,MORTGAGE,81000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90330536,,debt_consolidation,Debt consolidation,440xx,OH,32.78,1.0,Jul-1995,665.0,669.0,0.0,21.0,,19.0,0.0,46749.0,76.1,42.0,f,0.0,0.0,12009.060000012,12009.06,12000.0,9.06,0.0,0.0,0.0,Oct-2016,12022.39,,Sep-2018,654.0,650.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,236497.0,3.0,2.0,1.0,2.0,5.0,33739.0,74.0,3.0,4.0,9615.0,75.0,61400.0,2.0,0.0,4.0,7.0,13139.0,5413.0,86.6,0.0,0.0,134.0,254.0,2.0,2.0,4.0,2.0,21.0,0.0,21.0,1.0,10.0,14.0,10.0,17.0,9.0,16.0,29.0,14.0,19.0,0.0,0.0,0.0,4.0,95.0,70.0,0.0,0.0,270826.0,80488.0,40500.0,45426.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90065962,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Senior Permitting Services Specialist,< 1 year,OWN,87435.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90065962,,home_improvement,Home improvement,207xx,MD,13.27,0.0,Feb-2003,690.0,694.0,1.0,,,9.0,0.0,61758.0,87.0,11.0,f,0.0,0.0,16707.7,16707.7,5173.49,7265.62,44.43,4224.16,760.3487999887,Apr-2018,888.58,,Jul-2018,534.0,530.0,0.0,,1.0,Individual,,,,0.0,150.0,189156.0,1.0,2.0,0.0,0.0,105.0,14902.0,46.0,2.0,2.0,17032.0,74.0,71000.0,0.0,0.0,1.0,2.0,21017.0,8218.0,76.2,0.0,0.0,163.0,161.0,4.0,4.0,2.0,4.0,,2.0,,0.0,3.0,5.0,3.0,3.0,3.0,6.0,6.0,5.0,9.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,238596.0,76660.0,34500.0,32596.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270210,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Regional Sales Manager,3 years,MORTGAGE,220000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270210,,debt_consolidation,Debt consolidation,336xx,FL,23.6,0.0,Jul-1999,720.0,724.0,0.0,54.0,,13.0,0.0,88247.0,95.9,30.0,f,8000.51,8000.51,34740.22,34740.22,26999.49,7740.73,0.0,0.0,0.0,Mar-2019,1196.05,Apr-2019,Mar-2019,659.0,655.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,376788.0,4.0,8.0,2.0,2.0,1.0,128882.0,51.0,2.0,2.0,26678.0,71.0,90000.0,1.0,0.0,2.0,4.0,28984.0,1828.0,95.9,0.0,0.0,206.0,132.0,3.0,1.0,4.0,3.0,81.0,1.0,81.0,8.0,2.0,3.0,3.0,4.0,20.0,4.0,6.0,3.0,12.0,0.0,0.0,0.0,4.0,66.7,66.7,0.0,0.0,436162.0,217129.0,45000.0,158962.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90257098,,17400.0,17400.0,17400.0, 60 months,18.99,451.27,D,D3,Driver,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90257098,,debt_consolidation,Debt consolidation,786xx,TX,17.16,2.0,Apr-1999,660.0,664.0,0.0,2.0,,7.0,0.0,3355.0,69.9,13.0,w,10989.29,10989.29,13068.47,13068.47,6410.71,6657.76,0.0,0.0,0.0,Mar-2019,451.27,Apr-2019,Mar-2019,569.0,565.0,0.0,2.0,1.0,Individual,,,,1.0,0.0,190506.0,2.0,2.0,1.0,1.0,2.0,32151.0,76.0,1.0,1.0,2900.0,76.0,4800.0,1.0,3.0,3.0,2.0,27215.0,100.0,96.7,0.0,339.0,36.0,47.0,4.0,2.0,1.0,47.0,18.0,2.0,18.0,2.0,1.0,3.0,1.0,2.0,4.0,3.0,7.0,3.0,6.0,0.0,0.0,2.0,2.0,76.9,100.0,0.0,0.0,212713.0,35902.0,3000.0,42362.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90400370,,12600.0,12600.0,12600.0, 60 months,17.99,319.89,D,D2,Systems engineer,1 year,OWN,87000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90400370,,debt_consolidation,Debt consolidation,606xx,IL,12.52,1.0,Oct-2001,670.0,674.0,4.0,15.0,,15.0,0.0,15346.0,49.0,29.0,f,0.0,0.0,15535.106381951398,15535.11,12600.0,2935.11,0.0,0.0,0.0,Apr-2018,9349.57,,Nov-2018,594.0,590.0,0.0,33.0,1.0,Individual,,,,0.0,0.0,209749.0,6.0,3.0,2.0,2.0,1.0,29572.0,89.0,4.0,6.0,7056.0,70.0,31300.0,0.0,0.0,7.0,8.0,13983.0,5182.0,66.8,0.0,0.0,135.0,179.0,4.0,1.0,1.0,4.0,15.0,1.0,15.0,2.0,4.0,8.0,4.0,9.0,8.0,11.0,18.0,8.0,15.0,0.0,0.0,0.0,6.0,75.0,75.0,0.0,0.0,235907.0,44918.0,15600.0,33362.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90310980,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Patient interviewer,3 years,MORTGAGE,45000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90310980,,debt_consolidation,Debt consolidation,191xx,PA,26.88,0.0,Oct-1998,675.0,679.0,1.0,,,17.0,0.0,3704.0,41.2,34.0,f,0.0,0.0,12027.085314938,12027.09,10000.0,2027.09,0.0,0.0,0.0,Mar-2018,6280.94,,Jan-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,1744.0,140766.0,0.0,6.0,0.0,2.0,17.0,45034.0,86.0,1.0,6.0,1767.0,80.0,9000.0,5.0,0.0,2.0,11.0,9384.0,4396.0,45.7,0.0,0.0,79.0,215.0,10.0,10.0,3.0,10.0,,1.0,,0.0,3.0,3.0,6.0,14.0,12.0,9.0,19.0,3.0,17.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,0.0,155129.0,48738.0,8100.0,52116.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238477,,20000.0,20000.0,20000.0, 36 months,10.49,649.96,B,B3,Social Worker,5 years,OWN,110000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238477,,credit_card,Credit card refinancing,067xx,CT,24.77,1.0,Sep-1999,665.0,669.0,2.0,7.0,,17.0,0.0,120310.0,32.5,40.0,w,0.0,0.0,3238.14,3238.14,2417.53,820.61,0.0,0.0,0.0,Mar-2017,649.96,,Nov-2017,549.0,545.0,0.0,7.0,1.0,Individual,,,,0.0,0.0,313735.0,1.0,3.0,0.0,1.0,13.0,134526.0,,1.0,2.0,2421.0,33.0,148500.0,3.0,1.0,2.0,3.0,18455.0,4265.0,59.4,0.0,0.0,154.0,204.0,2.0,2.0,2.0,2.0,,2.0,,2.0,3.0,6.0,4.0,9.0,16.0,13.0,22.0,6.0,16.0,0.0,0.0,1.0,1.0,92.5,75.0,0.0,0.0,387281.0,254836.0,10500.0,111781.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398275,,25000.0,25000.0,25000.0, 60 months,10.49,537.23,B,B3,Senior Implementation Consultant,8 years,MORTGAGE,110000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398275,,debt_consolidation,Debt consolidation,794xx,TX,13.23,1.0,Jul-2001,700.0,704.0,0.0,19.0,,11.0,0.0,18193.0,63.2,20.0,f,14532.7,14532.7,15565.1,15565.1,10467.3,5097.8,0.0,0.0,0.0,Mar-2019,537.23,Apr-2019,Mar-2019,719.0,715.0,0.0,65.0,1.0,Individual,,,,0.0,0.0,140195.0,0.0,1.0,0.0,0.0,35.0,21011.0,,1.0,1.0,4397.0,63.0,28800.0,0.0,0.0,0.0,1.0,12745.0,8387.0,63.1,0.0,0.0,113.0,182.0,10.0,10.0,1.0,10.0,,,,1.0,6.0,8.0,6.0,12.0,3.0,9.0,15.0,8.0,11.0,0.0,0.0,0.0,1.0,89.5,16.7,0.0,0.0,189807.0,39204.0,22700.0,36007.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240777,,15000.0,15000.0,15000.0, 60 months,14.49,352.85,C,C4,Manager,10+ years,MORTGAGE,110000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240777,,debt_consolidation,Debt consolidation,913xx,CA,11.07,1.0,Mar-2005,740.0,744.0,1.0,20.0,,10.0,0.0,3994.0,12.2,28.0,f,0.0,0.0,17412.2264262068,17412.23,15000.0,2412.23,0.0,0.0,0.0,Dec-2017,12837.26,,Aug-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,394952.0,4.0,2.0,1.0,2.0,9.0,18853.0,57.0,4.0,4.0,3558.0,35.0,32800.0,2.0,3.0,2.0,7.0,43884.0,16442.0,17.8,0.0,0.0,138.0,123.0,1.0,1.0,2.0,2.0,20.0,0.0,20.0,0.0,1.0,2.0,3.0,5.0,11.0,7.0,15.0,2.0,10.0,0.0,0.0,0.0,5.0,96.4,0.0,0.0,0.0,443992.0,22847.0,20000.0,33017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90402629,,30000.0,30000.0,29750.0, 36 months,15.59,1048.65,C,C5,Engineer,2 years,RENT,83000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90402629,,debt_consolidation,Debt consolidation,088xx,NJ,14.44,0.0,Mar-2001,675.0,679.0,0.0,,,8.0,0.0,31378.0,82.4,9.0,f,0.0,0.0,17865.0,17716.13,10834.95,4996.05,0.0,2034.0,366.12,Jan-2018,1048.65,,Mar-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,49958.0,2.0,2.0,0.0,1.0,18.0,18580.0,66.0,3.0,3.0,9450.0,75.0,38100.0,0.0,0.0,0.0,4.0,6245.0,6722.0,82.4,0.0,0.0,32.0,186.0,2.0,2.0,0.0,2.0,,13.0,,0.0,5.0,5.0,6.0,6.0,2.0,6.0,7.0,5.0,8.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,66344.0,49958.0,38100.0,28244.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jul-2018,ACTIVE,Jul-2018,9208.0,45.0,18.0 +90300169,,8000.0,8000.0,8000.0, 36 months,13.49,271.45,C,C2,epidemiologist and professor,10+ years,MORTGAGE,73000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300169,,debt_consolidation,Debt consolidation,378xx,TN,13.41,0.0,May-2006,665.0,669.0,1.0,59.0,61.0,7.0,1.0,6832.0,73.5,32.0,f,0.0,0.0,9406.1217938311,9406.12,8000.0,1406.12,0.0,0.0,0.0,May-2018,4491.14,,Mar-2019,634.0,630.0,0.0,59.0,1.0,Individual,,,,0.0,0.0,270710.0,3.0,2.0,2.0,2.0,3.0,167123.0,98.0,1.0,1.0,272.0,92.0,9300.0,2.0,0.0,3.0,3.0,38673.0,1828.0,13.0,0.0,0.0,122.0,124.0,4.0,3.0,1.0,4.0,71.0,3.0,71.0,6.0,1.0,3.0,2.0,6.0,22.0,4.0,9.0,3.0,7.0,0.0,0.0,0.0,3.0,66.7,0.0,1.0,0.0,293729.0,173955.0,2100.0,167519.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90247214,,16925.0,16925.0,16925.0, 60 months,14.49,398.13,C,C4,Operations Manger,2 years,RENT,86000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90247214,,credit_card,Credit card refinancing,890xx,NV,23.65,0.0,Sep-2003,720.0,724.0,0.0,37.0,93.0,10.0,1.0,3211.0,19.5,29.0,f,10156.74,10156.74,11596.71,11596.71,6768.26,4828.45,0.0,0.0,0.0,Mar-2019,398.13,Apr-2019,Mar-2019,659.0,655.0,0.0,79.0,1.0,Individual,,,,0.0,0.0,59047.0,1.0,2.0,1.0,4.0,2.0,55836.0,47.0,0.0,3.0,2997.0,38.0,16500.0,0.0,2.0,1.0,7.0,5905.0,4803.0,38.4,0.0,0.0,141.0,156.0,20.0,2.0,0.0,21.0,,8.0,37.0,1.0,1.0,2.0,3.0,5.0,12.0,8.0,16.0,2.0,10.0,0.0,0.0,0.0,1.0,93.1,33.3,1.0,0.0,90112.0,59047.0,7800.0,73612.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240045,,28000.0,28000.0,28000.0, 36 months,15.59,978.74,C,C5,Payroll Director,10+ years,RENT,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240045,,debt_consolidation,Debt consolidation,305xx,GA,18.06,0.0,Jul-1993,665.0,669.0,0.0,67.0,26.0,8.0,2.0,11305.0,34.5,22.0,f,0.0,0.0,33266.2842289307,33266.28,28000.0,5266.28,0.0,0.0,0.0,Apr-2018,16651.95,,Mar-2019,759.0,755.0,0.0,67.0,1.0,Individual,,,,0.0,0.0,73434.0,0.0,3.0,2.0,3.0,7.0,62129.0,78.0,1.0,2.0,4278.0,57.0,32800.0,1.0,1.0,1.0,5.0,9179.0,13895.0,44.9,0.0,0.0,128.0,278.0,7.0,7.0,0.0,7.0,67.0,7.0,67.0,4.0,3.0,3.0,3.0,6.0,11.0,5.0,11.0,3.0,8.0,0.0,0.0,0.0,3.0,72.7,0.0,0.0,2.0,105324.0,73434.0,25200.0,72524.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90119696,,28000.0,28000.0,28000.0, 60 months,9.49,587.92,B,B2,Sr Support Manager,1 year,MORTGAGE,130000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90119696,,home_improvement,Home improvement,980xx,WA,4.32,0.0,Mar-1994,735.0,739.0,1.0,,,8.0,0.0,26530.0,33.8,38.0,f,0.0,0.0,32624.8301651287,32624.83,28000.0,4624.83,0.0,0.0,0.0,Dec-2018,15257.67,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,373513.0,0.0,0.0,0.0,1.0,14.0,0.0,,1.0,2.0,11266.0,34.0,78600.0,0.0,7.0,2.0,3.0,46689.0,18522.0,54.4,0.0,0.0,192.0,270.0,8.0,8.0,2.0,8.0,,5.0,,0.0,2.0,5.0,3.0,17.0,9.0,7.0,26.0,5.0,8.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,443984.0,26530.0,40600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140001,,35000.0,35000.0,35000.0, 60 months,21.49,956.55,D,D5,STAFF CHAPLAIN,< 1 year,RENT,72000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140001,,major_purchase,Major purchase,352xx,AL,16.63,0.0,Oct-2006,675.0,679.0,0.0,79.0,,5.0,0.0,16267.0,49.1,16.0,f,0.0,0.0,6394.77,6394.77,1007.1,1758.08,0.0,3629.59,653.3261999915001,Jan-2017,956.55,,Jul-2017,559.0,555.0,0.0,,1.0,Individual,,,,0.0,118.0,45137.0,1.0,1.0,0.0,0.0,26.0,28870.0,,1.0,2.0,8299.0,49.0,33100.0,0.0,1.0,1.0,2.0,9027.0,16833.0,49.1,0.0,0.0,102.0,119.0,6.0,6.0,0.0,6.0,79.0,7.0,79.0,0.0,4.0,4.0,4.0,9.0,5.0,4.0,10.0,4.0,5.0,0.0,0.0,0.0,1.0,93.8,25.0,0.0,0.0,75499.0,45137.0,33100.0,42399.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90276270,,12800.0,12800.0,12800.0, 60 months,17.99,324.97,D,D2,Human Resouces Technician ,3 years,RENT,60500.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90276270,,debt_consolidation,Debt consolidation,952xx,CA,31.38,0.0,Feb-2007,690.0,694.0,1.0,,,15.0,0.0,11871.0,59.4,39.0,f,8010.0,8010.0,9411.34,9411.34,4790.0,4621.34,0.0,0.0,0.0,Mar-2019,324.97,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,65058.0,2.0,7.0,1.0,5.0,5.0,53187.0,58.0,1.0,2.0,3787.0,59.0,20000.0,5.0,13.0,1.0,7.0,4647.0,2930.0,77.3,0.0,0.0,115.0,114.0,5.0,5.0,0.0,22.0,,5.0,,0.0,4.0,5.0,4.0,6.0,28.0,8.0,11.0,5.0,15.0,0.0,0.0,0.0,2.0,100.0,75.0,0.0,0.0,97076.0,65058.0,12900.0,77076.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403513,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Locomotive engineer,10+ years,RENT,127000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403513,,debt_consolidation,Debt consolidation,986xx,WA,10.12,0.0,Nov-1995,675.0,679.0,0.0,39.0,,12.0,0.0,23062.0,83.3,26.0,f,0.0,0.0,4933.81,4933.81,3207.58,1726.23,0.0,0.0,0.0,Feb-2017,1196.05,,Jun-2017,539.0,535.0,0.0,39.0,1.0,Individual,,,,0.0,0.0,48987.0,2.0,2.0,2.0,3.0,6.0,25925.0,94.0,1.0,2.0,7442.0,89.0,27700.0,1.0,11.0,0.0,5.0,4899.0,90.0,99.3,0.0,0.0,131.0,250.0,12.0,6.0,2.0,12.0,,13.0,,1.0,4.0,6.0,5.0,7.0,9.0,10.0,15.0,6.0,12.0,0.0,0.0,0.0,3.0,96.2,100.0,0.0,0.0,55342.0,48987.0,12000.0,27642.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90099481,,30000.0,30000.0,30000.0, 36 months,15.59,1048.65,C,C5,Aircraft Engine Mechanic ,10+ years,RENT,85000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90099481,,debt_consolidation,Debt consolidation,105xx,NY,12.27,0.0,Sep-1996,670.0,674.0,0.0,,,10.0,0.0,20216.0,87.5,17.0,f,6979.49,6979.49,30384.87,30384.87,23020.51,7364.36,0.0,0.0,0.0,Mar-2019,1048.65,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,54.0,28861.0,2.0,1.0,0.0,1.0,16.0,8645.0,79.0,3.0,8.0,9532.0,85.0,23100.0,0.0,0.0,1.0,9.0,3207.0,977.0,94.4,0.0,0.0,87.0,240.0,6.0,6.0,2.0,6.0,,10.0,,0.0,4.0,7.0,5.0,6.0,2.0,9.0,13.0,7.0,10.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,34100.0,28861.0,17500.0,11000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90250005,,8000.0,8000.0,8000.0, 36 months,12.79,268.75,C,C1,Payroll Specialist,1 year,MORTGAGE,63000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90250005,,debt_consolidation,Debt consolidation,980xx,WA,19.2,0.0,Sep-1999,665.0,669.0,1.0,45.0,62.0,14.0,1.0,10474.0,59.2,34.0,f,0.0,0.0,8648.1230267153,8648.12,8000.0,648.12,0.0,0.0,0.0,Jun-2017,6772.55,,Jan-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,20561.0,0.0,3.0,0.0,7.0,16.0,10087.0,43.0,1.0,4.0,3793.0,50.0,17700.0,2.0,1.0,1.0,11.0,1869.0,310.0,96.7,0.0,0.0,201.0,204.0,11.0,11.0,1.0,13.0,45.0,3.0,45.0,0.0,3.0,6.0,4.0,11.0,11.0,11.0,22.0,6.0,13.0,0.0,0.0,0.0,1.0,93.5,100.0,1.0,0.0,41121.0,20561.0,9500.0,23421.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89866897,,21000.0,21000.0,21000.0, 60 months,10.49,451.27,B,B3,Radiology Directir,2 years,RENT,123600.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89866897,,debt_consolidation,Debt consolidation,750xx,TX,21.03,4.0,May-1987,685.0,689.0,0.0,18.0,,7.0,0.0,13490.0,75.8,28.0,f,11863.02,11863.02,13427.95,13427.95,9136.98,4290.97,0.0,0.0,0.0,Mar-2019,451.27,Apr-2019,Mar-2019,664.0,660.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,51110.0,0.0,4.0,0.0,1.0,24.0,37620.0,50.0,0.0,0.0,13157.0,55.0,17800.0,2.0,0.0,1.0,1.0,7301.0,1523.0,89.6,0.0,0.0,105.0,183.0,26.0,24.0,4.0,26.0,30.0,0.0,19.0,2.0,2.0,3.0,2.0,13.0,5.0,3.0,17.0,3.0,7.0,0.0,0.0,0.0,0.0,67.9,50.0,0.0,0.0,93826.0,51110.0,14700.0,76026.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90395032,,10000.0,10000.0,10000.0, 60 months,18.99,259.36,D,D3,Account Manager,3 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90395032,,debt_consolidation,Debt consolidation,927xx,CA,10.04,1.0,May-2005,665.0,669.0,1.0,11.0,,12.0,0.0,24082.0,52.2,15.0,f,6315.35,6315.35,7526.71,7526.71,3684.65,3842.06,0.0,0.0,0.0,Mar-2019,259.36,Apr-2019,Mar-2019,589.0,585.0,0.0,53.0,1.0,Joint App,160000.0,8.46,Not Verified,0.0,829.0,502323.0,2.0,1.0,0.0,2.0,17.0,19424.0,80.0,3.0,8.0,4393.0,62.0,46100.0,1.0,0.0,3.0,11.0,41860.0,15261.0,38.2,0.0,0.0,133.0,136.0,2.0,2.0,1.0,2.0,,4.0,11.0,0.0,4.0,6.0,6.0,6.0,4.0,10.0,10.0,6.0,12.0,0.0,0.0,0.0,3.0,86.7,33.3,0.0,0.0,536876.0,43506.0,24700.0,24380.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90298490,,21000.0,21000.0,21000.0, 60 months,8.99,435.83,B,B1,EVP,< 1 year,MORTGAGE,108000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298490,,credit_card,Credit card refinancing,751xx,TX,17.97,0.0,Sep-1991,750.0,754.0,0.0,,,11.0,0.0,46374.0,54.2,29.0,f,12016.25,12016.25,12660.04,12660.04,8983.75,3676.29,0.0,0.0,0.0,Mar-2019,435.83,Apr-2019,Mar-2019,834.0,830.0,0.0,,1.0,Individual,,,,0.0,0.0,277090.0,0.0,1.0,0.0,0.0,35.0,10343.0,48.0,0.0,1.0,19620.0,53.0,85600.0,0.0,5.0,0.0,1.0,25190.0,29426.0,61.1,0.0,0.0,156.0,300.0,18.0,18.0,3.0,18.0,,17.0,,0.0,7.0,8.0,7.0,9.0,9.0,9.0,17.0,8.0,11.0,0.0,0.0,0.0,0.0,100.0,42.9,0.0,0.0,377710.0,56717.0,75600.0,21527.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90246319,,18000.0,18000.0,18000.0, 60 months,9.49,377.95,B,B2,Quantitative Analyst,< 1 year,RENT,130000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90246319,,debt_consolidation,Debt consolidation,114xx,NY,20.15,0.0,Aug-2004,735.0,739.0,0.0,27.0,,15.0,0.0,13665.0,37.1,31.0,f,0.0,0.0,19782.5210671423,19782.52,18000.0,1782.52,0.0,0.0,0.0,Dec-2017,14070.84,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,89506.0,0.0,6.0,1.0,2.0,12.0,75841.0,59.0,0.0,0.0,5708.0,52.0,36800.0,2.0,0.0,4.0,2.0,5967.0,18433.0,40.9,0.0,0.0,97.0,145.0,27.0,12.0,0.0,27.0,33.0,3.0,27.0,0.0,6.0,8.0,6.0,9.0,16.0,9.0,15.0,8.0,15.0,0.0,0.0,0.0,1.0,92.9,16.7,0.0,0.0,153435.0,89506.0,31200.0,116635.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90328998,,25000.0,25000.0,25000.0, 60 months,9.49,524.93,B,B2,Senior Consultant,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90328998,,debt_consolidation,Debt consolidation,852xx,AZ,12.69,0.0,Mar-2004,760.0,764.0,0.0,,,10.0,0.0,13445.0,32.9,31.0,f,14381.15,14381.15,15209.79,15209.79,10618.85,4590.94,0.0,0.0,0.0,Mar-2019,524.93,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,327572.0,1.0,2.0,1.0,5.0,9.0,43509.0,79.0,0.0,1.0,6954.0,59.0,40900.0,0.0,7.0,1.0,7.0,32757.0,19255.0,41.1,0.0,0.0,129.0,150.0,22.0,2.0,5.0,22.0,,5.0,,0.0,2.0,2.0,3.0,6.0,13.0,6.0,13.0,2.0,10.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,378556.0,56954.0,32700.0,55415.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90084633,,36000.0,36000.0,36000.0, 60 months,10.99,782.55,B,B4,System Analyst,2 years,MORTGAGE,106000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90084633,,debt_consolidation,Debt consolidation,640xx,MO,22.96,0.0,May-1995,725.0,729.0,1.0,,,20.0,0.0,24443.0,38.2,47.0,f,0.0,0.0,17943.7,17943.7,11535.29,6408.41,0.0,0.0,0.0,Sep-2018,782.55,,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,243144.0,2.0,2.0,1.0,2.0,5.0,50634.0,82.0,2.0,3.0,7569.0,60.0,64000.0,0.0,0.0,1.0,5.0,12797.0,31147.0,36.6,0.0,0.0,180.0,256.0,4.0,4.0,4.0,50.0,,4.0,,0.0,7.0,14.0,7.0,12.0,13.0,17.0,30.0,14.0,20.0,0.0,0.0,0.0,3.0,100.0,71.4,0.0,0.0,308227.0,75077.0,49100.0,61497.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Feb-2019,ACTIVE,Feb-2019,11531.0,45.0,24.0 +90298474,,12000.0,12000.0,12000.0, 60 months,9.49,251.97,B,B2,Customer Success Manager,< 1 year,OWN,57000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298474,,debt_consolidation,Debt consolidation,601xx,IL,12.77,0.0,Aug-2008,755.0,759.0,0.0,,,8.0,0.0,11725.0,42.2,14.0,f,6902.84,6902.84,7300.8,7300.8,5097.16,2203.64,0.0,0.0,0.0,Mar-2019,251.97,Apr-2019,Mar-2019,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,199893.0,0.0,1.0,0.0,0.0,61.0,6202.0,27.0,1.0,1.0,8888.0,35.0,27800.0,0.0,0.0,1.0,2.0,24987.0,10075.0,53.8,0.0,0.0,97.0,93.0,11.0,11.0,1.0,11.0,,11.0,,0.0,3.0,3.0,3.0,3.0,7.0,6.0,6.0,3.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,237377.0,17927.0,21800.0,23118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90158397,,18000.0,18000.0,18000.0, 60 months,10.99,391.28,B,B4,Public works,10+ years,MORTGAGE,45000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90158397,,debt_consolidation,Debt consolidation,807xx,CO,31.17,0.0,Nov-1987,710.0,714.0,0.0,,,8.0,0.0,22229.0,75.1,23.0,f,0.0,0.0,21583.8245365722,21583.82,18000.0,3583.82,0.0,0.0,0.0,Dec-2018,11812.81,,Dec-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,155985.0,0.0,1.0,1.0,2.0,11.0,31252.0,89.0,0.0,0.0,13907.0,83.0,29600.0,0.0,0.0,3.0,2.0,19498.0,4276.0,81.5,0.0,0.0,132.0,346.0,33.0,11.0,4.0,33.0,,11.0,,0.0,4.0,5.0,4.0,9.0,5.0,6.0,14.0,5.0,8.0,0.0,0.0,0.0,1.0,100.0,75.0,0.0,0.0,181561.0,53481.0,23100.0,35000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90127883,,14400.0,14400.0,14400.0, 60 months,8.99,298.86,B,B1,Paralegal,10+ years,RENT,55000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90127883,,debt_consolidation,Debt consolidation,968xx,HI,23.13,0.0,Jan-2001,695.0,699.0,1.0,25.0,,12.0,0.0,11642.0,43.8,68.0,f,0.0,0.0,5959.22,5959.22,4104.06,1855.16,0.0,0.0,0.0,Jun-2018,298.86,,Mar-2019,539.0,535.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,148142.0,1.0,4.0,2.0,3.0,4.0,136500.0,49.0,4.0,10.0,2614.0,47.0,26600.0,1.0,2.0,5.0,13.0,12345.0,10362.0,46.3,0.0,0.0,136.0,188.0,8.0,4.0,0.0,10.0,,2.0,38.0,4.0,5.0,7.0,6.0,10.0,41.0,8.0,27.0,7.0,12.0,0.0,0.0,0.0,6.0,76.5,33.3,0.0,0.0,180542.0,148142.0,19300.0,153942.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90009215,,14000.0,14000.0,14000.0, 36 months,14.49,481.83,C,C4,finance manager,8 years,MORTGAGE,160000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90009215,,debt_consolidation,Debt consolidation,608xx,IL,18.89,2.0,May-1996,670.0,674.0,1.0,14.0,,17.0,0.0,27819.0,72.3,34.0,f,0.0,0.0,17060.1816932186,17060.18,14000.0,3060.18,0.0,0.0,0.0,Dec-2018,5025.7,,Mar-2019,739.0,735.0,0.0,14.0,1.0,Individual,,,,0.0,0.0,268629.0,1.0,6.0,0.0,0.0,27.0,18004.0,37.0,1.0,1.0,12864.0,59.0,38500.0,0.0,3.0,2.0,1.0,15802.0,4181.0,84.5,0.0,0.0,244.0,141.0,1.0,1.0,5.0,1.0,20.0,2.0,20.0,0.0,6.0,7.0,6.0,7.0,15.0,9.0,12.0,7.0,17.0,0.0,0.0,1.0,1.0,91.2,83.3,0.0,0.0,401732.0,61730.0,27000.0,48694.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90239754,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,Human Resources Specialist,10+ years,RENT,46000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90239754,,debt_consolidation,Debt consolidation,664xx,KS,22.12,0.0,Mar-1999,660.0,664.0,2.0,27.0,39.0,13.0,2.0,5660.0,52.4,35.0,f,0.0,0.0,17915.2567507435,17915.26,15000.0,2915.26,0.0,0.0,0.0,Apr-2018,8975.67,,Apr-2018,674.0,670.0,0.0,27.0,1.0,Individual,,,,0.0,311.0,29300.0,3.0,6.0,3.0,4.0,5.0,23640.0,88.0,3.0,8.0,3610.0,69.0,10800.0,2.0,2.0,7.0,12.0,2442.0,3639.0,52.1,0.0,0.0,148.0,210.0,6.0,5.0,2.0,16.0,,4.0,,8.0,2.0,4.0,3.0,8.0,15.0,7.0,18.0,4.0,13.0,0.0,0.0,0.0,6.0,100.0,0.0,1.0,1.0,41094.0,29300.0,7600.0,30294.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89846231,,10000.0,10000.0,10000.0, 60 months,11.49,219.88,B,B5,Buyer,< 1 year,RENT,75000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89846231,,debt_consolidation,Debt consolidation,905xx,CA,18.51,1.0,Nov-1993,685.0,689.0,0.0,19.0,,7.0,0.0,10489.0,66.8,15.0,f,5873.73,5873.73,6407.19,6407.19,4126.27,2280.92,0.0,0.0,0.0,Mar-2019,219.88,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,38668.0,0.0,2.0,0.0,1.0,22.0,28179.0,69.0,1.0,1.0,7173.0,69.0,15700.0,0.0,0.0,0.0,2.0,5524.0,1240.0,86.8,0.0,0.0,151.0,274.0,8.0,8.0,0.0,107.0,,,19.0,0.0,2.0,5.0,2.0,6.0,5.0,5.0,10.0,5.0,7.0,0.0,0.0,0.0,1.0,93.3,50.0,0.0,0.0,56387.0,38668.0,9400.0,40687.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90278015,,24000.0,24000.0,24000.0, 60 months,9.49,503.93,B,B2,Pilot,10+ years,MORTGAGE,180000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90278015,,home_improvement,Home improvement,902xx,CA,15.98,6.0,Apr-2001,705.0,709.0,0.0,12.0,,11.0,0.0,14614.0,47.0,30.0,f,0.0,0.0,25878.2170734512,25878.22,24000.0,1853.02,25.2000005232,0.0,0.0,Aug-2017,21374.48,,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,800931.0,2.0,5.0,2.0,4.0,2.0,169950.0,86.0,0.0,0.0,7782.0,71.0,31100.0,0.0,2.0,0.0,4.0,72812.0,16493.0,44.3,0.0,0.0,141.0,172.0,25.0,2.0,9.0,25.0,12.0,,12.0,0.0,3.0,4.0,3.0,5.0,9.0,4.0,11.0,4.0,11.0,0.0,0.0,0.0,2.0,73.3,33.3,0.0,0.0,907923.0,185716.0,29600.0,202522.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90384621,,14400.0,14400.0,14400.0, 60 months,9.49,302.36,B,B2,Branch Manager,10+ years,OWN,68000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90384621,,medical,Medical expenses,760xx,TX,25.89,0.0,May-2003,720.0,724.0,1.0,,,19.0,0.0,30551.0,26.2,40.0,f,0.0,0.0,15814.4303444882,15814.43,14400.0,1414.43,0.0,0.0,0.0,Nov-2017,12182.32,,Nov-2017,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,47261.0,3.0,1.0,0.0,0.0,27.0,16710.0,62.0,5.0,6.0,8452.0,34.0,100800.0,1.0,1.0,2.0,6.0,2487.0,45093.0,17.8,0.0,0.0,133.0,160.0,2.0,2.0,3.0,2.0,,0.0,,0.0,5.0,10.0,10.0,15.0,10.0,18.0,27.0,10.0,19.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,127800.0,47261.0,61000.0,27000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90167766,,15000.0,15000.0,15000.0, 60 months,9.49,314.96,B,B2,Clinical Dietitian,2 years,MORTGAGE,53000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90167766,,credit_card,Credit card refinancing,329xx,FL,28.34,0.0,Jun-1994,770.0,774.0,0.0,65.0,,8.0,0.0,18958.0,20.5,20.0,f,8628.63,8628.63,9125.93,9125.93,6371.37,2754.56,0.0,0.0,0.0,Mar-2019,314.96,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,157649.0,0.0,2.0,1.0,2.0,11.0,12692.0,40.0,0.0,0.0,9314.0,25.0,92600.0,0.0,8.0,0.0,2.0,19706.0,54723.0,20.2,0.0,0.0,228.0,267.0,37.0,11.0,4.0,95.0,,,,0.0,3.0,4.0,4.0,5.0,9.0,5.0,7.0,4.0,8.0,0.0,0.0,0.0,1.0,95.0,25.0,0.0,0.0,262875.0,31650.0,68600.0,32000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90167921,,29000.0,29000.0,29000.0, 60 months,10.99,630.39,B,B4,,,MORTGAGE,66081.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90167921,,credit_card,Credit card refinancing,890xx,NV,29.51,0.0,Jan-1978,690.0,694.0,0.0,,,17.0,0.0,42944.0,47.5,30.0,f,16945.65,16945.65,18237.04,18237.04,12054.35,6182.69,0.0,0.0,0.0,Mar-2019,630.39,Apr-2019,Mar-2019,819.0,815.0,0.0,,1.0,Individual,,,,0.0,0.0,212363.0,0.0,3.0,0.0,0.0,27.0,36473.0,80.0,0.0,0.0,7403.0,58.0,90500.0,1.0,0.0,1.0,0.0,12492.0,36846.0,53.7,0.0,0.0,159.0,453.0,35.0,27.0,5.0,45.0,,7.0,,0.0,9.0,10.0,10.0,14.0,7.0,12.0,17.0,10.0,17.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,278778.0,79431.0,79500.0,45531.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90388599,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Driver,1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90388599,,debt_consolidation,Debt consolidation,902xx,CA,13.49,0.0,Jan-2013,665.0,669.0,1.0,,,11.0,0.0,10477.0,34.1,12.0,f,0.0,0.0,10761.0953361987,10761.1,10000.0,761.1,0.0,0.0,0.0,Jun-2017,6525.56,,Feb-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,10477.0,3.0,0.0,0.0,0.0,,0.0,,3.0,6.0,2013.0,34.0,30700.0,0.0,0.0,1.0,6.0,952.0,13378.0,36.3,0.0,0.0,,44.0,2.0,2.0,0.0,2.0,,2.0,,0.0,8.0,11.0,8.0,8.0,0.0,11.0,12.0,11.0,11.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,30700.0,10477.0,21000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89868463,,25000.0,25000.0,25000.0, 36 months,8.59,790.24,A,A5,Counselor ,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89868463,,credit_card,Credit card refinancing,922xx,CA,17.17,0.0,Jan-2003,730.0,734.0,1.0,,35.0,9.0,1.0,13463.0,52.8,23.0,w,0.0,0.0,13301.42,13301.42,7631.18,1839.77,0.0,3830.47,344.7423,Oct-2017,790.24,,Mar-2019,589.0,585.0,0.0,,1.0,Individual,,,,0.0,650.0,218003.0,1.0,2.0,0.0,1.0,17.0,51939.0,82.0,0.0,3.0,1270.0,66.0,25500.0,1.0,7.0,1.0,5.0,24223.0,30.0,97.7,0.0,0.0,138.0,164.0,14.0,2.0,2.0,76.0,,4.0,,0.0,1.0,5.0,1.0,2.0,10.0,6.0,11.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,1.0,245427.0,65402.0,1300.0,67927.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90147333,,20000.0,20000.0,19750.0, 36 months,14.49,688.33,C,C4,Engineer,3 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90147333,,debt_consolidation,Debt consolidation,622xx,IL,20.92,0.0,Jul-2004,670.0,674.0,0.0,39.0,,17.0,0.0,8389.0,71.7,26.0,f,3400.0,3357.5,21060.25,20797.0,16600.0,4460.25,0.0,0.0,0.0,Mar-2019,1055.31,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,790.0,76989.0,1.0,10.0,0.0,1.0,17.0,68600.0,109.0,1.0,1.0,3608.0,99.0,11700.0,1.0,1.0,0.0,2.0,4812.0,2149.0,78.9,0.0,0.0,116.0,146.0,1.0,1.0,0.0,1.0,39.0,18.0,39.0,0.0,3.0,5.0,4.0,5.0,14.0,7.0,12.0,5.0,17.0,0.0,0.0,0.0,1.0,92.3,50.0,0.0,0.0,83346.0,76989.0,10200.0,71646.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90106158,,16800.0,16800.0,16800.0, 60 months,10.99,365.19,B,B4,dentist/owner,10+ years,MORTGAGE,150000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90106158,,small_business,Business,038xx,NH,25.25,0.0,Dec-1984,720.0,724.0,0.0,,,14.0,0.0,58178.0,57.5,30.0,w,0.0,0.0,5653.05,5653.05,1297.37,883.51,0.0,3472.17,624.9906,Apr-2017,365.19,,Oct-2017,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,268422.0,0.0,2.0,1.0,2.0,11.0,33324.0,59.0,2.0,3.0,17688.0,58.0,101200.0,1.0,0.0,0.0,5.0,19173.0,40128.0,58.3,0.0,0.0,171.0,381.0,7.0,7.0,1.0,7.0,,19.0,,0.0,9.0,10.0,9.0,13.0,11.0,10.0,18.0,10.0,14.0,0.0,0.0,0.0,3.0,100.0,22.2,0.0,0.0,379802.0,91502.0,96200.0,56602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90064387,,15000.0,15000.0,15000.0, 60 months,10.49,322.34,B,B3,Owner,10+ years,MORTGAGE,72000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90064387,,home_improvement,Home improvement,956xx,CA,15.92,0.0,Oct-1989,720.0,724.0,0.0,43.0,,6.0,0.0,9138.0,37.8,12.0,f,8719.56,8719.56,9339.12,9339.12,6280.44,3058.68,0.0,0.0,0.0,Mar-2019,322.34,Apr-2019,Mar-2019,734.0,730.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,32149.0,0.0,2.0,1.0,1.0,8.0,23011.0,73.0,1.0,1.0,825.0,58.0,24200.0,1.0,0.0,2.0,2.0,5358.0,775.0,51.6,0.0,0.0,168.0,323.0,7.0,7.0,1.0,25.0,,7.0,,0.0,1.0,3.0,2.0,2.0,5.0,4.0,6.0,3.0,6.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,0.0,55913.0,32149.0,1600.0,31713.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90397488,,10000.0,10000.0,10000.0, 60 months,19.99,264.89,D,D4,Paraprofessional,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90397488,,debt_consolidation,Debt consolidation,624xx,IL,8.44,0.0,Feb-2001,660.0,664.0,0.0,,75.0,6.0,1.0,7248.0,48.0,11.0,f,0.0,0.0,12694.4237006257,12694.42,10000.0,2694.42,0.0,0.0,0.0,Mar-2018,8432.09,,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,24813.0,0.0,0.0,0.0,0.0,,0.0,,1.0,3.0,4783.0,48.0,15100.0,0.0,0.0,1.0,3.0,4136.0,5946.0,54.6,0.0,0.0,,187.0,10.0,10.0,2.0,10.0,,10.0,,0.0,3.0,4.0,3.0,6.0,0.0,5.0,9.0,4.0,6.0,0.0,0.0,0.0,1.0,100.0,0.0,1.0,0.0,37900.0,7248.0,13100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88947401,,18000.0,18000.0,18000.0, 60 months,9.49,377.95,B,B2,State Prosecutor ,10+ years,MORTGAGE,169000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88947401,,debt_consolidation,Debt consolidation,066xx,CT,28.0,0.0,May-1974,680.0,684.0,4.0,,,22.0,0.0,146992.0,71.0,39.0,f,10354.42,10354.42,10936.83,10936.83,7645.58,3291.25,0.0,0.0,0.0,Mar-2019,377.95,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,427238.0,1.0,2.0,1.0,1.0,7.0,35959.0,82.0,1.0,2.0,15658.0,71.0,207180.0,0.0,1.0,3.0,3.0,20344.0,6888.0,99.0,0.0,0.0,150.0,331.0,1.0,1.0,3.0,15.0,,1.0,,0.0,11.0,15.0,19.0,19.0,7.0,15.0,28.0,16.0,21.0,,0.0,0.0,2.0,100.0,100.0,0.0,0.0,591303.0,128394.0,68880.0,43600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90098207,,20000.0,20000.0,20000.0, 60 months,10.99,434.75,B,B4,Controller ,< 1 year,MORTGAGE,88000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90098207,,credit_card,Credit card refinancing,970xx,OR,10.64,0.0,Oct-2004,740.0,744.0,0.0,,,9.0,0.0,16497.0,37.2,17.0,f,0.0,0.0,23170.3393819548,23170.34,20000.0,3170.34,0.0,0.0,0.0,May-2018,15357.05,,May-2018,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,280781.0,1.0,1.0,1.0,1.0,1.0,27986.0,100.0,0.0,3.0,9575.0,62.0,44300.0,1.0,1.0,1.0,5.0,31198.0,23303.0,41.4,0.0,0.0,60.0,143.0,20.0,1.0,1.0,20.0,,1.0,,0.0,4.0,4.0,6.0,11.0,3.0,7.0,13.0,4.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,315766.0,44483.0,39800.0,27986.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90288832,,15650.0,15650.0,15650.0, 60 months,26.49,473.12,F,F2,Manager,10+ years,MORTGAGE,58000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90288832,,debt_consolidation,Debt consolidation,194xx,PA,27.81,0.0,Jul-2002,685.0,689.0,1.0,,83.0,13.0,1.0,8273.0,50.4,29.0,w,0.0,0.0,21591.5002187624,21591.5,15650.0,5941.5,0.0,0.0,0.0,Apr-2018,13571.49,,Apr-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,415.0,249357.0,2.0,5.0,2.0,6.0,5.0,45547.0,78.0,3.0,7.0,685.0,72.0,16400.0,1.0,11.0,4.0,14.0,19181.0,2214.0,32.9,0.0,0.0,170.0,76.0,4.0,4.0,1.0,7.0,,5.0,,0.0,2.0,6.0,2.0,3.0,20.0,7.0,8.0,6.0,13.0,0.0,0.0,0.0,5.0,100.0,50.0,1.0,0.0,275876.0,53820.0,3300.0,58215.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90169797,,27450.0,27450.0,27450.0, 36 months,21.49,1041.1,D,D5,Sr UR RN,6 years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90169797,,debt_consolidation,Debt consolidation,856xx,AZ,15.17,0.0,Jun-2007,705.0,709.0,0.0,41.0,,12.0,0.0,6220.0,35.5,21.0,f,0.0,0.0,36206.4797442109,36206.48,27450.0,8756.48,0.0,0.0,0.0,Oct-2018,12293.95,,Mar-2019,594.0,590.0,0.0,,1.0,Individual,,,,0.0,336.0,169079.0,1.0,2.0,0.0,1.0,13.0,26375.0,60.0,2.0,3.0,3417.0,53.0,17500.0,0.0,0.0,1.0,6.0,15371.0,4035.0,59.7,0.0,0.0,43.0,111.0,2.0,2.0,4.0,2.0,,12.0,41.0,0.0,3.0,4.0,4.0,5.0,2.0,9.0,15.0,4.0,12.0,0.0,0.0,0.0,2.0,90.5,66.7,0.0,0.0,211158.0,32595.0,10000.0,44033.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186012,,17500.0,17500.0,17500.0, 60 months,10.99,380.41,B,B4,Fiscal Agent,10+ years,OWN,65250.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186012,,credit_card,Credit card refinancing,191xx,PA,11.26,0.0,Oct-2000,715.0,719.0,0.0,36.0,,10.0,0.0,12598.0,44.4,25.0,f,10226.87,10226.87,11021.21,11021.21,7273.13,3748.08,0.0,0.0,0.0,Mar-2019,380.41,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,130058.0,0.0,1.0,0.0,0.0,75.0,61279.0,,1.0,2.0,5864.0,44.0,28400.0,0.0,0.0,1.0,2.0,16257.0,14535.0,43.2,0.0,0.0,191.0,178.0,9.0,9.0,5.0,9.0,,9.0,,0.0,4.0,5.0,5.0,8.0,6.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,1.0,96.0,20.0,0.0,0.0,178081.0,73877.0,25600.0,47181.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189463,,12000.0,12000.0,12000.0, 60 months,19.99,317.86,D,D4,Test Engineer,10+ years,RENT,55000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189463,,debt_consolidation,Debt consolidation,469xx,IN,25.7,0.0,Dec-2000,660.0,664.0,0.0,,,9.0,0.0,8754.0,77.5,24.0,f,7647.64,7647.64,9209.74,9209.74,4352.36,4857.38,0.0,0.0,0.0,Mar-2019,317.86,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,48724.0,1.0,5.0,2.0,4.0,6.0,39970.0,85.0,1.0,3.0,3552.0,84.0,11300.0,4.0,1.0,2.0,7.0,5414.0,0.0,100.1,0.0,0.0,189.0,54.0,10.0,6.0,0.0,16.0,,10.0,,0.0,3.0,4.0,3.0,4.0,19.0,4.0,5.0,4.0,9.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,58296.0,48724.0,5300.0,46996.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90391784,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,Crane Operator Assistant,10+ years,MORTGAGE,62000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90391784,,debt_consolidation,Debt consolidation,061xx,CT,9.5,0.0,Sep-1992,675.0,679.0,0.0,79.0,78.0,16.0,1.0,8056.0,26.2,53.0,w,0.0,0.0,11531.6914976088,11531.69,10000.0,1531.69,0.0,0.0,0.0,Nov-2018,3746.74,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,20685.0,3.0,1.0,0.0,2.0,13.0,3599.0,72.0,6.0,7.0,4391.0,33.0,30700.0,0.0,1.0,4.0,10.0,1293.0,9741.0,43.7,0.0,0.0,145.0,288.0,0.0,0.0,1.0,2.0,,7.0,,0.0,4.0,8.0,7.0,20.0,18.0,14.0,34.0,8.0,16.0,0.0,0.0,0.0,7.0,95.3,14.3,1.0,0.0,45700.0,11655.0,17300.0,5000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130176,,40000.0,40000.0,40000.0, 60 months,19.99,1059.54,D,D4,Air traffic Controller,10+ years,RENT,160000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130176,,debt_consolidation,Debt consolidation,334xx,FL,16.13,0.0,Jul-2002,720.0,724.0,0.0,43.0,,9.0,0.0,17817.0,46.4,32.0,f,0.0,0.0,40943.4900000244,40943.49,40000.0,943.49,0.0,0.0,0.0,Dec-2016,6995.01,,Mar-2019,719.0,715.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,136206.0,1.0,6.0,2.0,3.0,10.0,118389.0,87.0,1.0,1.0,15313.0,78.0,38400.0,0.0,5.0,0.0,4.0,15134.0,20583.0,46.4,0.0,0.0,156.0,170.0,6.0,6.0,2.0,6.0,,,,1.0,2.0,2.0,3.0,5.0,25.0,3.0,5.0,2.0,9.0,0.0,0.0,0.0,3.0,96.9,0.0,0.0,0.0,174364.0,136206.0,38400.0,135964.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90239801,,30000.0,30000.0,30000.0, 36 months,15.59,1048.65,C,C5,RN,10+ years,RENT,180000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90239801,,house,Home buying,301xx,GA,11.69,0.0,Nov-1992,675.0,679.0,0.0,,,22.0,0.0,53665.0,73.7,37.0,f,0.0,0.0,32849.5350450611,32849.54,30000.0,2849.54,0.0,0.0,0.0,Apr-2018,48.47,,Mar-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,53665.0,0.0,0.0,0.0,0.0,81.0,0.0,,2.0,6.0,11917.0,74.0,72801.0,0.0,0.0,2.0,6.0,2683.0,4571.0,88.5,0.0,0.0,156.0,286.0,10.0,10.0,2.0,10.0,,0.0,,0.0,6.0,18.0,6.0,12.0,2.0,22.0,33.0,18.0,22.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,72801.0,53665.0,39600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90306865,,30000.0,30000.0,30000.0, 60 months,9.49,629.91,B,B2,MRI Supervisor Evenings ,1 year,MORTGAGE,125000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90306865,,other,Other,068xx,CT,18.87,1.0,May-1999,730.0,734.0,1.0,12.0,,15.0,0.0,154559.0,54.2,28.0,f,17257.58,17257.58,18227.85,18227.85,12742.42,5485.43,0.0,0.0,0.0,Mar-2019,629.91,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,422240.0,1.0,7.0,0.0,3.0,14.0,144956.0,89.0,1.0,2.0,14222.0,81.0,201800.0,0.0,0.0,1.0,5.0,28149.0,19145.0,59.4,0.0,0.0,170.0,208.0,5.0,5.0,3.0,5.0,,1.0,,0.0,3.0,4.0,4.0,4.0,15.0,7.0,10.0,4.0,15.0,0.0,0.0,0.0,1.0,96.4,50.0,0.0,0.0,552595.0,299515.0,47200.0,162558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249713,,40000.0,40000.0,39900.0, 60 months,15.59,964.03,C,C5,Sales,< 1 year,MORTGAGE,168000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249713,,other,Other,380xx,TN,13.11,0.0,Mar-2002,710.0,714.0,1.0,72.0,,17.0,0.0,50802.0,48.5,44.0,f,0.0,0.0,52072.4094978851,51942.23,40000.0,12072.41,0.0,0.0,0.0,Feb-2019,26038.24,,Feb-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,341412.0,1.0,1.0,0.0,1.0,23.0,38084.0,,3.0,6.0,15233.0,49.0,104800.0,0.0,0.0,1.0,7.0,21338.0,26788.0,46.7,0.0,0.0,67.0,174.0,4.0,4.0,4.0,4.0,,4.0,,0.0,4.0,8.0,8.0,18.0,2.0,15.0,38.0,8.0,17.0,0.0,0.0,0.0,3.0,97.7,37.5,0.0,0.0,435977.0,88886.0,50300.0,55384.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230276,,20000.0,20000.0,20000.0, 60 months,21.49,546.6,D,D5,Maintenance Supervisor,10+ years,MORTGAGE,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230276,,debt_consolidation,Debt consolidation,238xx,VA,25.23,1.0,Jul-1998,670.0,674.0,1.0,11.0,,9.0,0.0,19185.0,78.3,21.0,f,0.0,0.0,28569.5393148935,28569.54,20000.0,8569.54,0.0,0.0,0.0,Jan-2019,14238.56,,Jan-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,188888.0,1.0,2.0,1.0,1.0,9.0,19758.0,56.0,1.0,2.0,9897.0,68.0,24500.0,0.0,3.0,1.0,4.0,20988.0,0.0,100.4,0.0,0.0,130.0,218.0,3.0,3.0,2.0,22.0,,3.0,11.0,0.0,2.0,4.0,2.0,5.0,7.0,6.0,12.0,4.0,9.0,0.0,0.0,0.0,2.0,95.2,100.0,0.0,0.0,232376.0,38943.0,15000.0,54754.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270467,,20000.0,20000.0,20000.0, 36 months,16.99,712.96,D,D1,Dealer,6 years,MORTGAGE,81000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270467,,home_improvement,Home improvement,891xx,NV,9.97,2.0,May-1998,660.0,664.0,1.0,20.0,81.0,13.0,1.0,6053.0,58.2,18.0,f,0.0,0.0,2258.55,2258.55,1307.73,950.82,0.0,0.0,0.0,Jan-2017,712.96,,Feb-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,299993.0,3.0,2.0,1.0,2.0,1.0,7567.0,84.0,1.0,2.0,2053.0,70.0,10400.0,0.0,1.0,2.0,5.0,29999.0,1047.0,84.4,0.0,0.0,111.0,220.0,6.0,1.0,2.0,6.0,20.0,6.0,20.0,0.0,4.0,5.0,7.0,9.0,3.0,10.0,13.0,5.0,13.0,0.0,0.0,0.0,3.0,82.4,60.0,1.0,0.0,307152.0,13620.0,6700.0,9030.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229625,,19200.0,19200.0,19200.0, 60 months,12.79,434.8,C,C1,Director of Development and Construction,3 years,MORTGAGE,136600.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229625,,credit_card,Credit card refinancing,750xx,TX,18.14,0.0,Feb-1985,740.0,744.0,2.0,37.0,,12.0,0.0,15366.0,52.8,29.0,f,11426.87,11426.87,12595.56,12595.56,7773.13,4822.43,0.0,0.0,0.0,Mar-2019,434.8,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,268512.0,0.0,3.0,1.0,3.0,9.0,32106.0,78.0,2.0,2.0,7853.0,68.0,29100.0,0.0,0.0,4.0,5.0,22376.0,4841.0,62.8,0.0,0.0,152.0,379.0,11.0,9.0,5.0,12.0,37.0,1.0,37.0,0.0,3.0,6.0,4.0,7.0,7.0,8.0,17.0,6.0,12.0,0.0,0.0,0.0,3.0,93.1,25.0,0.0,0.0,315600.0,47472.0,13000.0,41000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90104437,,28000.0,28000.0,28000.0, 36 months,16.99,998.14,D,D1,Business Development Manager,10+ years,OWN,119900.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90104437,,credit_card,Credit card refinancing,296xx,SC,19.41,0.0,Jun-2001,675.0,679.0,1.0,,,13.0,0.0,24685.0,68.2,22.0,f,0.0,0.0,31967.5474986415,31967.55,28000.0,3967.55,0.0,0.0,0.0,Sep-2017,22012.58,,Sep-2017,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,264967.0,6.0,2.0,2.0,3.0,4.0,64395.0,96.0,3.0,4.0,5569.0,80.0,36200.0,2.0,2.0,3.0,8.0,24088.0,8232.0,67.3,0.0,0.0,143.0,183.0,1.0,1.0,1.0,1.0,,4.0,,0.0,5.0,7.0,8.0,13.0,6.0,10.0,15.0,7.0,13.0,0.0,0.0,0.0,6.0,100.0,50.0,0.0,0.0,279596.0,89080.0,25200.0,67396.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90076386,,22000.0,22000.0,21750.0, 36 months,15.59,769.01,C,C5,Investor Relations ,2 years,RENT,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90076386,,credit_card,Credit card refinancing,073xx,NJ,14.51,0.0,Aug-2007,660.0,664.0,0.0,35.0,,21.0,0.0,20651.0,58.8,35.0,f,0.0,0.0,25815.9570690857,25522.59,22000.0,3815.96,0.0,0.0,0.0,Feb-2018,13297.01,,Mar-2019,734.0,730.0,0.0,35.0,1.0,Individual,,,,0.0,175.0,54518.0,2.0,9.0,0.0,0.0,60.0,33867.0,109.0,4.0,5.0,7796.0,83.0,35100.0,0.0,0.0,1.0,5.0,2596.0,3084.0,82.4,0.0,0.0,109.0,104.0,4.0,4.0,0.0,7.0,,9.0,,1.0,4.0,10.0,5.0,7.0,21.0,12.0,14.0,10.0,21.0,0.0,0.0,0.0,4.0,97.1,60.0,0.0,0.0,66100.0,54518.0,17500.0,31000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90120372,,30000.0,30000.0,30000.0, 36 months,19.99,1114.76,D,D4,Faculty Member,4 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90120372,,credit_card,Credit card refinancing,606xx,IL,19.19,1.0,Dec-2007,675.0,679.0,0.0,20.0,,16.0,0.0,25785.0,86.8,27.0,f,7308.07,7308.07,32294.72,32294.72,22691.93,9602.79,0.0,0.0,0.0,Mar-2019,1114.76,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,53119.0,0.0,11.0,0.0,0.0,27.0,27310.0,78.0,0.0,0.0,12673.0,79.0,29700.0,0.0,0.0,0.0,0.0,3320.0,3915.0,86.8,0.0,0.0,92.0,105.0,32.0,27.0,0.0,32.0,20.0,,20.0,0.0,3.0,3.0,3.0,7.0,13.0,3.0,10.0,3.0,16.0,0.0,0.0,0.0,0.0,96.3,100.0,0.0,0.0,67184.0,53119.0,29700.0,35140.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90391734,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Case Worker,3 years,MORTGAGE,49188.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90391734,,debt_consolidation,Debt consolidation,606xx,IL,21.66,0.0,Sep-1997,700.0,704.0,1.0,36.0,,20.0,0.0,6493.0,20.7,34.0,f,11666.28,11666.28,13706.27,13706.27,8333.72,5372.55,0.0,0.0,0.0,Mar-2019,460.1,Apr-2019,Mar-2019,679.0,675.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,159464.0,0.0,2.0,0.0,0.0,40.0,63545.0,49.0,1.0,1.0,2390.0,31.0,32200.0,0.0,0.0,1.0,1.0,10631.0,5497.0,39.6,0.0,0.0,132.0,228.0,9.0,9.0,1.0,49.0,36.0,3.0,36.0,1.0,3.0,9.0,3.0,5.0,11.0,17.0,22.0,9.0,20.0,0.0,0.0,0.0,1.0,93.9,0.0,0.0,0.0,220171.0,70038.0,9100.0,72971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90400857,,24000.0,24000.0,23750.0, 36 months,13.99,820.15,C,C3,Air Traffic Controller,10+ years,MORTGAGE,136799.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90400857,,debt_consolidation,Debt consolidation,805xx,CO,23.25,0.0,May-1999,660.0,664.0,0.0,,,20.0,0.0,57198.0,60.4,48.0,f,4726.05,4676.82,24473.93,24218.99,19273.95,5199.98,0.0,0.0,0.0,Mar-2019,820.15,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,555173.0,6.0,3.0,4.0,5.0,1.0,54589.0,93.0,4.0,5.0,13211.0,73.0,94700.0,1.0,0.0,6.0,12.0,27759.0,28807.0,60.3,0.0,0.0,124.0,208.0,1.0,1.0,4.0,1.0,,5.0,,0.0,6.0,10.0,11.0,18.0,15.0,16.0,29.0,10.0,20.0,0.0,0.0,0.0,10.0,100.0,45.5,0.0,0.0,601689.0,111787.0,72500.0,58807.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90296109,,22075.0,22075.0,22075.0, 60 months,15.59,532.03,C,C5,Project Manager,9 years,OWN,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90296109,,home_improvement,Home improvement,480xx,MI,8.78,1.0,Oct-2003,670.0,674.0,0.0,11.0,,5.0,0.0,2939.0,62.5,12.0,f,0.0,0.0,28137.144335327797,28137.14,22075.0,6035.54,26.600000030100002,0.0,0.0,Oct-2018,15892.97,,Oct-2018,704.0,700.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,4754.0,0.0,1.0,0.0,1.0,18.0,1815.0,24.0,0.0,0.0,1606.0,38.0,4700.0,0.0,2.0,0.0,1.0,951.0,1454.0,65.4,0.0,0.0,155.0,66.0,32.0,18.0,0.0,32.0,,18.0,11.0,0.0,2.0,3.0,3.0,3.0,8.0,4.0,4.0,3.0,5.0,0.0,0.0,1.0,0.0,91.7,33.3,0.0,0.0,12398.0,4754.0,4200.0,7698.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100160,,10000.0,10000.0,10000.0, 36 months,15.59,349.55,C,C5,SAFETY DIRECTOR,9 years,RENT,62000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100160,,debt_consolidation,Debt consolidation,770xx,TX,16.74,0.0,Mar-2000,660.0,664.0,5.0,,49.0,15.0,1.0,9418.0,29.3,48.0,f,0.0,0.0,11109.550892951002,11109.55,10000.0,1109.55,0.0,0.0,0.0,Jul-2017,8321.81,,May-2018,649.0,645.0,0.0,,1.0,Individual,,,,0.0,4000.0,28582.0,8.0,2.0,1.0,4.0,12.0,19164.0,70.0,9.0,10.0,4296.0,48.0,32100.0,6.0,0.0,10.0,14.0,2042.0,9882.0,38.2,0.0,0.0,127.0,198.0,0.0,0.0,1.0,0.0,,2.0,,0.0,3.0,5.0,3.0,15.0,16.0,12.0,29.0,5.0,14.0,0.0,0.0,0.0,10.0,100.0,33.3,1.0,0.0,59482.0,28582.0,16000.0,27382.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90327480,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Claims ,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90327480,,credit_card,Credit card refinancing,300xx,GA,18.75,0.0,May-2006,675.0,679.0,1.0,,,16.0,0.0,27756.0,44.2,48.0,f,0.0,0.0,22187.0343982313,22187.03,20000.0,2152.86,34.17,0.0,0.0,Aug-2017,16641.63,,Apr-2018,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,176240.0,2.0,2.0,1.0,2.0,9.0,19984.0,47.0,4.0,6.0,5478.0,45.0,62800.0,1.0,12.0,3.0,10.0,11015.0,24856.0,46.3,0.0,0.0,92.0,124.0,1.0,1.0,3.0,1.0,,3.0,,0.0,8.0,10.0,9.0,21.0,18.0,13.0,27.0,10.0,16.0,0.0,0.0,0.0,6.0,100.0,55.6,0.0,0.0,233816.0,47740.0,46300.0,42516.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90287178,,15000.0,15000.0,15000.0, 60 months,8.99,311.31,B,B1,Technical Recruiter,< 1 year,RENT,115000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90287178,,debt_consolidation,Debt consolidation,331xx,FL,10.86,0.0,Dec-2004,715.0,719.0,0.0,38.0,,15.0,0.0,14538.0,28.6,23.0,f,0.0,0.0,16435.8566075182,16435.86,15000.0,1435.86,0.0,0.0,0.0,Dec-2017,12407.56,,Feb-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,456669.0,1.0,2.0,0.0,1.0,15.0,8610.0,37.0,3.0,4.0,6114.0,31.0,50800.0,0.0,0.0,1.0,5.0,32619.0,22062.0,38.4,0.0,0.0,29.0,141.0,6.0,6.0,1.0,6.0,38.0,11.0,38.0,0.0,5.0,7.0,6.0,10.0,2.0,12.0,20.0,7.0,15.0,0.0,0.0,0.0,3.0,87.0,16.7,0.0,0.0,545614.0,23148.0,35800.0,23364.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88819142,,22400.0,22400.0,22400.0, 60 months,10.49,481.36,B,B3,Supervisor,10+ years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88819142,,debt_consolidation,Debt consolidation,349xx,FL,15.48,0.0,Dec-2004,720.0,724.0,0.0,,,7.0,0.0,16666.0,51.1,27.0,f,0.0,0.0,26916.66175848,26916.66,22400.0,4516.66,0.0,0.0,0.0,Mar-2019,4392.4,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,120146.0,0.0,1.0,0.0,2.0,13.0,13172.0,84.0,1.0,1.0,15417.0,62.0,32600.0,1.0,0.0,1.0,4.0,17164.0,12934.0,56.3,0.0,0.0,134.0,141.0,7.0,7.0,5.0,39.0,,9.0,,0.0,2.0,2.0,4.0,10.0,5.0,5.0,17.0,2.0,7.0,0.0,0.0,0.0,2.0,100.0,25.0,0.0,0.0,140556.0,29838.0,29600.0,15677.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90287762,,16000.0,16000.0,16000.0, 60 months,8.99,332.06,B,B1,,,OWN,46000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90287762,,credit_card,Credit card refinancing,180xx,PA,14.84,0.0,Jul-1986,755.0,759.0,0.0,,,10.0,0.0,22090.0,36.0,16.0,f,9155.26,9155.26,9609.76,9609.76,6844.74,2765.02,0.0,0.0,0.0,Mar-2019,332.06,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,25119.0,0.0,0.0,0.0,0.0,100.0,0.0,,1.0,2.0,8558.0,36.0,61400.0,0.0,0.0,1.0,2.0,2512.0,36139.0,36.7,0.0,0.0,161.0,362.0,10.0,10.0,1.0,10.0,,10.0,,0.0,7.0,8.0,8.0,10.0,3.0,9.0,12.0,8.0,10.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,149400.0,22090.0,57100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88769177,,35000.0,35000.0,35000.0, 60 months,10.49,752.12,B,B3,Owner,6 years,RENT,114000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88769177,,credit_card,Credit card refinancing,346xx,FL,16.24,0.0,Jun-2001,700.0,704.0,0.0,,,20.0,0.0,36464.0,58.4,26.0,f,20345.85,20345.85,21791.08,21791.08,14654.15,7136.93,0.0,0.0,0.0,Mar-2019,752.12,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,47148.0,2.0,1.0,0.0,1.0,14.0,10684.0,61.0,3.0,4.0,12178.0,59.0,62400.0,0.0,1.0,0.0,5.0,2357.0,9566.0,75.2,0.0,0.0,151.0,183.0,2.0,2.0,0.0,21.0,,,,0.0,10.0,18.0,10.0,10.0,5.0,19.0,21.0,18.0,20.0,0.0,0.0,0.0,3.0,100.0,40.0,0.0,0.0,79883.0,47148.0,38500.0,17483.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240094,,19800.0,19800.0,19800.0, 36 months,12.79,665.14,C,C1,Delivery manager,3 years,OWN,45000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240094,,debt_consolidation,Debt consolidation,365xx,AL,11.49,0.0,Jun-2004,675.0,679.0,0.0,,57.0,6.0,1.0,6075.0,27.7,23.0,f,0.0,0.0,11789.44,11789.44,6817.24,2586.16,0.0,2386.04,429.4871999357,Dec-2017,665.14,,Mar-2019,504.0,500.0,0.0,,1.0,Individual,,,,0.0,0.0,15664.0,0.0,1.0,0.0,2.0,14.0,9589.0,80.0,1.0,3.0,3411.0,46.0,21900.0,0.0,1.0,0.0,5.0,2611.0,14825.0,29.1,0.0,0.0,138.0,147.0,7.0,7.0,3.0,15.0,,,,0.0,2.0,2.0,4.0,8.0,9.0,5.0,11.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,25.0,1.0,0.0,33915.0,15664.0,20900.0,12015.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249245,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Attorney,5 years,RENT,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249245,,debt_consolidation,Debt consolidation,334xx,FL,24.74,1.0,Aug-2001,665.0,669.0,0.0,17.0,,33.0,0.0,2923.0,41.2,54.0,f,0.0,0.0,9731.5370008751,9731.54,8000.0,1731.54,0.0,0.0,0.0,Feb-2019,2356.23,,Feb-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,187260.0,2.0,27.0,3.0,3.0,2.0,184337.0,100.0,1.0,4.0,597.0,98.0,7100.0,1.0,2.0,0.0,7.0,5675.0,573.0,61.8,0.0,0.0,154.0,181.0,4.0,2.0,0.0,15.0,,13.0,,0.0,2.0,3.0,2.0,5.0,43.0,6.0,10.0,3.0,33.0,0.0,0.0,0.0,4.0,97.9,0.0,0.0,0.0,191345.0,187260.0,1500.0,184245.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90195681,,6400.0,6400.0,6400.0, 36 months,19.99,237.82,D,D4,,,MORTGAGE,18876.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90195681,,debt_consolidation,Debt consolidation,114xx,NY,12.84,0.0,May-2006,670.0,674.0,0.0,,89.0,5.0,1.0,7380.0,70.3,11.0,f,0.0,0.0,7439.2114978442005,7439.21,6400.0,1039.21,0.0,0.0,0.0,Sep-2017,5068.12,,Nov-2018,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,7380.0,1.0,0.0,0.0,0.0,112.0,0.0,,1.0,4.0,4174.0,70.0,10500.0,0.0,0.0,0.0,4.0,1476.0,2320.0,76.1,0.0,0.0,112.0,124.0,4.0,4.0,0.0,4.0,,18.0,,0.0,3.0,3.0,4.0,7.0,1.0,5.0,9.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,50.0,1.0,0.0,10500.0,7380.0,9700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90397786,,13000.0,13000.0,13000.0, 36 months,13.99,444.25,C,C3,Sales Manager,10+ years,MORTGAGE,122000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90397786,,debt_consolidation,Debt consolidation,945xx,CA,13.77,0.0,Nov-1996,665.0,669.0,0.0,,74.0,18.0,1.0,12887.0,33.2,28.0,f,0.0,0.0,3189.62,3189.62,292.69,141.46,0.0,2755.47,495.9846000075,Nov-2016,444.25,,Mar-2017,499.0,0.0,0.0,,1.0,Individual,,,,0.0,281.0,29723.0,2.0,2.0,0.0,2.0,16.0,16836.0,62.0,3.0,6.0,6090.0,45.0,38800.0,0.0,0.0,3.0,8.0,1982.0,15079.0,35.3,0.0,0.0,149.0,238.0,1.0,1.0,0.0,35.0,,5.0,,0.0,2.0,9.0,3.0,6.0,7.0,16.0,21.0,9.0,18.0,0.0,0.0,0.0,3.0,100.0,66.7,1.0,0.0,65800.0,29723.0,23300.0,27000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90085659,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Program Manager,10+ years,MORTGAGE,117000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90085659,,credit_card,Credit card refinancing,853xx,AZ,28.26,0.0,Feb-1991,690.0,694.0,1.0,,,11.0,0.0,45654.0,21.3,19.0,f,0.0,0.0,38401.7112590335,38401.71,35000.0,3401.71,0.0,0.0,0.0,Jul-2017,28860.51,,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,413886.0,1.0,3.0,0.0,3.0,13.0,246840.0,81.0,0.0,2.0,39493.0,63.0,62900.0,0.0,0.0,2.0,6.0,41389.0,15446.0,22.7,0.0,0.0,145.0,307.0,17.0,3.0,4.0,17.0,,0.0,,0.0,2.0,2.0,5.0,6.0,7.0,6.0,7.0,2.0,11.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,434104.0,295398.0,61100.0,246410.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90176419,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Director IT/Production,< 1 year,MORTGAGE,105000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90176419,,credit_card,Credit card refinancing,601xx,IL,17.45,0.0,Oct-1994,705.0,709.0,1.0,81.0,,14.0,0.0,40174.0,70.4,29.0,f,23252.59,23252.59,24868.96,24868.96,16747.41,8121.55,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,322.0,209660.0,0.0,2.0,0.0,0.0,36.0,21944.0,17.0,1.0,2.0,13818.0,60.0,57100.0,2.0,0.0,1.0,2.0,17472.0,15626.0,72.0,0.0,0.0,155.0,263.0,9.0,9.0,3.0,9.0,,6.0,,0.0,5.0,5.0,7.0,11.0,11.0,10.0,15.0,5.0,14.0,0.0,0.0,0.0,1.0,96.6,42.9,0.0,0.0,266527.0,62118.0,55800.0,50302.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90393111,,16000.0,16000.0,16000.0, 36 months,12.79,537.49,C,C1,checker,10+ years,OWN,48000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90393111,,debt_consolidation,Debt consolidation,928xx,CA,33.6,1.0,Sep-1986,675.0,679.0,0.0,8.0,,11.0,0.0,13174.0,44.1,17.0,f,0.0,0.0,19005.3676185112,19005.37,16000.0,3005.37,0.0,0.0,0.0,Oct-2018,6617.4,,Nov-2018,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,21854.0,0.0,2.0,0.0,1.0,20.0,8680.0,32.0,0.0,1.0,5374.0,38.0,29900.0,0.0,1.0,0.0,2.0,2185.0,13027.0,47.3,0.0,0.0,167.0,182.0,16.0,16.0,1.0,50.0,,16.0,8.0,0.0,4.0,7.0,6.0,6.0,4.0,9.0,12.0,7.0,11.0,0.0,0.0,0.0,0.0,88.2,20.0,0.0,0.0,56875.0,21854.0,24700.0,26975.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90394107,,9600.0,9600.0,9600.0, 36 months,14.49,330.4,C,C4,Assembly ,2 years,OWN,24000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90394107,,debt_consolidation,Debt consolidation,482xx,MI,28.73,0.0,May-2013,695.0,699.0,0.0,,,10.0,0.0,7003.0,25.7,11.0,f,2204.81,2204.81,9620.23,9620.23,7395.19,2225.04,0.0,0.0,0.0,Mar-2019,330.4,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,100.0,8712.0,1.0,2.0,0.0,1.0,24.0,1709.0,18.0,1.0,7.0,2841.0,24.0,27200.0,0.0,0.0,3.0,8.0,871.0,13670.0,32.7,0.0,0.0,40.0,25.0,2.0,2.0,0.0,2.0,,3.0,,0.0,6.0,7.0,6.0,6.0,2.0,8.0,9.0,7.0,10.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,36592.0,8712.0,20300.0,9392.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249773,,8000.0,8000.0,8000.0, 36 months,15.59,279.64,C,C5,Resident Physician,< 1 year,RENT,50000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249773,,other,Other,757xx,TX,30.34,0.0,Aug-2005,660.0,664.0,1.0,,45.0,23.0,4.0,6834.0,78.6,44.0,f,1862.71,1862.71,8102.63,8102.63,6137.29,1965.34,0.0,0.0,0.0,Mar-2019,279.64,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,402691.0,1.0,18.0,0.0,1.0,20.0,395857.0,116.0,2.0,5.0,3449.0,114.0,8700.0,2.0,2.0,2.0,6.0,17508.0,866.0,88.8,0.0,0.0,133.0,112.0,4.0,4.0,0.0,4.0,,3.0,,0.0,4.0,4.0,4.0,5.0,35.0,5.0,9.0,4.0,23.0,0.0,0.0,0.0,2.0,100.0,75.0,0.0,0.0,342765.0,402691.0,7700.0,334065.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189605,,7200.0,7200.0,7200.0, 36 months,12.79,241.87,C,C1,General Manager ,2 years,MORTGAGE,54900.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189605,,credit_card,Credit card refinancing,034xx,NH,28.41,0.0,Jan-2008,675.0,679.0,1.0,38.0,33.0,10.0,1.0,7105.0,71.1,23.0,f,0.0,0.0,4858.99,4858.99,1916.39,739.06,0.0,2203.54,396.6372,Sep-2017,241.87,,Aug-2018,544.0,540.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,160445.0,1.0,4.0,0.0,1.0,13.0,45058.0,93.0,2.0,2.0,3429.0,69.0,10000.0,1.0,1.0,1.0,6.0,16045.0,2895.0,71.1,0.0,0.0,98.0,104.0,2.0,2.0,2.0,2.0,38.0,2.0,38.0,2.0,4.0,4.0,4.0,5.0,13.0,4.0,7.0,4.0,10.0,0.0,0.0,0.0,2.0,82.6,25.0,0.0,1.0,189266.0,60789.0,10000.0,48528.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Aug-2018,COMPLETE,Jan-2018,2203.54,40.0,7.0 +90395529,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Business Development,2 years,MORTGAGE,130000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90395529,,major_purchase,Major purchase,804xx,CO,27.78,2.0,Apr-1997,660.0,664.0,0.0,1.0,,17.0,0.0,47165.0,90.0,30.0,f,1837.44,1837.44,7978.13,7978.13,6162.56,1815.57,0.0,0.0,0.0,Mar-2019,275.33,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,185060.0,0.0,4.0,1.0,2.0,11.0,42301.0,71.0,0.0,1.0,6006.0,79.0,50500.0,0.0,1.0,0.0,3.0,10886.0,3096.0,89.8,0.0,0.0,148.0,233.0,23.0,11.0,4.0,23.0,,,1.0,0.0,8.0,10.0,8.0,10.0,11.0,10.0,14.0,10.0,17.0,0.0,0.0,0.0,1.0,89.7,75.0,0.0,0.0,215508.0,93693.0,30500.0,59636.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300066,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Dental Hygienist,2 years,MORTGAGE,280000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300066,,home_improvement,Home improvement,327xx,FL,13.28,2.0,Mar-2002,685.0,689.0,1.0,4.0,,22.0,0.0,24005.0,49.0,37.0,f,4568.51,4568.51,19804.8,19804.8,15431.49,4373.31,0.0,0.0,0.0,Mar-2019,683.46,Apr-2019,Mar-2019,739.0,735.0,0.0,69.0,1.0,Individual,,,,0.0,0.0,543813.0,2.0,9.0,1.0,2.0,9.0,101545.0,65.0,3.0,4.0,4925.0,60.0,49000.0,0.0,0.0,2.0,7.0,24719.0,15323.0,50.7,0.0,0.0,152.0,174.0,1.0,1.0,1.0,4.0,,3.0,4.0,1.0,6.0,10.0,6.0,7.0,19.0,12.0,17.0,10.0,22.0,0.0,0.0,0.0,4.0,88.9,16.7,0.0,0.0,604237.0,125550.0,31100.0,128229.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90218131,,20400.0,20400.0,20400.0, 60 months,15.59,491.66,C,C5,Operating Engineer,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90218131,,debt_consolidation,Debt consolidation,480xx,MI,17.29,0.0,Jun-2004,715.0,719.0,1.0,44.0,,13.0,0.0,3489.0,24.9,25.0,f,12481.49,12481.49,14240.47,14240.47,7918.51,6321.96,0.0,0.0,0.0,Mar-2019,491.66,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,173.0,167763.0,0.0,4.0,1.0,2.0,11.0,47262.0,74.0,2.0,6.0,383.0,65.0,14000.0,2.0,3.0,2.0,9.0,12905.0,3386.0,15.4,0.0,0.0,119.0,147.0,10.0,10.0,2.0,19.0,,6.0,,0.0,3.0,5.0,4.0,5.0,12.0,8.0,11.0,5.0,13.0,0.0,0.0,0.0,3.0,80.0,25.0,0.0,0.0,197410.0,50751.0,4000.0,63584.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90215582,,28475.0,28475.0,28475.0, 60 months,10.99,618.98,B,B4,Operator,9 years,MORTGAGE,130000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90215582,,debt_consolidation,Debt consolidation,757xx,TX,18.03,2.0,Jan-1991,730.0,734.0,0.0,11.0,,20.0,0.0,18480.0,40.5,39.0,f,16638.8,16638.8,17933.03,17933.03,11836.2,6096.83,0.0,0.0,0.0,Mar-2019,618.98,Apr-2019,Mar-2019,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,173116.0,0.0,3.0,0.0,0.0,39.0,24614.0,40.0,1.0,5.0,3397.0,40.0,45600.0,0.0,0.0,1.0,5.0,9111.0,15875.0,40.5,0.0,0.0,160.0,308.0,8.0,8.0,1.0,19.0,,8.0,,0.0,6.0,13.0,6.0,10.0,11.0,16.0,27.0,13.0,20.0,0.0,0.0,0.0,1.0,97.2,0.0,0.0,0.0,271870.0,43094.0,26700.0,62270.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90393746,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,,,OWN,58880.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90393746,,other,Other,322xx,FL,28.94,0.0,May-1993,720.0,724.0,0.0,57.0,,22.0,0.0,10452.0,24.9,42.0,w,2197.25,2197.25,9418.59,9418.59,7802.75,1615.84,0.0,0.0,0.0,Mar-2019,324.98,Apr-2019,Mar-2019,684.0,680.0,0.0,57.0,1.0,Individual,,,,0.0,12250.0,45209.0,1.0,2.0,1.0,2.0,6.0,34757.0,89.0,0.0,3.0,3095.0,36.0,40200.0,0.0,12.0,0.0,5.0,2153.0,16222.0,20.1,0.0,0.0,134.0,280.0,22.0,6.0,0.0,35.0,57.0,22.0,57.0,1.0,4.0,11.0,8.0,15.0,9.0,20.0,33.0,11.0,22.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,89019.0,45209.0,20300.0,48819.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90149382,,12000.0,12000.0,12000.0, 60 months,14.49,282.28,C,C4,security,2 years,MORTGAGE,24000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90149382,,home_improvement,Home improvement,751xx,TX,16.4,0.0,Aug-2006,670.0,674.0,0.0,,,2.0,0.0,12652.0,79.1,14.0,f,7263.18,7263.18,8161.97,8161.97,4736.82,3425.15,0.0,0.0,0.0,Mar-2019,282.28,Apr-2019,Mar-2019,629.0,625.0,0.0,,1.0,Individual,,,,0.0,0.0,12652.0,0.0,0.0,0.0,0.0,96.0,0.0,,0.0,0.0,7389.0,79.0,16000.0,0.0,0.0,0.0,0.0,6326.0,111.0,98.5,0.0,0.0,121.0,105.0,29.0,29.0,0.0,50.0,,,,0.0,1.0,2.0,1.0,2.0,11.0,2.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,16000.0,12652.0,7500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90008783,,12000.0,12000.0,12000.0, 60 months,9.49,251.97,B,B2, Systems Engineeri,8 years,MORTGAGE,185000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90008783,,home_improvement,Home improvement,087xx,NJ,5.55,2.0,Oct-1994,700.0,704.0,0.0,16.0,,7.0,0.0,4579.0,37.8,37.0,f,6903.91,6903.91,7291.31,7291.31,5096.09,2195.22,0.0,0.0,0.0,Mar-2019,251.97,Apr-2019,Mar-2019,704.0,700.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,388101.0,0.0,2.0,0.0,0.0,47.0,44182.0,67.0,0.0,0.0,4579.0,62.0,12100.0,0.0,0.0,0.0,0.0,55443.0,7521.0,37.8,0.0,0.0,233.0,263.0,27.0,27.0,6.0,27.0,16.0,,16.0,8.0,1.0,1.0,4.0,9.0,19.0,4.0,12.0,1.0,7.0,0.0,0.0,0.0,0.0,64.9,25.0,0.0,0.0,446367.0,48761.0,12100.0,66339.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90107556,,11200.0,11200.0,11200.0, 60 months,8.99,232.44,B,B1,QA Tech,10+ years,MORTGAGE,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90107556,,debt_consolidation,Debt consolidation,497xx,MI,12.42,0.0,Nov-1994,680.0,684.0,1.0,,,6.0,0.0,11594.0,46.8,19.0,f,0.0,0.0,12139.9802662212,12139.98,11200.0,939.98,0.0,0.0,0.0,Oct-2017,9588.73,,Jan-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,283.0,75867.0,0.0,0.0,1.0,2.0,9.0,0.0,,2.0,2.0,3415.0,47.0,24800.0,1.0,1.0,1.0,4.0,12645.0,8322.0,50.5,0.0,0.0,252.0,262.0,9.0,9.0,1.0,9.0,,4.0,,0.0,3.0,4.0,3.0,7.0,7.0,5.0,11.0,4.0,6.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,94432.0,11594.0,16800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90267261,,24000.0,24000.0,24000.0, 60 months,9.49,503.93,B,B2,Specialist Call Center Operations,9 years,MORTGAGE,78000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90267261,,credit_card,Credit card refinancing,982xx,WA,9.78,0.0,Sep-1999,710.0,714.0,1.0,,,6.0,0.0,45646.0,86.1,25.0,f,0.0,0.0,26056.0942585804,26056.09,24000.0,2056.09,0.0,0.0,0.0,Sep-2017,21048.42,,Feb-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,211369.0,2.0,0.0,0.0,1.0,23.0,0.0,,2.0,3.0,385.0,86.0,53000.0,0.0,3.0,1.0,4.0,35228.0,4615.0,7.7,0.0,0.0,204.0,150.0,2.0,2.0,1.0,2.0,,2.0,,0.0,1.0,5.0,1.0,7.0,4.0,5.0,20.0,5.0,6.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,237300.0,45646.0,5000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90306188,,18000.0,18000.0,18000.0, 60 months,10.99,391.28,B,B4,Paralegal ,< 1 year,RENT,75000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90306188,,credit_card,Credit card refinancing,333xx,FL,16.85,0.0,Jan-1996,690.0,694.0,1.0,43.0,,15.0,0.0,16472.0,54.5,23.0,f,0.0,0.0,9379.73,9379.73,6047.02,3332.71,0.0,0.0,0.0,Oct-2018,391.28,,Mar-2019,524.0,520.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,54560.0,2.0,7.0,0.0,0.0,37.0,38088.0,73.0,2.0,5.0,4780.0,66.0,30200.0,0.0,0.0,1.0,5.0,3637.0,6085.0,71.7,0.0,0.0,248.0,226.0,2.0,2.0,0.0,6.0,44.0,6.0,44.0,6.0,4.0,6.0,5.0,10.0,10.0,7.0,13.0,6.0,15.0,0.0,0.0,0.0,2.0,60.9,60.0,0.0,0.0,82284.0,54560.0,21500.0,52084.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89774741,,32000.0,32000.0,32000.0, 60 months,15.59,771.23,C,C5,Staff Software Engineer,6 years,MORTGAGE,106500.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89774741,,debt_consolidation,Debt consolidation,761xx,TX,33.5,0.0,Jan-2000,695.0,699.0,0.0,,,24.0,0.0,40195.0,73.6,49.0,f,0.0,0.0,20024.26,20024.26,10912.28,9111.98,0.0,0.0,0.0,Dec-2018,771.23,,Nov-2018,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,288674.0,4.0,14.0,2.0,6.0,5.0,118158.0,90.0,1.0,1.0,9110.0,85.0,54600.0,1.0,5.0,3.0,8.0,12028.0,12732.0,72.1,0.0,0.0,129.0,200.0,4.0,4.0,2.0,4.0,,5.0,,0.0,5.0,6.0,7.0,8.0,36.0,9.0,11.0,7.0,24.0,0.0,0.0,0.0,4.0,100.0,42.9,0.0,0.0,317240.0,158353.0,45600.0,131640.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90207805,,13000.0,13000.0,13000.0, 36 months,12.79,436.71,C,C1,,,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90207805,,debt_consolidation,Debt consolidation,350xx,AL,20.59,0.0,Oct-1975,670.0,674.0,0.0,50.0,43.0,11.0,1.0,5977.0,43.3,29.0,w,0.0,0.0,14765.5253413485,14765.53,13000.0,1765.53,0.0,0.0,0.0,Feb-2018,55.2,,Mar-2019,784.0,780.0,0.0,56.0,1.0,Individual,,,,0.0,0.0,127362.0,1.0,2.0,1.0,2.0,7.0,41837.0,81.0,1.0,2.0,3386.0,73.0,13800.0,0.0,0.0,0.0,4.0,11578.0,2768.0,60.5,0.0,0.0,180.0,491.0,3.0,3.0,2.0,20.0,56.0,16.0,56.0,2.0,2.0,5.0,2.0,5.0,10.0,8.0,17.0,5.0,11.0,0.0,0.0,0.0,2.0,89.3,50.0,0.0,0.0,187334.0,47814.0,7000.0,51434.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90299523,,35000.0,35000.0,35000.0, 60 months,19.99,927.1,D,D4,Physician,9 years,OWN,235000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90299523,,debt_consolidation,Debt consolidation,794xx,TX,20.66,0.0,Jan-1996,675.0,679.0,0.0,,,30.0,0.0,134488.0,93.3,49.0,f,22305.33,22305.33,26847.03,26847.03,12694.67,14152.36,0.0,0.0,0.0,Mar-2019,927.1,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,502138.0,1.0,1.0,1.0,1.0,8.0,10298.0,93.0,3.0,6.0,50402.0,92.0,140100.0,0.0,0.0,3.0,7.0,16738.0,0.0,99.6,0.0,0.0,171.0,247.0,3.0,3.0,3.0,13.0,,2.0,,0.0,9.0,19.0,10.0,15.0,10.0,26.0,35.0,19.0,30.0,0.0,0.0,0.0,4.0,100.0,90.0,0.0,0.0,568929.0,148273.0,115500.0,11100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229508,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Special Agent,10+ years,RENT,130000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229508,,debt_consolidation,Debt consolidation,103xx,NY,10.54,0.0,Oct-1997,695.0,699.0,2.0,24.0,,17.0,0.0,21536.0,36.4,39.0,f,0.0,0.0,33308.4459705573,33308.45,30000.0,3308.45,0.0,0.0,0.0,May-2017,28768.59,,May-2017,704.0,700.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,412261.0,3.0,4.0,0.0,2.0,13.0,81343.0,68.0,6.0,9.0,8711.0,46.0,59100.0,1.0,0.0,4.0,11.0,24251.0,33176.0,33.6,0.0,0.0,129.0,227.0,3.0,3.0,3.0,3.0,24.0,0.0,24.0,4.0,3.0,4.0,10.0,15.0,17.0,12.0,19.0,4.0,17.0,0.0,0.0,0.0,6.0,64.1,20.0,0.0,0.0,508607.0,102879.0,50000.0,90507.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90307701,,16000.0,16000.0,16000.0, 60 months,13.99,372.21,C,C3,Lead Maintenance,4 years,OWN,80000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90307701,,debt_consolidation,Debt consolidation,751xx,TX,16.52,0.0,Sep-1999,675.0,679.0,0.0,42.0,,11.0,0.0,11980.0,42.0,32.0,f,0.0,0.0,12972.13,12972.13,3468.78,2846.35,0.0,6657.0,1198.26,Mar-2018,372.21,,Dec-2018,589.0,585.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,157107.0,3.0,1.0,0.0,1.0,23.0,10079.0,84.0,4.0,8.0,3298.0,54.0,28500.0,8.0,2.0,12.0,10.0,14282.0,2416.0,78.6,0.0,0.0,151.0,204.0,3.0,3.0,4.0,12.0,75.0,0.0,74.0,4.0,3.0,6.0,3.0,11.0,8.0,9.0,20.0,6.0,11.0,0.0,0.0,0.0,5.0,90.3,66.7,0.0,0.0,176513.0,22059.0,11300.0,12013.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,COMPLETE,Sep-2018,6657.0,50.0,12.0 +90189530,,10000.0,10000.0,10000.0, 60 months,12.79,226.46,C,C1,Assistant Escrow Officer,10+ years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189530,,debt_consolidation,Debt consolidation,863xx,AZ,16.2,0.0,Dec-2000,660.0,664.0,0.0,,56.0,6.0,2.0,7099.0,52.6,16.0,f,0.0,0.0,11864.689336655701,11864.69,10000.0,1864.69,0.0,0.0,0.0,Jun-2018,7.98,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,2132.0,210584.0,1.0,1.0,0.0,1.0,23.0,20712.0,78.0,0.0,1.0,3932.0,69.0,13500.0,1.0,1.0,2.0,3.0,35097.0,6027.0,52.9,0.0,0.0,153.0,189.0,20.0,6.0,3.0,20.0,,8.0,,0.0,2.0,3.0,3.0,5.0,5.0,4.0,8.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,33.3,2.0,0.0,224236.0,27811.0,12800.0,26633.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90275214,,14000.0,14000.0,14000.0, 60 months,8.99,290.55,B,B1,PRINCIPAL FIELD ENGINEER,2 years,MORTGAGE,90000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90275214,,credit_card,Credit card refinancing,234xx,VA,11.57,2.0,Jun-2001,690.0,694.0,0.0,13.0,,5.0,0.0,14645.0,54.2,23.0,f,8010.94,8010.94,8418.96,8418.96,5989.06,2429.9,0.0,0.0,0.0,Mar-2019,290.55,Apr-2019,Mar-2019,719.0,715.0,2.0,13.0,1.0,Individual,,,,0.0,0.0,211712.0,0.0,1.0,0.0,0.0,40.0,23477.0,,0.0,1.0,8799.0,54.0,27000.0,0.0,10.0,0.0,3.0,42342.0,8201.0,51.8,0.0,0.0,147.0,183.0,13.0,13.0,5.0,33.0,,,,2.0,1.0,2.0,2.0,6.0,6.0,3.0,10.0,2.0,5.0,0.0,0.0,2.0,0.0,91.3,0.0,0.0,0.0,255231.0,38122.0,17000.0,40275.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90196134,,20000.0,20000.0,20000.0, 36 months,12.79,671.86,C,C1,Truck Driver,10+ years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90196134,,credit_card,Credit card refinancing,131xx,NY,10.91,0.0,Dec-1988,665.0,669.0,0.0,58.0,,8.0,0.0,6788.0,27.9,13.0,w,4509.54,4509.54,19469.73,19469.73,15490.46,3979.27,0.0,0.0,0.0,Mar-2019,671.86,Apr-2019,Mar-2019,719.0,715.0,0.0,58.0,1.0,Individual,,,,0.0,327.0,19719.0,2.0,2.0,1.0,1.0,6.0,12931.0,81.0,2.0,4.0,2375.0,49.0,24300.0,0.0,1.0,1.0,5.0,2465.0,320.0,94.2,0.0,0.0,43.0,333.0,1.0,1.0,0.0,15.0,58.0,11.0,58.0,1.0,3.0,5.0,3.0,4.0,4.0,6.0,9.0,5.0,8.0,0.0,0.0,0.0,3.0,92.3,100.0,0.0,0.0,40344.0,19719.0,5500.0,16044.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88673875,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,Supervisor IT Department,10+ years,RENT,92000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88673875,,debt_consolidation,Debt consolidation,554xx,MN,20.38,0.0,Sep-2001,675.0,679.0,0.0,36.0,,25.0,0.0,33579.0,22.2,31.0,f,21238.06,21238.06,23887.89,23887.89,13761.94,10043.61,82.34,0.0,0.0,Mar-2019,823.31,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Joint App,136000.0,15.3,Not Verified,0.0,0.0,57089.0,0.0,4.0,1.0,1.0,8.0,23510.0,64.0,0.0,6.0,6672.0,30.0,151300.0,0.0,0.0,1.0,7.0,2595.0,107676.0,23.6,0.0,0.0,127.0,180.0,13.0,8.0,0.0,16.0,36.0,8.0,36.0,0.0,13.0,14.0,14.0,15.0,6.0,21.0,25.0,14.0,25.0,0.0,0.0,0.0,1.0,96.7,28.6,0.0,0.0,188084.0,57089.0,140900.0,36784.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90155344,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,Service technician,< 1 year,RENT,68000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90155344,,debt_consolidation,Debt consolidation,770xx,TX,12.6,0.0,Jul-2004,665.0,669.0,1.0,80.0,,7.0,0.0,4897.0,85.9,15.0,w,0.0,0.0,7834.9108236365,7834.91,7000.0,834.91,0.0,0.0,0.0,Jul-2017,5205.11,,Mar-2019,749.0,745.0,0.0,80.0,1.0,Individual,,,,0.0,0.0,16401.0,2.0,3.0,3.0,4.0,4.0,11504.0,83.0,1.0,1.0,2290.0,84.0,5700.0,2.0,0.0,2.0,5.0,2343.0,803.0,85.9,0.0,0.0,146.0,128.0,10.0,4.0,0.0,10.0,,4.0,,0.0,3.0,3.0,3.0,6.0,8.0,3.0,7.0,3.0,7.0,0.0,0.0,0.0,4.0,80.0,66.7,0.0,0.0,19560.0,16401.0,5700.0,13860.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90117198,,22400.0,22400.0,22400.0, 60 months,15.59,539.86,C,C5,Train Operator,10+ years,RENT,80000.0,Not Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90117198,,credit_card,Credit card refinancing,103xx,NY,25.32,0.0,Dec-2006,670.0,674.0,0.0,,,17.0,0.0,30790.0,42.6,34.0,f,14083.45,14083.45,15230.62,15230.62,8316.55,6806.11,107.96,0.0,0.0,Feb-2019,566.85,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,63992.0,1.0,2.0,1.0,4.0,12.0,32872.0,80.0,2.0,5.0,3722.0,56.0,72300.0,2.0,7.0,1.0,9.0,3764.0,34194.0,36.9,0.0,0.0,86.0,117.0,4.0,4.0,0.0,4.0,,9.0,,0.0,9.0,11.0,11.0,16.0,10.0,14.0,23.0,11.0,17.0,0.0,0.0,0.0,3.0,100.0,9.1,0.0,0.0,114679.0,63992.0,54200.0,41000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082579,,39000.0,39000.0,39000.0, 60 months,10.99,847.77,B,B4,Account Executive,6 years,MORTGAGE,128000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082579,,debt_consolidation,Debt consolidation,028xx,MA,29.94,0.0,Jan-1997,730.0,734.0,2.0,47.0,,30.0,0.0,31054.0,28.8,68.0,f,0.0,0.0,44467.740532957,44467.74,39000.0,5467.74,0.0,0.0,0.0,Mar-2018,30867.71,,Mar-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,313423.0,2.0,6.0,2.0,5.0,9.0,76767.0,75.0,2.0,6.0,8554.0,51.0,107800.0,1.0,4.0,4.0,12.0,11194.0,53526.0,31.6,0.0,0.0,168.0,236.0,3.0,3.0,5.0,16.0,47.0,0.0,47.0,0.0,5.0,11.0,12.0,22.0,20.0,23.0,42.0,11.0,30.0,0.0,0.0,0.0,5.0,97.1,8.3,0.0,0.0,418317.0,107821.0,78300.0,102417.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249187,,35000.0,35000.0,35000.0, 60 months,12.79,792.61,C,C1,General manager,10+ years,OWN,130000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249187,,debt_consolidation,Debt consolidation,853xx,AZ,6.83,0.0,Dec-2000,710.0,714.0,2.0,,,17.0,0.0,16894.0,46.9,26.0,f,20830.03,20830.03,22960.82,22960.82,14169.97,8790.85,0.0,0.0,0.0,Mar-2019,792.61,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,218864.0,1.0,1.0,1.0,2.0,9.0,1702.0,28.0,1.0,2.0,3556.0,44.0,36000.0,1.0,0.0,3.0,4.0,12874.0,11140.0,54.0,0.0,0.0,124.0,189.0,3.0,3.0,2.0,3.0,,3.0,,0.0,7.0,12.0,7.0,8.0,8.0,14.0,16.0,12.0,17.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,284263.0,18596.0,24200.0,6013.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90277441,,5100.0,5100.0,5100.0, 36 months,24.49,201.41,E,E3,,,RENT,17000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90277441,,debt_consolidation,Debt consolidation,678xx,KS,25.99,0.0,Jul-2007,675.0,679.0,2.0,,,9.0,0.0,2165.0,22.6,12.0,f,1301.12,1301.12,5833.95,5833.95,3798.88,2035.07,0.0,0.0,0.0,Mar-2019,201.41,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,592.0,9191.0,3.0,2.0,1.0,4.0,8.0,7026.0,93.0,3.0,5.0,829.0,54.0,9600.0,5.0,1.0,14.0,9.0,1021.0,5721.0,22.7,0.0,0.0,110.0,106.0,5.0,5.0,0.0,6.0,,2.0,,0.0,3.0,5.0,3.0,3.0,5.0,7.0,7.0,5.0,9.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,17129.0,9191.0,7400.0,7529.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392397,,12000.0,12000.0,12000.0, 60 months,15.59,289.21,C,C5,Senior Director,3 years,RENT,96000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392397,,debt_consolidation,Debt consolidation,900xx,CA,4.35,0.0,May-2006,665.0,669.0,1.0,52.0,23.0,13.0,1.0,10553.0,41.7,18.0,f,6721.46,6721.46,8870.39,8870.39,5278.54,3591.85,0.0,0.0,0.0,Mar-2019,310.0,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,10553.0,1.0,0.0,0.0,0.0,74.0,0.0,,3.0,8.0,2101.0,42.0,25300.0,1.0,0.0,2.0,8.0,812.0,13389.0,43.7,0.0,0.0,124.0,112.0,4.0,4.0,0.0,4.0,,6.0,,0.0,9.0,10.0,12.0,14.0,3.0,13.0,15.0,10.0,13.0,0.0,0.0,0.0,3.0,94.1,25.0,0.0,1.0,25300.0,10553.0,23800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90265158,,19200.0,19200.0,19200.0, 60 months,17.99,487.45,D,D2,food service manager,10+ years,RENT,55000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90265158,,debt_consolidation,Debt consolidation,337xx,FL,28.47,1.0,May-2002,670.0,674.0,0.0,13.0,77.0,20.0,1.0,12698.0,44.6,33.0,f,0.0,0.0,11312.36,11312.36,5427.88,5884.48,0.0,0.0,0.0,Sep-2018,487.45,,Mar-2019,569.0,565.0,0.0,,1.0,Individual,,,,0.0,0.0,27952.0,1.0,2.0,1.0,1.0,11.0,15254.0,66.0,1.0,4.0,3750.0,54.0,28500.0,2.0,0.0,1.0,5.0,1747.0,3035.0,72.4,0.0,0.0,90.0,172.0,5.0,5.0,2.0,5.0,,11.0,13.0,0.0,3.0,9.0,4.0,7.0,4.0,18.0,27.0,9.0,20.0,0.0,0.0,0.0,2.0,96.2,25.0,1.0,0.0,51700.0,27952.0,11000.0,23200.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jan-2019,ACTIVE,Jan-2019,6487.0,45.0,18.0 +90138435,,24000.0,24000.0,24000.0, 60 months,13.49,552.12,C,C2,Sr Manager ,5 years,OWN,76000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90138435,,credit_card,Credit card refinancing,152xx,PA,16.12,0.0,Apr-2004,670.0,674.0,0.0,30.0,,42.0,0.0,32977.0,59.0,59.0,f,8347.75,8347.75,21966.51,21966.51,15652.25,6314.26,0.0,0.0,0.0,Mar-2019,552.12,Apr-2019,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,341294.0,0.0,21.0,0.0,0.0,39.0,152330.0,113.0,1.0,7.0,6723.0,97.0,55900.0,2.0,0.0,1.0,8.0,8751.0,15374.0,67.1,0.0,0.0,145.0,149.0,10.0,10.0,1.0,10.0,,12.0,,0.0,10.0,13.0,11.0,19.0,21.0,20.0,37.0,13.0,42.0,0.0,0.0,0.0,1.0,98.3,36.4,0.0,0.0,351885.0,185307.0,46800.0,134466.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90225992,,21000.0,21000.0,21000.0, 60 months,15.59,506.12,C,C5,Owner,1 year,OWN,100000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90225992,,debt_consolidation,Debt consolidation,553xx,MN,17.32,0.0,Jan-2008,675.0,679.0,0.0,,86.0,7.0,1.0,16807.0,78.2,12.0,f,12847.04,12847.04,14659.29,14659.29,8152.96,6506.33,0.0,0.0,0.0,Mar-2019,506.12,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,48447.0,1.0,2.0,0.0,1.0,13.0,31640.0,71.0,1.0,1.0,5022.0,73.0,21500.0,1.0,1.0,0.0,2.0,6921.0,4693.0,78.2,0.0,0.0,104.0,77.0,6.0,6.0,0.0,6.0,,13.0,,0.0,5.0,5.0,5.0,6.0,5.0,5.0,7.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,60.0,1.0,0.0,66379.0,48447.0,21500.0,44879.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90090631,,16000.0,16000.0,16000.0, 60 months,8.99,332.06,B,B1,Systems Engineer,3 years,MORTGAGE,79000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90090631,,credit_card,Credit card refinancing,871xx,NM,6.43,0.0,Dec-2000,700.0,704.0,0.0,34.0,,8.0,0.0,17846.0,41.8,15.0,f,0.0,0.0,17636.4967254949,17636.5,16000.0,1636.5,0.0,0.0,0.0,Jan-2018,12995.65,,Jun-2018,739.0,735.0,0.0,34.0,1.0,Individual,,,,0.0,2454.0,164674.0,0.0,0.0,0.0,0.0,111.0,0.0,,2.0,3.0,9280.0,42.0,42700.0,0.0,1.0,1.0,3.0,20584.0,20429.0,46.2,0.0,0.0,171.0,189.0,9.0,9.0,1.0,12.0,34.0,9.0,34.0,1.0,2.0,3.0,5.0,10.0,2.0,7.0,12.0,3.0,8.0,0.0,0.0,0.0,2.0,86.7,0.0,0.0,0.0,204978.0,17846.0,38000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89874675,,35000.0,35000.0,35000.0, 60 months,10.99,760.82,B,B4,CIO,3 years,RENT,330000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89874675,,car,Car financing,902xx,CA,9.83,1.0,May-2009,725.0,729.0,0.0,19.0,,5.0,0.0,2660.0,14.6,14.0,f,0.0,0.0,42637.5060205692,42637.51,35000.0,7637.51,0.0,0.0,0.0,Mar-2019,21355.92,,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,109701.0,1.0,2.0,1.0,1.0,5.0,92002.0,,0.0,0.0,0.0,45.0,18200.0,0.0,0.0,2.0,1.0,21940.0,15000.0,0.0,0.0,0.0,69.0,88.0,39.0,5.0,0.0,88.0,,2.0,19.0,0.0,0.0,1.0,1.0,5.0,5.0,2.0,8.0,1.0,5.0,0.0,0.0,0.0,1.0,85.7,0.0,0.0,0.0,159679.0,109701.0,15000.0,120544.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90185682,,12600.0,12600.0,12600.0, 60 months,14.49,296.4,C,C4,CFO,3 years,RENT,235000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90185682,,debt_consolidation,Debt consolidation,902xx,CA,18.97,0.0,Sep-2005,695.0,699.0,1.0,,,25.0,0.0,43484.0,53.4,29.0,f,7626.13,7626.13,8585.46,8585.46,4973.87,3611.59,0.0,0.0,0.0,Mar-2019,296.4,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,113496.0,2.0,6.0,3.0,5.0,1.0,69676.0,71.0,1.0,2.0,12697.0,59.0,81500.0,0.0,0.0,1.0,7.0,4540.0,26467.0,62.1,0.0,0.0,120.0,132.0,2.0,1.0,0.0,18.0,,0.0,,0.0,11.0,12.0,14.0,15.0,8.0,17.0,19.0,12.0,25.0,0.0,0.0,0.0,4.0,100.0,64.3,0.0,0.0,191217.0,113496.0,69800.0,98289.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88780082,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,Content Author,8 years,MORTGAGE,218000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88780082,,credit_card,Credit card refinancing,325xx,FL,12.38,0.0,Nov-2005,695.0,699.0,2.0,,,11.0,0.0,14212.0,41.4,19.0,f,21184.5,21184.5,23847.81,23847.81,13815.5,10032.31,0.0,0.0,0.0,Mar-2019,823.31,Apr-2019,Apr-2018,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,438490.0,2.0,2.0,0.0,0.0,30.0,65996.0,63.0,2.0,4.0,4495.0,53.0,34300.0,0.0,1.0,6.0,5.0,39863.0,3727.0,67.0,0.0,0.0,130.0,81.0,3.0,3.0,1.0,18.0,,3.0,,0.0,3.0,6.0,3.0,5.0,5.0,7.0,12.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,66.7,0.0,0.0,500425.0,89174.0,11300.0,100180.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006999,,9000.0,9000.0,9000.0, 36 months,6.99,277.86,A,A2,Owner,10+ years,RENT,67000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006999,,credit_card,Credit card refinancing,329xx,FL,16.39,0.0,Mar-1996,725.0,729.0,0.0,,,9.0,0.0,8119.0,35.5,15.0,w,1900.2,1900.2,8050.95,8050.95,7099.8,951.15,0.0,0.0,0.0,Mar-2019,277.86,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,23295.0,0.0,1.0,0.0,0.0,37.0,15176.0,65.0,1.0,3.0,997.0,50.0,22900.0,0.0,0.0,1.0,3.0,2588.0,2688.0,38.9,0.0,0.0,58.0,202.0,7.0,7.0,0.0,7.0,,7.0,,0.0,3.0,8.0,3.0,4.0,2.0,8.0,12.0,8.0,9.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,46269.0,23295.0,4400.0,23369.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90389289,,15500.0,15500.0,15500.0, 60 months,13.49,356.58,C,C2,Lead Equipment Maintenance Technician,3 years,RENT,83000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90389289,,debt_consolidation,Debt consolidation,953xx,CA,6.17,0.0,Aug-2005,675.0,679.0,1.0,40.0,,5.0,0.0,11912.0,58.1,15.0,f,0.0,0.0,18094.94280364,18094.94,15500.0,2594.94,0.0,0.0,0.0,Feb-2018,12763.81,,Dec-2018,654.0,650.0,0.0,40.0,1.0,Individual,,,,0.0,58.0,14790.0,1.0,1.0,1.0,1.0,11.0,2878.0,51.0,1.0,1.0,6618.0,57.0,20500.0,0.0,0.0,1.0,2.0,2958.0,2088.0,85.1,0.0,0.0,125.0,133.0,5.0,5.0,0.0,5.0,,5.0,,1.0,3.0,3.0,3.0,7.0,5.0,4.0,9.0,3.0,5.0,0.0,0.0,0.0,2.0,86.7,100.0,0.0,0.0,26094.0,14790.0,14000.0,5594.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89989625,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Delivery driver,7 years,MORTGAGE,110000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89989625,,debt_consolidation,Debt consolidation,618xx,IL,10.44,0.0,Feb-1988,775.0,779.0,0.0,,,13.0,0.0,12513.0,32.8,24.0,f,23257.29,23257.29,24903.93,24903.93,16742.71,8161.22,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Sep-2017,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,293617.0,0.0,1.0,0.0,0.0,31.0,13773.0,55.0,0.0,0.0,8010.0,42.0,38200.0,0.0,5.0,1.0,1.0,26692.0,12990.0,38.1,0.0,0.0,164.0,343.0,34.0,23.0,3.0,61.0,,1.0,,0.0,1.0,4.0,4.0,9.0,3.0,11.0,18.0,4.0,13.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,343200.0,26286.0,21000.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90287357,,30000.0,30000.0,30000.0, 60 months,13.49,690.15,C,C2,Maintenance Business Manager,2 years,RENT,120000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90287357,,debt_consolidation,Debt consolidation,275xx,NC,12.0,0.0,Jun-1993,680.0,684.0,0.0,42.0,,8.0,0.0,20391.0,87.5,22.0,f,17979.65,17979.65,19986.8,19986.8,12020.35,7966.45,0.0,0.0,0.0,Mar-2019,690.15,Apr-2019,Mar-2019,744.0,740.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,55633.0,2.0,2.0,2.0,2.0,4.0,35242.0,77.0,1.0,2.0,6432.0,80.0,23300.0,0.0,4.0,1.0,4.0,6954.0,68.0,99.0,0.0,0.0,134.0,279.0,11.0,4.0,2.0,37.0,,11.0,,1.0,1.0,5.0,1.0,2.0,10.0,6.0,10.0,5.0,8.0,0.0,0.0,0.0,3.0,95.5,100.0,0.0,0.0,69173.0,55633.0,6500.0,45873.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90106110,,15000.0,15000.0,15000.0, 60 months,13.49,345.08,C,C2,Adjunct Faculty,3 years,RENT,90000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90106110,,debt_consolidation,Debt consolidation,890xx,NV,21.47,0.0,Oct-1983,695.0,699.0,1.0,25.0,,22.0,0.0,36471.0,56.5,47.0,f,0.0,0.0,2430.94,2430.94,354.89,324.03,0.0,1752.02,315.3636,Dec-2016,345.08,,Nov-2017,574.0,570.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,57746.0,2.0,3.0,0.0,2.0,13.0,20294.0,58.0,2.0,2.0,15133.0,57.0,64500.0,2.0,4.0,3.0,4.0,3397.0,9243.0,78.3,0.0,0.0,87.0,395.0,1.0,1.0,6.0,1.0,,2.0,,1.0,5.0,9.0,8.0,13.0,4.0,18.0,36.0,9.0,22.0,0.0,0.0,0.0,2.0,93.6,57.1,0.0,0.0,128378.0,56765.0,42500.0,35090.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90105564,,27000.0,27000.0,27000.0, 60 months,14.49,635.13,C,C4,Manager,2 years,MORTGAGE,105000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90105564,,debt_consolidation,Debt consolidation,492xx,MI,8.46,0.0,Jan-2004,720.0,724.0,1.0,,80.0,9.0,1.0,6631.0,55.3,18.0,f,16342.15,16342.15,18397.03,18397.03,10657.85,7739.18,0.0,0.0,0.0,Mar-2019,635.13,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,110729.0,1.0,4.0,1.0,3.0,6.0,35188.0,82.0,1.0,1.0,6589.0,76.0,12000.0,0.0,1.0,1.0,4.0,12303.0,4369.0,60.3,0.0,0.0,148.0,149.0,12.0,6.0,5.0,12.0,,6.0,,0.0,2.0,2.0,3.0,4.0,8.0,4.0,5.0,2.0,9.0,0.0,0.0,0.0,2.0,100.0,33.3,1.0,0.0,126604.0,41819.0,11000.0,42904.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90237015,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,"Vice President, MF Agency Underwriter",10+ years,MORTGAGE,163500.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90237015,,credit_card,Credit card refinancing,913xx,CA,19.02,0.0,Nov-1987,695.0,699.0,3.0,40.0,,17.0,0.0,131631.0,82.0,36.0,f,0.0,0.0,45185.9928251626,45185.99,35000.0,10185.99,0.0,0.0,0.0,Dec-2018,24128.05,,Feb-2019,649.0,645.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,564864.0,1.0,4.0,2.0,2.0,12.0,25233.0,49.0,1.0,7.0,8383.0,82.0,160500.0,0.0,0.0,3.0,9.0,35304.0,6222.0,52.0,0.0,0.0,146.0,346.0,4.0,4.0,7.0,4.0,,1.0,40.0,0.0,9.0,11.0,13.0,13.0,9.0,11.0,22.0,10.0,16.0,,0.0,0.0,3.0,86.0,33.3,0.0,0.0,620145.0,54329.0,56000.0,51645.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89613280,,13200.0,13200.0,13200.0, 36 months,15.59,461.41,C,C5,Park Manager,2 years,OWN,55000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89613280,,credit_card,Credit card refinancing,955xx,CA,11.54,0.0,Dec-2002,730.0,734.0,1.0,,,9.0,0.0,11459.0,33.9,13.0,f,0.0,0.0,14317.0500131646,14317.05,13200.0,1117.05,0.0,0.0,0.0,Sep-2017,406.61,,Apr-2018,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,15307.0,1.0,1.0,0.0,0.0,34.0,3848.0,42.0,1.0,5.0,8474.0,36.0,33800.0,0.0,1.0,1.0,5.0,1701.0,22341.0,33.9,0.0,0.0,34.0,165.0,5.0,5.0,0.0,5.0,,5.0,,0.0,3.0,3.0,8.0,9.0,1.0,8.0,12.0,3.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,42974.0,15307.0,33800.0,9174.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89909265,,30000.0,30000.0,30000.0, 60 months,14.49,705.7,C,C4,Creative Director,2 years,RENT,125000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89909265,,debt_consolidation,Debt consolidation,275xx,NC,17.29,0.0,Jun-2004,670.0,674.0,1.0,64.0,101.0,11.0,1.0,24887.0,60.1,16.0,f,18157.95,18157.95,20404.92,20404.92,11842.05,8562.87,0.0,0.0,0.0,Mar-2019,705.7,Apr-2019,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,45558.0,2.0,1.0,1.0,1.0,6.0,20671.0,86.0,1.0,4.0,7655.0,70.0,41400.0,0.0,0.0,1.0,5.0,4142.0,7624.0,65.8,0.0,0.0,147.0,50.0,4.0,4.0,0.0,19.0,,4.0,,0.0,5.0,9.0,5.0,5.0,6.0,10.0,10.0,9.0,11.0,0.0,0.0,0.0,2.0,100.0,40.0,1.0,0.0,65405.0,45558.0,22300.0,24005.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90326231,,25000.0,25000.0,25000.0, 60 months,15.59,602.52,C,C5,Administrative Assistant,4 years,RENT,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90326231,,credit_card,Credit card refinancing,816xx,CO,17.84,0.0,Dec-2004,695.0,699.0,0.0,,,5.0,0.0,22475.0,98.6,9.0,f,15294.23,15294.23,17418.95,17418.95,9705.77,7713.18,0.0,0.0,0.0,Mar-2019,602.52,Apr-2019,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,31177.0,0.0,1.0,0.0,0.0,32.0,8702.0,58.0,0.0,0.0,10894.0,83.0,22800.0,0.0,0.0,0.0,0.0,6235.0,325.0,98.6,0.0,0.0,111.0,141.0,30.0,30.0,0.0,30.0,,,,0.0,4.0,4.0,4.0,7.0,2.0,4.0,7.0,4.0,5.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,37800.0,31177.0,22800.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90081014,,12800.0,12800.0,12800.0, 60 months,9.49,268.77,B,B2,Sr. Tax Law Specialist - EP,6 years,MORTGAGE,101303.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90081014,,home_improvement,Home improvement,750xx,TX,13.03,0.0,Apr-2004,695.0,699.0,0.0,73.0,,11.0,0.0,28544.0,54.1,17.0,f,0.0,0.0,1910.29,1910.29,1201.0,709.29,0.0,0.0,0.0,May-2017,268.77,,Mar-2019,544.0,540.0,0.0,73.0,1.0,Individual,,,,0.0,76.0,187529.0,1.0,1.0,1.0,2.0,2.0,28000.0,100.0,1.0,2.0,8914.0,70.0,52800.0,0.0,1.0,0.0,4.0,17048.0,16074.0,54.8,0.0,0.0,140.0,68.0,9.0,2.0,4.0,9.0,,,,1.0,5.0,7.0,6.0,7.0,3.0,9.0,10.0,7.0,11.0,0.0,0.0,0.0,2.0,94.1,16.7,0.0,0.0,232740.0,56544.0,35600.0,28000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90206083,,24000.0,24000.0,24000.0, 60 months,15.59,578.42,C,C5,Financial Advisor,10+ years,RENT,115000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90206083,,debt_consolidation,Debt consolidation,787xx,TX,13.45,0.0,Jul-1978,680.0,684.0,1.0,73.0,,9.0,0.0,32025.0,74.8,28.0,f,14682.44,14682.44,16794.96,16794.96,9317.56,7477.4,0.0,0.0,0.0,Mar-2019,578.42,Apr-2019,Mar-2019,694.0,690.0,0.0,73.0,1.0,Individual,,,,0.0,0.0,76866.0,1.0,1.0,1.0,2.0,4.0,44841.0,,2.0,2.0,9776.0,75.0,42800.0,2.0,3.0,3.0,4.0,9608.0,8016.0,79.2,0.0,0.0,112.0,161.0,10.0,4.0,2.0,10.0,,4.0,,1.0,6.0,7.0,6.0,13.0,9.0,7.0,16.0,7.0,9.0,0.0,0.0,0.0,3.0,96.4,83.3,0.0,0.0,89293.0,76866.0,38600.0,46493.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90215114,,16000.0,16000.0,16000.0, 60 months,10.99,347.8,B,B4,Director of Loan Orgination,6 years,RENT,135000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90215114,,debt_consolidation,Debt consolidation,125xx,NY,13.8,0.0,Nov-2002,700.0,704.0,0.0,,91.0,12.0,1.0,21558.0,77.3,15.0,f,9350.0,9350.0,10090.01,10090.01,6650.0,3440.01,0.0,0.0,0.0,Mar-2019,347.8,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,73663.0,0.0,7.0,0.0,0.0,29.0,52105.0,66.0,0.0,2.0,6756.0,69.0,27900.0,0.0,0.0,0.0,2.0,6139.0,4501.0,81.9,0.0,0.0,166.0,55.0,14.0,14.0,0.0,18.0,,18.0,,0.0,4.0,5.0,4.0,6.0,8.0,5.0,7.0,5.0,12.0,0.0,0.0,0.0,0.0,100.0,100.0,1.0,0.0,106983.0,73663.0,24900.0,79083.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89917156,,30000.0,30000.0,30000.0, 60 months,13.99,697.9,C,C3,Programmer/IT,6 years,MORTGAGE,63500.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89917156,,debt_consolidation,Debt consolidation,571xx,SD,18.45,1.0,Feb-1998,690.0,694.0,0.0,5.0,,8.0,0.0,4595.0,52.8,22.0,f,0.0,0.0,32625.4474476263,32625.45,30000.0,2625.45,0.0,0.0,0.0,May-2017,28344.79,,Jun-2017,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,177135.0,2.0,4.0,1.0,3.0,4.0,25260.0,70.0,1.0,1.0,4086.0,66.0,8700.0,1.0,1.0,0.0,6.0,22142.0,3230.0,57.5,0.0,0.0,223.0,145.0,2.0,2.0,2.0,2.0,5.0,17.0,5.0,0.0,2.0,3.0,2.0,4.0,15.0,3.0,5.0,3.0,8.0,0.0,0.0,0.0,2.0,95.5,0.0,0.0,0.0,195907.0,29855.0,7600.0,36322.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90304259,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Sr. Director,10+ years,MORTGAGE,180000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90304259,,debt_consolidation,Debt consolidation,327xx,FL,13.09,2.0,Mar-1995,690.0,694.0,3.0,13.0,,17.0,0.0,223516.0,91.0,31.0,f,0.0,0.0,36934.340877765404,36934.34,35000.0,1934.34,0.0,0.0,0.0,Feb-2017,34373.44,,Feb-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,1074786.0,1.0,1.0,0.0,0.0,33.0,11275.0,50.0,1.0,2.0,11999.0,75.0,261500.0,1.0,1.0,3.0,2.0,71652.0,2301.0,93.5,0.0,0.0,156.0,258.0,3.0,3.0,4.0,3.0,48.0,1.0,48.0,0.0,7.0,9.0,7.0,15.0,3.0,12.0,24.0,9.0,17.0,0.0,0.0,0.0,1.0,90.3,71.4,0.0,0.0,1259960.0,234791.0,35500.0,22486.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90104160,,40000.0,40000.0,40000.0, 60 months,14.49,940.93,C,C4,Program Manager,8 years,MORTGAGE,140000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90104160,,credit_card,Credit card refinancing,207xx,MD,26.98,0.0,Apr-1998,725.0,729.0,1.0,43.0,,27.0,0.0,32745.0,43.7,49.0,f,24210.7,24210.7,27361.94,27361.94,15789.3,11572.64,0.0,0.0,0.0,Mar-2019,940.93,Apr-2019,Mar-2019,774.0,770.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,567522.0,3.0,13.0,2.0,4.0,4.0,158006.0,78.0,2.0,4.0,20063.0,66.0,74900.0,0.0,7.0,1.0,8.0,21828.0,23503.0,56.5,0.0,0.0,135.0,221.0,5.0,4.0,4.0,5.0,,6.0,,0.0,6.0,8.0,6.0,8.0,26.0,12.0,19.0,8.0,27.0,0.0,0.0,0.0,4.0,97.9,16.7,0.0,0.0,683099.0,190751.0,54000.0,169654.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +84093931,,10000.0,10000.0,10000.0, 60 months,10.99,217.38,B,B4,Valuation Director,3 years,OWN,142000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=84093931,,credit_card,Credit card refinancing,052xx,VT,12.49,0.0,May-2001,695.0,699.0,1.0,,,9.0,0.0,44868.0,56.8,33.0,f,5843.19,5843.19,6297.91,6297.91,4156.81,2141.1,0.0,0.0,0.0,Mar-2019,217.38,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,308431.0,1.0,2.0,1.0,1.0,8.0,8145.0,39.0,3.0,4.0,19226.0,53.0,78953.0,1.0,0.0,5.0,6.0,34270.0,34085.0,56.8,0.0,0.0,72.0,184.0,2.0,2.0,5.0,2.0,,3.0,,0.0,4.0,4.0,6.0,19.0,4.0,6.0,22.0,4.0,9.0,0.0,0.0,0.0,5.0,100.0,50.0,0.0,0.0,358246.0,53013.0,78953.0,20793.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89909317,,16000.0,16000.0,16000.0, 60 months,10.49,343.83,B,B3,Site Acquistion Specialist,1 year,MORTGAGE,75000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89909317,,credit_card,Credit card refinancing,801xx,CO,18.62,2.0,Jan-1998,680.0,684.0,2.0,18.0,,26.0,0.0,21908.0,43.7,60.0,f,0.0,0.0,4804.3,4804.3,3023.55,1780.75,0.0,0.0,0.0,Dec-2017,343.83,,Mar-2018,504.0,500.0,0.0,18.0,1.0,Individual,,,,0.0,0.0,483976.0,6.0,2.0,2.0,3.0,4.0,128719.0,57.0,8.0,11.0,4511.0,48.0,50100.0,1.0,5.0,6.0,15.0,21042.0,18157.0,48.4,0.0,0.0,154.0,224.0,2.0,2.0,3.0,2.0,,2.0,20.0,1.0,10.0,13.0,13.0,16.0,20.0,23.0,37.0,13.0,26.0,0.0,0.0,1.0,11.0,96.7,18.2,0.0,0.0,524072.0,150627.0,35200.0,140131.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90155323,,16000.0,16000.0,16000.0, 60 months,14.49,376.37,C,C4,Formen,10+ years,MORTGAGE,70000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90155323,,home_improvement,Home improvement,145xx,NY,15.4,1.0,Feb-2004,690.0,694.0,0.0,23.0,,11.0,0.0,2334.0,13.4,19.0,f,0.0,0.0,5165.61,5165.61,2138.82,1988.37,0.0,1038.42,186.9156,Sep-2017,376.37,,Jul-2018,549.0,545.0,0.0,23.0,1.0,Individual,,,,0.0,464.0,141796.0,3.0,2.0,1.0,4.0,12.0,44413.0,81.0,5.0,8.0,2253.0,34.0,17400.0,0.0,2.0,2.0,13.0,12891.0,6538.0,25.7,0.0,0.0,57.0,151.0,0.0,0.0,2.0,10.0,31.0,5.0,31.0,2.0,2.0,3.0,5.0,7.0,5.0,8.0,11.0,3.0,11.0,0.0,0.0,1.0,7.0,78.9,20.0,0.0,0.0,163729.0,46747.0,8800.0,51142.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90165728,,12000.0,12000.0,12000.0, 60 months,13.49,276.06,C,C2,retail associate,10+ years,MORTGAGE,85000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90165728,,debt_consolidation,Debt consolidation,109xx,NY,8.91,0.0,Apr-2001,660.0,664.0,0.0,,77.0,12.0,1.0,10109.0,46.6,24.0,f,0.0,0.0,13290.0580982955,13290.06,12000.0,1290.06,0.0,0.0,0.0,Aug-2017,10814.51,,Aug-2017,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,158493.0,1.0,1.0,1.0,2.0,5.0,22752.0,95.0,1.0,2.0,5976.0,72.0,21700.0,1.0,2.0,2.0,5.0,14408.0,8091.0,55.5,0.0,0.0,127.0,185.0,9.0,5.0,2.0,17.0,,9.0,,0.0,4.0,4.0,7.0,16.0,3.0,10.0,19.0,4.0,11.0,0.0,0.0,0.0,3.0,100.0,42.9,1.0,0.0,172985.0,32861.0,18200.0,23904.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88968758,,35000.0,35000.0,35000.0, 60 months,10.49,752.12,B,B3,QA Manager,2 years,MORTGAGE,130000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88968758,,debt_consolidation,Debt consolidation,982xx,WA,18.92,0.0,Nov-2000,700.0,704.0,1.0,29.0,,17.0,0.0,68222.0,70.7,40.0,f,20345.86,20345.86,21913.46,21913.46,14654.14,7259.32,0.0,0.0,0.0,Mar-2019,752.12,Apr-2019,Mar-2019,679.0,675.0,0.0,29.0,1.0,Individual,,,,0.0,0.0,490323.0,0.0,2.0,0.0,1.0,17.0,125521.0,,1.0,3.0,7166.0,71.0,118900.0,0.0,7.0,2.0,4.0,32688.0,6314.0,67.8,0.0,0.0,122.0,190.0,12.0,12.0,3.0,13.0,45.0,3.0,29.0,2.0,5.0,10.0,6.0,11.0,14.0,14.0,23.0,10.0,17.0,0.0,0.0,0.0,1.0,92.3,50.0,0.0,0.0,574107.0,193743.0,19600.0,132207.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90285347,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Plumber,8 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90285347,,credit_card,Credit card refinancing,078xx,NJ,27.66,0.0,Dec-2004,670.0,674.0,0.0,50.0,60.0,14.0,1.0,24608.0,69.1,22.0,f,11986.44,11986.44,13327.91,13327.91,8013.56,5314.35,0.0,0.0,0.0,Mar-2019,460.1,Apr-2019,Mar-2019,749.0,745.0,0.0,50.0,1.0,Individual,,,,0.0,581.0,26942.0,0.0,2.0,0.0,0.0,29.0,2334.0,10.0,0.0,0.0,6960.0,46.0,35600.0,0.0,0.0,0.0,0.0,1924.0,3432.0,84.0,0.0,0.0,130.0,141.0,37.0,29.0,0.0,57.0,,,,1.0,8.0,11.0,8.0,11.0,6.0,12.0,15.0,11.0,14.0,0.0,0.0,0.0,0.0,95.5,75.0,0.0,0.0,58583.0,26942.0,21500.0,22983.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89837157,,35000.0,35000.0,35000.0, 60 months,13.49,805.17,C,C2,Sr. Software Engineer,1 year,OWN,170000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89837157,,credit_card,Credit card refinancing,945xx,CA,12.04,0.0,Sep-2004,705.0,709.0,1.0,,,15.0,0.0,27772.0,57.9,28.0,f,20977.47,20977.47,23463.98,23463.98,14022.53,9441.45,0.0,0.0,0.0,Mar-2019,805.17,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,407086.0,1.0,3.0,0.0,1.0,18.0,78364.0,95.0,1.0,3.0,13254.0,77.0,48000.0,2.0,0.0,3.0,6.0,27139.0,11433.0,66.3,0.0,0.0,144.0,103.0,12.0,4.0,2.0,12.0,,0.0,,0.0,4.0,5.0,6.0,8.0,12.0,10.0,13.0,5.0,15.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,450882.0,108741.0,33900.0,90277.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90096660,,12500.0,12500.0,12500.0, 60 months,13.49,287.56,C,C2,Driver,10+ years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90096660,,debt_consolidation,Debt consolidation,871xx,NM,15.04,1.0,Nov-2000,680.0,684.0,1.0,22.0,,11.0,0.0,15085.0,61.1,38.0,f,7491.61,7491.61,8329.87,8329.87,5008.39,3321.48,0.0,0.0,0.0,Mar-2019,287.56,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,31644.0,1.0,2.0,1.0,1.0,8.0,16559.0,78.0,2.0,2.0,3592.0,69.0,24700.0,2.0,4.0,6.0,3.0,2877.0,3671.0,70.6,0.0,0.0,151.0,190.0,5.0,5.0,0.0,5.0,71.0,5.0,22.0,0.0,5.0,8.0,5.0,11.0,15.0,9.0,23.0,8.0,11.0,0.0,0.0,0.0,3.0,84.2,60.0,0.0,0.0,45976.0,31644.0,12500.0,21276.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89052159,,36750.0,36750.0,36750.0, 60 months,10.99,798.86,B,B4,Supervisor ,10+ years,MORTGAGE,51000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89052159,,debt_consolidation,Debt consolidation,109xx,NY,15.76,1.0,Jun-1997,695.0,699.0,0.0,2.0,,21.0,0.0,31404.0,26.7,40.0,f,0.0,0.0,43380.5309453075,43380.53,36750.0,6630.53,0.0,0.0,0.0,Nov-2018,230.33,,Nov-2018,804.0,800.0,0.0,,1.0,Joint App,105000.0,11.66,Not Verified,0.0,0.0,205151.0,2.0,1.0,0.0,0.0,33.0,5030.0,77.0,2.0,3.0,8237.0,29.0,117500.0,1.0,4.0,1.0,3.0,9769.0,79096.0,28.4,0.0,0.0,154.0,231.0,4.0,4.0,3.0,4.0,,11.0,,0.0,10.0,10.0,16.0,23.0,6.0,19.0,31.0,10.0,21.0,0.0,0.0,0.0,2.0,97.5,12.5,0.0,0.0,307169.0,36434.0,110500.0,6516.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90080699,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,Senior Tax Professional I,10+ years,MORTGAGE,80250.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90080699,,credit_card,Credit card refinancing,282xx,NC,22.15,0.0,Aug-2000,710.0,714.0,0.0,,,16.0,0.0,34718.0,58.5,39.0,f,0.0,0.0,27833.9251422971,27833.93,25000.0,2833.93,0.0,0.0,0.0,Feb-2018,20026.37,,Oct-2018,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,230458.0,0.0,3.0,0.0,1.0,18.0,34304.0,54.0,0.0,2.0,18323.0,56.0,59300.0,1.0,0.0,3.0,3.0,14404.0,7344.0,81.9,0.0,0.0,144.0,193.0,14.0,14.0,5.0,14.0,,1.0,,0.0,5.0,7.0,6.0,13.0,9.0,12.0,25.0,7.0,16.0,0.0,0.0,0.0,0.0,97.4,50.0,0.0,0.0,280442.0,69022.0,40500.0,63362.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90060187,,19000.0,19000.0,19000.0, 60 months,14.49,446.94,C,C4,Investigator II,10+ years,MORTGAGE,52000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90060187,,credit_card,Credit card refinancing,681xx,NE,23.93,1.0,May-2001,670.0,674.0,0.0,6.0,,13.0,0.0,8340.0,40.5,26.0,f,11500.15,11500.15,13019.78,13019.78,7499.85,5519.93,0.0,0.0,0.0,Mar-2019,446.94,Apr-2019,Mar-2019,709.0,705.0,0.0,6.0,1.0,Individual,,,,0.0,0.0,76576.0,1.0,1.0,1.0,1.0,6.0,7760.0,94.0,0.0,1.0,2957.0,56.0,20601.0,0.0,9.0,0.0,2.0,6961.0,43.0,98.6,0.0,0.0,184.0,122.0,15.0,6.0,1.0,15.0,,16.0,,1.0,1.0,7.0,1.0,3.0,9.0,11.0,15.0,7.0,13.0,0.0,0.0,1.0,1.0,96.0,100.0,0.0,0.0,108353.0,16100.0,3000.0,8252.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90114941,,18850.0,18850.0,18850.0, 60 months,15.59,454.3,C,C5,Maintenance Mechanic,4 years,RENT,53300.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90114941,,other,Other,225xx,VA,22.61,2.0,Aug-2005,710.0,714.0,0.0,16.0,86.0,9.0,1.0,3219.0,15.9,32.0,f,11531.85,11531.85,13133.88,13133.88,7318.15,5815.73,0.0,0.0,0.0,Mar-2019,454.3,Apr-2019,Mar-2019,679.0,675.0,0.0,17.0,1.0,Individual,,,,0.0,0.0,93243.0,1.0,3.0,1.0,2.0,8.0,90024.0,86.0,1.0,1.0,2474.0,39.0,20200.0,2.0,3.0,4.0,3.0,10360.0,8781.0,26.8,0.0,0.0,133.0,67.0,6.0,6.0,0.0,6.0,,7.0,16.0,1.0,4.0,4.0,4.0,5.0,22.0,6.0,9.0,4.0,9.0,0.0,0.0,1.0,2.0,89.3,0.0,0.0,1.0,134167.0,93243.0,12000.0,113967.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90236496,,25000.0,25000.0,25000.0, 60 months,14.49,588.08,C,C4,Driver,10+ years,MORTGAGE,82500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90236496,,debt_consolidation,Debt consolidation,727xx,AR,13.32,0.0,Oct-2001,695.0,699.0,0.0,,,12.0,0.0,14662.0,37.4,25.0,f,0.0,0.0,26486.601899787598,26486.6,25000.0,1486.6,0.0,0.0,0.0,Jul-2017,4802.08,,Dec-2018,729.0,725.0,0.0,,1.0,Joint App,106500.0,13.79,Not Verified,0.0,0.0,139941.0,0.0,2.0,1.0,2.0,9.0,18008.0,81.0,3.0,3.0,5110.0,53.0,39200.0,0.0,1.0,2.0,5.0,11662.0,8951.0,56.5,0.0,0.0,107.0,111.0,7.0,7.0,4.0,11.0,,9.0,,0.0,6.0,8.0,6.0,7.0,9.0,9.0,12.0,8.0,12.0,0.0,0.0,0.0,4.0,100.0,16.7,0.0,0.0,178991.0,32670.0,20600.0,22191.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90244987,,10000.0,10000.0,10000.0, 60 months,13.99,232.64,C,C3,Bus operator,10+ years,RENT,58000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90244987,,credit_card,Credit card refinancing,028xx,RI,13.18,1.0,Aug-2006,695.0,699.0,1.0,23.0,,20.0,0.0,36672.0,46.8,39.0,f,0.0,0.0,11424.8328135436,11424.83,10000.0,1424.83,0.0,0.0,0.0,Nov-2017,8613.72,,Aug-2018,669.0,665.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,214986.0,2.0,1.0,1.0,3.0,1.0,9856.0,94.0,4.0,4.0,2498.0,52.0,78400.0,2.0,5.0,3.0,8.0,10749.0,14760.0,27.3,0.0,0.0,99.0,121.0,2.0,1.0,4.0,10.0,,1.0,,1.0,3.0,10.0,5.0,8.0,7.0,18.0,27.0,10.0,20.0,0.0,0.0,1.0,5.0,97.4,0.0,0.0,0.0,261836.0,46528.0,20300.0,10436.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89924710,,15550.0,15550.0,15550.0, 60 months,12.79,352.15,C,C1,Asst. produce manager,10+ years,RENT,54000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89924710,,other,Other,060xx,CT,10.67,0.0,Jul-1999,720.0,724.0,1.0,,100.0,11.0,1.0,7376.0,26.1,18.0,f,0.0,0.0,17806.4361359013,17806.44,15550.0,2256.44,0.0,0.0,0.0,Jan-2018,12887.39,,Nov-2018,789.0,785.0,0.0,,1.0,Individual,,,,0.0,225.0,15443.0,0.0,1.0,0.0,1.0,23.0,8067.0,61.0,1.0,2.0,2991.0,37.0,28300.0,1.0,0.0,2.0,3.0,1544.0,15145.0,31.5,0.0,0.0,90.0,206.0,10.0,10.0,0.0,18.0,,4.0,,0.0,4.0,6.0,6.0,7.0,3.0,10.0,15.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,20.0,1.0,0.0,41474.0,15443.0,22100.0,13174.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89838140,,13000.0,13000.0,13000.0, 60 months,15.59,313.31,C,C5,Sales,2 years,MORTGAGE,150000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89838140,,medical,Medical expenses,925xx,CA,29.14,0.0,Dec-1998,695.0,699.0,0.0,,,26.0,0.0,86634.0,47.0,53.0,f,0.0,0.0,15658.551363671999,15658.55,13000.0,2658.55,0.0,0.0,0.0,Mar-2018,10656.85,,Feb-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,432656.0,3.0,7.0,2.0,6.0,1.0,76599.0,63.0,3.0,7.0,17766.0,56.0,139200.0,1.0,0.0,0.0,13.0,16641.0,42017.0,52.5,0.0,0.0,162.0,213.0,1.0,1.0,2.0,1.0,,16.0,,0.0,7.0,9.0,13.0,15.0,23.0,18.0,28.0,9.0,26.0,0.0,0.0,0.0,5.0,100.0,23.1,0.0,0.0,553939.0,163233.0,88400.0,121971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082038,,12000.0,12000.0,12000.0, 60 months,12.79,271.75,C,C1,Community Relations/Exec Assistant,1 year,OWN,60000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082038,,debt_consolidation,Debt consolidation,734xx,OK,24.38,3.0,Aug-2003,665.0,669.0,1.0,1.0,,10.0,0.0,7986.0,15.4,27.0,f,7144.97,7144.97,7866.94,7866.94,4855.03,3011.91,0.0,0.0,0.0,Mar-2019,271.75,Apr-2019,Mar-2019,704.0,700.0,0.0,1.0,1.0,Individual,,,,1.0,0.0,166436.0,1.0,3.0,1.0,2.0,12.0,46880.0,38.0,2.0,3.0,3134.0,24.0,52000.0,0.0,2.0,2.0,5.0,18493.0,29014.0,21.6,0.0,297.0,157.0,145.0,6.0,6.0,3.0,6.0,18.0,6.0,5.0,0.0,3.0,3.0,4.0,7.0,12.0,6.0,12.0,3.0,8.0,0.0,0.0,1.0,3.0,85.2,0.0,0.0,0.0,247185.0,54866.0,37000.0,68865.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024107,,14000.0,14000.0,14000.0, 60 months,13.99,325.69,C,C3,Engineer Tech 4 ,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024107,,debt_consolidation,Debt consolidation,338xx,FL,25.6,1.0,Feb-1989,685.0,689.0,1.0,18.0,,11.0,0.0,90281.0,72.1,28.0,f,8432.14,8432.14,9456.71,9456.71,5567.86,3888.85,0.0,0.0,0.0,Mar-2019,325.69,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,251807.0,1.0,2.0,1.0,1.0,2.0,20257.0,75.0,0.0,2.0,2959.0,73.0,106300.0,2.0,5.0,3.0,3.0,22892.0,163.0,97.3,0.0,0.0,104.0,331.0,21.0,2.0,3.0,21.0,,2.0,18.0,0.0,2.0,7.0,2.0,6.0,3.0,8.0,22.0,7.0,11.0,0.0,0.0,0.0,1.0,96.4,100.0,0.0,0.0,283544.0,110538.0,6000.0,27044.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90224507,,32000.0,32000.0,32000.0, 60 months,12.79,724.67,C,C1,Nurse Anesthetist CRNA,10+ years,MORTGAGE,201000.0,Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90224507,,credit_card,Credit card refinancing,544xx,WI,31.22,0.0,May-2001,680.0,684.0,1.0,,,24.0,0.0,75404.0,86.8,43.0,f,19560.85,19560.85,20233.92,20233.92,12439.15,7794.77,0.0,0.0,0.0,Feb-2019,724.67,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,489559.0,0.0,10.0,2.0,4.0,7.0,196903.0,76.0,0.0,0.0,19624.0,79.0,86900.0,1.0,5.0,8.0,4.0,21285.0,9496.0,88.8,0.0,0.0,184.0,169.0,37.0,7.0,3.0,37.0,,3.0,,0.0,10.0,10.0,10.0,10.0,27.0,12.0,13.0,10.0,24.0,0.0,0.0,0.0,2.0,100.0,80.0,0.0,0.0,600073.0,272307.0,84900.0,260373.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90245138,,36000.0,36000.0,36000.0, 60 months,13.99,837.48,C,C3,Sales Manager,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90245138,,debt_consolidation,Debt consolidation,782xx,TX,14.59,1.0,Dec-2002,680.0,684.0,0.0,23.0,,8.0,0.0,13688.0,83.5,15.0,f,21682.74,21682.74,24258.94,24258.94,14317.26,9941.68,0.0,0.0,0.0,Mar-2019,837.48,Apr-2019,Mar-2019,689.0,685.0,0.0,24.0,1.0,Joint App,155000.0,13.22,Not Verified,0.0,0.0,277050.0,0.0,2.0,0.0,1.0,14.0,63459.0,62.0,0.0,0.0,5950.0,70.0,16400.0,1.0,0.0,1.0,1.0,34631.0,2612.0,84.0,0.0,0.0,125.0,165.0,40.0,14.0,2.0,40.0,,4.0,,2.0,4.0,4.0,4.0,4.0,7.0,5.0,6.0,4.0,8.0,0.0,0.0,0.0,0.0,73.3,75.0,0.0,0.0,309763.0,77147.0,16300.0,78713.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88948489,,25000.0,25000.0,25000.0, 60 months,15.59,602.52,C,C5,Lieutenant,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88948489,,debt_consolidation,Debt consolidation,133xx,NY,31.49,0.0,Jun-1999,700.0,704.0,1.0,35.0,,21.0,0.0,42105.0,67.3,31.0,f,15294.23,15294.23,17418.95,17418.95,9705.77,7713.18,0.0,0.0,0.0,Mar-2019,602.52,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,160816.0,2.0,1.0,0.0,0.0,28.0,4905.0,28.0,2.0,3.0,5457.0,59.0,62600.0,0.0,0.0,3.0,3.0,7658.0,9094.0,70.7,0.0,0.0,106.0,207.0,2.0,2.0,3.0,2.0,35.0,2.0,35.0,0.0,12.0,18.0,13.0,15.0,4.0,19.0,24.0,18.0,21.0,0.0,0.0,0.0,2.0,90.3,46.2,0.0,0.0,220382.0,47010.0,31000.0,17657.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90058120,,20000.0,20000.0,20000.0, 60 months,10.99,434.75,B,B4,RN,6 years,MORTGAGE,67000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90058120,,credit_card,Credit card refinancing,450xx,OH,17.87,1.0,Jun-1996,700.0,704.0,1.0,17.0,,7.0,0.0,17602.0,43.1,26.0,f,0.0,0.0,21845.826905184,21845.83,20000.0,1845.83,0.0,0.0,0.0,Aug-2017,17945.29,,Dec-2018,774.0,770.0,0.0,17.0,1.0,Individual,,,,0.0,0.0,193409.0,0.0,3.0,0.0,0.0,29.0,45496.0,68.0,0.0,0.0,17602.0,59.0,40800.0,0.0,2.0,1.0,0.0,27630.0,23198.0,43.1,0.0,0.0,193.0,243.0,72.0,26.0,3.0,125.0,,0.0,17.0,1.0,1.0,1.0,3.0,7.0,14.0,3.0,9.0,1.0,7.0,0.0,0.0,1.0,0.0,96.0,0.0,0.0,0.0,243043.0,63098.0,40800.0,66743.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90053125,,27950.0,27950.0,27925.0, 60 months,13.99,650.21,C,C3,sales manager,10+ years,RENT,71000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90053125,,debt_consolidation,Debt consolidation,633xx,MO,15.7,0.0,Jun-2004,690.0,694.0,0.0,,,7.0,0.0,30396.0,71.0,27.0,f,0.0,0.0,33933.7100777968,33903.36,27950.0,5983.71,0.0,0.0,0.0,Jun-2018,21494.46,,Jul-2018,739.0,735.0,0.0,,1.0,Individual,,,,0.0,812.0,357719.0,0.0,1.0,0.0,0.0,29.0,10327.0,66.0,0.0,0.0,13411.0,70.0,42800.0,0.0,3.0,0.0,0.0,51103.0,10512.0,74.0,0.0,0.0,144.0,147.0,43.0,29.0,6.0,43.0,,,,0.0,3.0,4.0,3.0,7.0,8.0,4.0,13.0,4.0,7.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,402391.0,40723.0,40500.0,15582.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90080158,,20000.0,20000.0,20000.0, 60 months,10.99,434.75,B,B4,Senior Scienrist,10+ years,MORTGAGE,150000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90080158,,debt_consolidation,Debt consolidation,077xx,NJ,9.46,3.0,Oct-1998,680.0,684.0,0.0,8.0,,6.0,0.0,7456.0,46.3,21.0,f,11686.71,11686.71,12595.54,12595.54,8313.29,4282.25,0.0,0.0,0.0,Mar-2019,434.75,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,204387.0,0.0,1.0,0.0,0.0,38.0,16370.0,50.0,0.0,2.0,4583.0,49.0,16100.0,0.0,0.0,1.0,3.0,40877.0,5517.0,45.4,0.0,0.0,150.0,215.0,15.0,10.0,3.0,15.0,21.0,11.0,15.0,0.0,1.0,2.0,3.0,10.0,3.0,4.0,15.0,2.0,6.0,0.0,0.0,0.0,1.0,85.7,50.0,0.0,0.0,231552.0,23826.0,10100.0,32760.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818980,,12800.0,12800.0,12800.0, 60 months,15.59,308.49,C,C5,Dispatcher,5 years,RENT,40000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818980,,debt_consolidation,Debt consolidation,850xx,AZ,22.71,1.0,Jul-2004,695.0,699.0,1.0,12.0,,9.0,0.0,4803.0,31.6,20.0,f,7623.91,7623.91,9166.0,9166.0,5176.09,3989.91,0.0,0.0,0.0,Mar-2019,308.49,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,21731.0,0.0,3.0,0.0,2.0,19.0,16928.0,59.0,1.0,2.0,2754.0,49.0,15200.0,0.0,1.0,2.0,4.0,2415.0,1697.0,73.9,0.0,0.0,141.0,146.0,10.0,10.0,0.0,10.0,,0.0,,0.0,3.0,3.0,3.0,6.0,10.0,6.0,10.0,3.0,9.0,0.0,0.0,0.0,1.0,95.0,66.7,0.0,0.0,43980.0,21731.0,6500.0,28780.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90091610,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Global Sales Executive,7 years,MORTGAGE,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90091610,,debt_consolidation,Debt consolidation,980xx,WA,13.73,0.0,Nov-1999,665.0,669.0,0.0,,,11.0,0.0,41528.0,64.5,34.0,f,0.0,0.0,37815.298564404904,37815.3,35000.0,2815.3,0.0,0.0,0.0,Apr-2017,33673.43,,Jul-2018,789.0,785.0,0.0,,1.0,Joint App,154000.0,9.36,Not Verified,0.0,0.0,377059.0,0.0,0.0,0.0,0.0,37.0,0.0,,0.0,1.0,12496.0,65.0,64400.0,1.0,2.0,0.0,2.0,47132.0,22872.0,64.5,0.0,0.0,132.0,202.0,20.0,11.0,4.0,20.0,,13.0,,0.0,7.0,7.0,10.0,22.0,6.0,10.0,24.0,7.0,11.0,0.0,0.0,0.0,1.0,100.0,42.9,0.0,0.0,404400.0,41528.0,64400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89078465,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,Industrial Electrician ,10+ years,MORTGAGE,115000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89078465,,debt_consolidation,Debt consolidation,855xx,AZ,27.61,0.0,Nov-1986,735.0,739.0,0.0,45.0,,15.0,0.0,11322.0,29.6,39.0,f,14305.22,14305.22,15033.87,15033.87,10694.78,4339.09,0.0,0.0,0.0,Mar-2019,518.84,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,81044.0,0.0,6.0,0.0,3.0,14.0,69722.0,59.0,1.0,4.0,10030.0,50.0,38200.0,0.0,0.0,1.0,7.0,5789.0,17225.0,38.5,0.0,0.0,247.0,217.0,9.0,9.0,0.0,16.0,,12.0,,0.0,3.0,5.0,4.0,10.0,17.0,9.0,21.0,5.0,15.0,0.0,0.0,0.0,1.0,97.4,25.0,0.0,0.0,167635.0,81044.0,28000.0,129435.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89885324,,11200.0,11200.0,11200.0, 60 months,9.49,235.17,B,B2,Laboratory Technician,10+ years,RENT,46109.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89885324,,debt_consolidation,Debt consolidation,902xx,CA,29.0,1.0,Sep-2000,680.0,684.0,0.0,11.0,59.0,11.0,1.0,14919.0,50.0,17.0,f,6442.71,6442.71,6814.03,6814.03,4757.29,2056.74,0.0,0.0,0.0,Mar-2019,235.17,Apr-2019,Mar-2019,684.0,680.0,0.0,59.0,1.0,Individual,,,,0.0,0.0,22036.0,1.0,2.0,0.0,0.0,32.0,7117.0,28.0,2.0,3.0,7401.0,50.0,29800.0,0.0,0.0,0.0,3.0,2003.0,3311.0,50.0,0.0,0.0,151.0,192.0,4.0,4.0,0.0,4.0,,,,0.0,9.0,9.0,10.0,11.0,5.0,9.0,12.0,9.0,11.0,,0.0,0.0,2.0,88.0,0.0,1.0,0.0,55211.0,22036.0,29800.0,25411.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90324722,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,VP ITSM Change Management,8 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90324722,,debt_consolidation,Debt consolidation,600xx,IL,15.76,1.0,Jul-1998,685.0,689.0,1.0,5.0,52.0,17.0,1.0,14565.0,33.2,49.0,f,0.0,0.0,23461.4104021692,23461.41,20000.0,3461.41,0.0,0.0,0.0,Dec-2017,17238.46,,Mar-2019,699.0,695.0,1.0,5.0,1.0,Individual,,,,0.0,0.0,47296.0,2.0,2.0,3.0,5.0,5.0,32731.0,83.0,2.0,3.0,5769.0,57.0,47700.0,1.0,1.0,3.0,8.0,2956.0,29518.0,35.1,1.0,0.0,153.0,218.0,4.0,4.0,2.0,4.0,,4.0,,1.0,7.0,10.0,9.0,20.0,15.0,13.0,29.0,10.0,17.0,0.0,0.0,1.0,5.0,97.4,11.1,1.0,0.0,87428.0,47296.0,43400.0,39550.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90052921,,20000.0,20000.0,20000.0, 60 months,10.49,429.78,B,B3,Policy Analyst,3 years,MORTGAGE,110000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90052921,,credit_card,Credit card refinancing,220xx,VA,20.82,2.0,Jul-1993,720.0,724.0,0.0,1.0,,26.0,0.0,21209.0,27.1,45.0,f,11626.28,11626.28,12509.7,12509.7,8373.72,4135.98,0.0,0.0,0.0,Mar-2019,429.78,Apr-2019,Nov-2018,709.0,705.0,0.0,,1.0,Individual,,,,1.0,0.0,364732.0,2.0,7.0,1.0,1.0,5.0,149020.0,40.0,4.0,7.0,11692.0,33.0,78200.0,0.0,2.0,0.0,8.0,15197.0,42950.0,32.0,0.0,45.0,226.0,278.0,3.0,3.0,3.0,7.0,1.0,21.0,1.0,0.0,8.0,12.0,8.0,18.0,14.0,18.0,28.0,12.0,25.0,0.0,1.0,0.0,5.0,93.2,0.0,0.0,0.0,457104.0,170229.0,63200.0,170504.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90285684,,29925.0,29925.0,29925.0, 60 months,12.79,677.68,C,C1,,,MORTGAGE,59865.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90285684,,debt_consolidation,Debt consolidation,900xx,CA,17.18,0.0,Feb-1997,770.0,774.0,0.0,26.0,,39.0,0.0,5541.0,5.5,51.0,f,17809.73,17809.73,19631.46,19631.46,12115.27,7516.19,0.0,0.0,0.0,Mar-2019,677.68,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,91.0,237882.0,2.0,1.0,0.0,2.0,16.0,23010.0,82.0,4.0,10.0,2305.0,22.0,100300.0,0.0,0.0,1.0,12.0,6608.0,50160.0,8.8,0.0,0.0,23.0,235.0,1.0,1.0,3.0,6.0,,9.0,26.0,0.0,4.0,5.0,15.0,17.0,2.0,37.0,46.0,5.0,39.0,0.0,0.0,0.0,4.0,98.0,0.0,0.0,0.0,356300.0,28551.0,55000.0,28000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90134183,,20000.0,20000.0,20000.0, 60 months,9.49,419.94,B,B2,Shipping/Receiving Manager,10+ years,RENT,62000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90134183,,debt_consolidation,Debt consolidation,109xx,NY,11.4,0.0,Aug-2002,710.0,714.0,1.0,68.0,,11.0,0.0,13599.0,35.0,42.0,f,0.0,0.0,10202.95,10202.95,4446.2,2325.56,0.0,3431.19,617.6142,Feb-2018,419.94,,Oct-2018,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,94742.0,3.0,3.0,1.0,2.0,7.0,81143.0,82.0,4.0,6.0,6757.0,46.0,38800.0,1.0,4.0,1.0,8.0,9474.0,12122.0,41.7,0.0,0.0,129.0,169.0,5.0,5.0,0.0,6.0,,3.0,,0.0,3.0,5.0,4.0,7.0,25.0,8.0,17.0,5.0,11.0,0.0,0.0,0.0,5.0,95.2,25.0,0.0,0.0,117473.0,94742.0,20800.0,78673.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89887458,,21600.0,21600.0,21600.0, 60 months,10.49,464.17,B,B3,Terminal Manager,3 years,MORTGAGE,72500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89887458,,debt_consolidation,Debt consolidation,372xx,TN,19.81,0.0,Oct-1999,725.0,729.0,2.0,41.0,,19.0,0.0,7218.0,13.1,51.0,f,0.0,0.0,23455.9570429554,23455.96,21600.0,1855.96,0.0,0.0,0.0,Sep-2017,2296.85,,Nov-2018,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,208111.0,5.0,2.0,1.0,4.0,9.0,49352.0,76.0,5.0,8.0,6756.0,30.0,55000.0,1.0,0.0,7.0,13.0,12242.0,32448.0,18.1,0.0,0.0,138.0,203.0,2.0,2.0,6.0,3.0,,4.0,41.0,0.0,3.0,4.0,11.0,15.0,11.0,16.0,34.0,4.0,19.0,0.0,0.0,0.0,7.0,98.0,11.1,0.0,0.0,264656.0,56570.0,39600.0,57656.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90029127,,16100.0,16100.0,16100.0, 60 months,9.49,338.06,B,B2,Auto appraiser,1 year,MORTGAGE,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90029127,,debt_consolidation,Debt consolidation,117xx,NY,11.25,0.0,Dec-1998,730.0,734.0,0.0,71.0,,11.0,0.0,11242.0,23.8,19.0,f,0.0,0.0,17430.6799471927,17430.68,16100.0,1330.68,0.0,0.0,0.0,Sep-2017,14058.57,,Sep-2017,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,263839.0,0.0,1.0,1.0,2.0,11.0,3889.0,22.0,1.0,2.0,8367.0,23.0,47200.0,1.0,0.0,1.0,4.0,26384.0,31458.0,26.3,0.0,0.0,213.0,155.0,12.0,11.0,1.0,12.0,71.0,11.0,71.0,0.0,4.0,4.0,6.0,9.0,6.0,8.0,12.0,4.0,11.0,0.0,0.0,0.0,2.0,94.7,33.3,0.0,0.0,324319.0,15131.0,42700.0,17817.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89906326,,19250.0,19250.0,19250.0, 36 months,15.59,672.89,C,C5,Labour,6 years,OWN,56000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89906326,,small_business,Business,704xx,LA,3.32,0.0,Feb-2007,770.0,774.0,1.0,,,9.0,0.0,4604.0,12.3,13.0,f,0.0,0.0,21389.7643514833,21389.76,19250.0,2139.76,0.0,0.0,0.0,Jul-2017,16023.31,,Jul-2017,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,71157.0,1.0,0.0,0.0,0.0,60.0,0.0,,1.0,2.0,3972.0,12.0,37400.0,0.0,1.0,1.0,2.0,7906.0,28126.0,13.7,0.0,0.0,115.0,95.0,6.0,6.0,1.0,6.0,,6.0,,0.0,2.0,3.0,7.0,7.0,3.0,8.0,9.0,3.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,108095.0,4604.0,32600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90245482,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,owner,5 years,RENT,62000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90245482,,debt_consolidation,Debt consolidation,915xx,CA,14.46,1.0,Feb-2004,675.0,679.0,1.0,17.0,,12.0,0.0,6780.0,34.1,22.0,f,0.0,0.0,11031.19,11031.19,6497.86,4533.33,0.0,0.0,0.0,Jun-2018,543.5,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,17516.0,0.0,1.0,0.0,2.0,13.0,10736.0,72.0,0.0,1.0,3245.0,50.0,19900.0,1.0,0.0,2.0,3.0,1592.0,11820.0,36.5,0.0,0.0,14.0,151.0,21.0,13.0,0.0,29.0,17.0,5.0,17.0,0.0,7.0,7.0,9.0,14.0,2.0,11.0,20.0,7.0,12.0,0.0,0.0,0.0,0.0,90.9,25.0,0.0,0.0,34900.0,17516.0,18600.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88849436,,35000.0,35000.0,35000.0, 60 months,10.99,760.82,B,B4,,,MORTGAGE,93500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88849436,,debt_consolidation,Debt consolidation,926xx,CA,26.97,0.0,Jan-1968,740.0,744.0,0.0,,,16.0,0.0,48621.0,68.2,37.0,f,20451.5,20451.5,22042.41,22042.41,14548.5,7493.91,0.0,0.0,0.0,Mar-2019,760.82,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,410726.0,1.0,3.0,0.0,1.0,22.0,67389.0,68.0,0.0,0.0,15667.0,68.0,71300.0,0.0,10.0,3.0,2.0,27382.0,19440.0,69.6,0.0,0.0,133.0,584.0,25.0,6.0,6.0,25.0,,6.0,,0.0,9.0,10.0,10.0,12.0,12.0,12.0,18.0,10.0,16.0,0.0,0.0,0.0,1.0,100.0,55.6,0.0,0.0,455429.0,116010.0,64000.0,88129.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88553529,,12000.0,12000.0,12000.0, 60 months,11.49,263.86,B,B5,Client Support Specialist,10+ years,RENT,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88553529,,debt_consolidation,Debt consolidation,565xx,MN,22.76,0.0,Dec-1998,675.0,679.0,1.0,51.0,65.0,17.0,1.0,12939.0,58.0,26.0,f,7047.92,7047.92,7651.94,7651.94,4952.08,2699.86,0.0,0.0,0.0,Mar-2019,263.86,Apr-2019,Mar-2019,714.0,710.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,32704.0,2.0,6.0,2.0,4.0,9.0,19765.0,63.0,3.0,4.0,6538.0,58.0,22460.0,0.0,0.0,2.0,8.0,1923.0,2775.0,59.0,0.0,0.0,213.0,190.0,2.0,2.0,1.0,2.0,,2.0,,0.0,6.0,11.0,6.0,6.0,14.0,11.0,11.0,6.0,17.0,,0.0,0.0,5.0,88.0,16.7,0.0,0.0,53860.0,32704.0,16650.0,31400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90094364,,4500.0,4500.0,4500.0, 36 months,14.49,154.88,C,C4,IT Solutions Architect II,10+ years,MORTGAGE,120000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90094364,,debt_consolidation,Debt consolidation,750xx,TX,17.49,0.0,Jun-2001,660.0,664.0,0.0,80.0,,13.0,0.0,53599.0,100.0,20.0,f,0.0,0.0,5074.6731101726,5074.67,4500.0,574.67,0.0,0.0,0.0,Oct-2017,3374.61,,Oct-2017,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,182132.0,0.0,1.0,0.0,1.0,14.0,6960.0,45.0,1.0,1.0,7659.0,88.0,53600.0,0.0,2.0,2.0,2.0,14010.0,0.0,101.1,0.0,0.0,183.0,110.0,8.0,8.0,3.0,29.0,80.0,8.0,80.0,0.0,4.0,11.0,4.0,5.0,5.0,11.0,12.0,11.0,13.0,0.0,0.0,0.0,1.0,95.0,100.0,0.0,0.0,212885.0,60559.0,13300.0,15423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89819101,,25000.0,25000.0,25000.0, 60 months,9.49,524.93,B,B2,Training Manager,1 year,MORTGAGE,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89819101,,debt_consolidation,Debt consolidation,891xx,NV,23.53,0.0,Aug-2003,750.0,754.0,1.0,,,13.0,0.0,11636.0,41.9,23.0,f,0.0,0.0,28674.0507742535,28674.05,25000.0,3674.05,0.0,0.0,0.0,Jul-2018,18155.68,,Jul-2018,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,268402.0,0.0,2.0,0.0,0.0,38.0,11696.0,37.0,0.0,1.0,11062.0,56.0,27800.0,1.0,0.0,1.0,2.0,22367.0,6162.0,64.6,0.0,0.0,93.0,157.0,17.0,17.0,1.0,47.0,,6.0,,0.0,2.0,3.0,4.0,6.0,8.0,9.0,13.0,3.0,13.0,0.0,0.0,0.0,0.0,100.0,25.0,0.0,0.0,309811.0,45677.0,17400.0,31666.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89936581,,4500.0,4500.0,4500.0, 36 months,8.59,142.25,A,A5,Foster care worker ,1 year,MORTGAGE,30000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89936581,,debt_consolidation,Debt consolidation,705xx,LA,3.88,0.0,Nov-2007,695.0,699.0,0.0,24.0,,8.0,0.0,1311.0,13.7,29.0,w,0.0,0.0,4570.6046448909,4570.6,4500.0,70.6,0.0,0.0,0.0,Mar-2017,1484.5,,Nov-2017,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,164622.0,1.0,1.0,0.0,3.0,17.0,48746.0,,0.0,4.0,1311.0,14.0,9600.0,6.0,0.0,3.0,8.0,23517.0,3089.0,29.8,0.0,0.0,51.0,106.0,13.0,5.0,1.0,13.0,24.0,8.0,24.0,0.0,1.0,1.0,2.0,6.0,16.0,6.0,11.0,1.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,173717.0,50057.0,4400.0,48746.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90040580,,35000.0,35000.0,35000.0, 60 months,12.79,792.61,C,C1,Analyst,2 years,MORTGAGE,160000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90040580,,debt_consolidation,Debt consolidation,957xx,CA,17.76,0.0,Jul-2003,670.0,674.0,1.0,72.0,61.0,15.0,1.0,41141.0,68.6,45.0,f,0.0,0.0,40678.6133355818,40678.61,35000.0,5678.61,0.0,0.0,0.0,Feb-2018,28696.1,,Jan-2019,744.0,740.0,0.0,72.0,1.0,Individual,,,,0.0,0.0,554301.0,2.0,3.0,3.0,3.0,3.0,78868.0,82.0,2.0,2.0,9264.0,74.0,60000.0,3.0,14.0,2.0,6.0,39593.0,16587.0,40.3,0.0,0.0,122.0,158.0,2.0,2.0,3.0,2.0,72.0,1.0,72.0,1.0,3.0,6.0,6.0,13.0,14.0,11.0,28.0,6.0,15.0,0.0,0.0,0.0,6.0,97.4,33.3,1.0,0.0,592323.0,120009.0,27800.0,91297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88769873,,14400.0,14400.0,14400.0, 60 months,10.99,313.02,B,B4,Safety Director,1 year,OWN,49400.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88769873,,credit_card,Credit card refinancing,153xx,PA,13.85,0.0,Oct-2006,685.0,689.0,0.0,,64.0,18.0,1.0,5779.0,35.2,28.0,f,0.0,0.0,3677.17,3677.17,1112.03,757.3,0.0,1807.84,325.4112,Apr-2017,313.02,,Oct-2017,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,21772.0,1.0,1.0,1.0,2.0,11.0,15993.0,88.0,4.0,10.0,2151.0,63.0,16400.0,0.0,1.0,6.0,12.0,1361.0,757.0,76.3,0.0,0.0,110.0,119.0,6.0,6.0,0.0,45.0,,2.0,,0.0,2.0,8.0,2.0,8.0,4.0,17.0,24.0,8.0,18.0,0.0,0.0,0.0,5.0,100.0,50.0,1.0,0.0,34605.0,21772.0,3200.0,18205.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89928399,,16000.0,16000.0,16000.0, 60 months,13.99,372.21,C,C3,Sourcer/Researcher Consultant,2 years,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89928399,,vacation,Vacation,951xx,CA,18.14,0.0,Apr-2001,695.0,699.0,0.0,,,11.0,0.0,14680.0,84.9,14.0,f,9636.89,9636.89,10781.65,10781.65,6363.11,4418.54,0.0,0.0,0.0,Mar-2019,372.21,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,33984.0,1.0,5.0,0.0,0.0,97.0,19304.0,72.0,1.0,1.0,9710.0,77.0,17300.0,0.0,0.0,0.0,1.0,3089.0,354.0,96.9,0.0,0.0,144.0,185.0,4.0,4.0,0.0,130.0,,22.0,,0.0,2.0,6.0,2.0,2.0,7.0,6.0,7.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,44265.0,33984.0,11500.0,26965.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818677,,24000.0,24000.0,24000.0, 60 months,13.49,552.12,C,C2,Group enviromental Manager,10+ years,MORTGAGE,145000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818677,,medical,Medical expenses,325xx,FL,25.85,0.0,Apr-1969,720.0,724.0,0.0,30.0,,22.0,0.0,60328.0,59.6,27.0,f,0.0,0.0,24012.2300001044,24012.23,24000.0,12.23,0.0,0.0,0.0,Oct-2016,24030.22,,Sep-2016,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,112899.0,0.0,2.0,0.0,1.0,16.0,45430.0,75.0,0.0,0.0,17366.0,61.0,101300.0,0.0,2.0,0.0,1.0,5132.0,14121.0,63.6,0.0,0.0,141.0,569.0,50.0,16.0,2.0,50.0,31.0,16.0,31.0,0.0,3.0,10.0,9.0,11.0,2.0,19.0,23.0,10.0,22.0,0.0,0.0,0.0,0.0,92.6,22.2,0.0,0.0,303334.0,105758.0,38800.0,129934.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90164560,,12000.0,12000.0,12000.0, 60 months,13.49,276.06,C,C2,Manager,6 years,MORTGAGE,40500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90164560,,debt_consolidation,Debt consolidation,895xx,NV,23.23,0.0,Sep-1997,675.0,679.0,1.0,,69.0,8.0,1.0,7648.0,37.1,35.0,f,0.0,0.0,13964.2435254506,13964.24,12000.0,1964.24,0.0,0.0,0.0,Jan-2018,10063.66,,Feb-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,14341.0,0.0,0.0,0.0,4.0,17.0,6693.0,67.0,0.0,1.0,7046.0,47.0,20600.0,2.0,0.0,3.0,6.0,2390.0,9573.0,44.0,0.0,0.0,119.0,228.0,21.0,16.0,2.0,33.0,,3.0,,0.0,2.0,3.0,4.0,11.0,19.0,7.0,14.0,3.0,7.0,0.0,0.0,0.0,0.0,100.0,25.0,1.0,0.0,30600.0,14341.0,17100.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88892395,,18000.0,18000.0,18000.0, 60 months,8.99,373.57,B,B1,Millworker,10+ years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88892395,,debt_consolidation,Debt consolidation,117xx,NY,13.96,1.0,Dec-2004,685.0,689.0,0.0,23.0,,10.0,0.0,16105.0,47.8,23.0,f,10299.59,10299.59,10824.54,10824.54,7700.41,3124.13,0.0,0.0,0.0,Mar-2019,373.57,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,309980.0,1.0,2.0,0.0,2.0,16.0,24087.0,68.0,2.0,2.0,5606.0,58.0,33700.0,3.0,1.0,1.0,4.0,30998.0,15806.0,48.0,0.0,0.0,133.0,134.0,2.0,2.0,1.0,2.0,,10.0,,0.0,5.0,6.0,5.0,9.0,6.0,7.0,15.0,6.0,10.0,0.0,0.0,0.0,2.0,95.7,60.0,0.0,0.0,397576.0,40192.0,30400.0,35476.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024077,,25000.0,25000.0,25000.0, 60 months,9.49,524.93,B,B2,Boiler operator,6 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024077,,debt_consolidation,Debt consolidation,557xx,MN,24.88,0.0,Sep-1989,730.0,734.0,0.0,,93.0,12.0,1.0,100372.0,39.6,27.0,f,0.0,0.0,29473.9864089143,29473.99,25000.0,4473.99,0.0,0.0,0.0,Feb-2019,15314.06,,Feb-2019,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,263301.0,0.0,2.0,0.0,0.0,28.0,11751.0,54.0,0.0,1.0,7477.0,43.0,147500.0,0.0,2.0,0.0,2.0,21942.0,35633.0,35.2,0.0,0.0,136.0,324.0,17.0,7.0,3.0,17.0,,16.0,,0.0,4.0,7.0,5.0,12.0,7.0,8.0,17.0,7.0,12.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,1.0,333662.0,112123.0,55000.0,21585.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006838,,5000.0,5000.0,5000.0, 36 months,21.49,189.64,D,D5,Customer Service,2 years,RENT,43000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006838,,moving,Moving and relocation,112xx,NY,1.4,1.0,May-2008,670.0,674.0,1.0,22.0,,4.0,0.0,913.0,22.8,19.0,f,0.0,0.0,5298.5310199892,5298.53,5000.0,298.53,0.0,0.0,0.0,Feb-2017,2517.2,,Mar-2017,759.0,755.0,0.0,22.0,1.0,Individual,,,,0.0,0.0,60559.0,0.0,1.0,0.0,1.0,21.0,59646.0,,0.0,1.0,782.0,19.0,4000.0,1.0,0.0,1.0,3.0,15140.0,3087.0,22.8,0.0,0.0,100.0,26.0,18.0,13.0,0.0,18.0,,3.0,,1.0,2.0,2.0,2.0,2.0,16.0,2.0,2.0,2.0,4.0,0.0,0.0,1.0,0.0,94.1,0.0,0.0,0.0,64546.0,60559.0,4000.0,59646.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818207,,16000.0,16000.0,16000.0, 60 months,12.79,362.34,C,C1,,,OWN,105000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818207,,debt_consolidation,Debt consolidation,064xx,CT,15.41,1.0,May-1977,680.0,684.0,0.0,1.0,,10.0,0.0,11240.0,23.5,37.0,f,9522.16,9522.16,10496.49,10496.49,6477.84,4018.65,0.0,0.0,0.0,Mar-2019,362.34,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,1.0,0.0,21488.0,1.0,2.0,1.0,2.0,12.0,10248.0,49.0,0.0,1.0,4925.0,31.0,47900.0,1.0,0.0,3.0,4.0,2388.0,26065.0,17.0,0.0,0.0,161.0,472.0,17.0,1.0,6.0,17.0,,3.0,,0.0,3.0,5.0,4.0,14.0,8.0,7.0,21.0,5.0,10.0,0.0,1.0,0.0,2.0,97.3,25.0,0.0,0.0,68726.0,21488.0,31400.0,20826.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89838483,,10000.0,10000.0,10000.0, 60 months,15.59,241.01,C,C5,Outside Sales,3 years,RENT,48000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89838483,,credit_card,Credit card refinancing,926xx,CA,29.18,0.0,Mar-2011,665.0,669.0,1.0,,49.0,9.0,3.0,14495.0,65.0,12.0,f,0.0,0.0,12612.3521450355,12612.35,10000.0,2612.35,0.0,0.0,0.0,Sep-2018,7318.79,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,371.0,32627.0,1.0,1.0,0.0,0.0,37.0,18132.0,,1.0,2.0,5014.0,65.0,22300.0,0.0,0.0,1.0,2.0,3625.0,6505.0,69.0,0.0,0.0,66.0,66.0,5.0,5.0,0.0,5.0,,5.0,,0.0,6.0,6.0,6.0,6.0,3.0,8.0,9.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,16.7,1.0,2.0,67016.0,32627.0,21000.0,44716.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89078718,,2000.0,2000.0,2000.0, 36 months,8.99,63.6,B,B1,Supervisor ,10+ years,MORTGAGE,75000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89078718,,debt_consolidation,Debt consolidation,328xx,FL,15.01,0.0,Dec-1984,710.0,714.0,1.0,,,12.0,0.0,7330.0,44.7,25.0,f,0.0,0.0,936.89,936.89,703.99,217.9,15.0,0.0,0.0,Apr-2018,142.2,,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,4695.0,112063.0,3.0,2.0,1.0,3.0,2.0,29841.0,87.0,3.0,3.0,3716.0,73.0,16400.0,0.0,1.0,3.0,6.0,9339.0,578.0,91.5,0.0,0.0,151.0,381.0,1.0,1.0,5.0,6.0,,2.0,,1.0,2.0,5.0,2.0,2.0,6.0,9.0,14.0,5.0,12.0,0.0,0.0,0.0,4.0,96.0,100.0,0.0,0.0,163456.0,37171.0,6800.0,34256.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,NATURAL_DISASTER,COMPLETED,3.0,10.83,Sep-2017,Dec-2017,Oct-2017,3.0,0.0,Current,32.49,1452.66,63.25,Cash,N,,,,,, +89814150,,20000.0,20000.0,20000.0, 60 months,8.99,415.08,B,B1,Owner,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89814150,,credit_card,Credit card refinancing,398xx,GA,20.68,0.0,Sep-2003,695.0,699.0,0.0,,,10.0,0.0,52934.0,74.6,23.0,f,11443.92,11443.92,12027.33,12027.33,8556.08,3471.25,0.0,0.0,0.0,Mar-2019,415.08,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,454040.0,0.0,1.0,0.0,1.0,16.0,18302.0,64.0,0.0,0.0,8903.0,71.0,71000.0,1.0,3.0,0.0,1.0,45404.0,15581.0,66.1,0.0,0.0,134.0,155.0,25.0,16.0,4.0,25.0,,21.0,,0.0,6.0,7.0,6.0,8.0,9.0,7.0,10.0,7.0,10.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,557750.0,71236.0,46000.0,28800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89909390,,26000.0,26000.0,26000.0, 60 months,13.99,604.84,C,C3,Office Coordinator,4 years,MORTGAGE,85000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89909390,,debt_consolidation,Debt consolidation,975xx,OR,15.06,1.0,Oct-1990,675.0,679.0,0.0,12.0,40.0,21.0,1.0,19243.0,34.1,32.0,f,15659.98,15659.98,17489.84,17489.84,10340.02,7149.82,0.0,0.0,0.0,Mar-2019,604.84,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,3775.0,28124.0,0.0,1.0,0.0,1.0,18.0,8881.0,59.0,0.0,3.0,5371.0,39.0,56400.0,0.0,0.0,0.0,4.0,1406.0,20758.0,42.3,0.0,0.0,18.0,311.0,14.0,14.0,0.0,29.0,12.0,20.0,12.0,0.0,5.0,9.0,9.0,14.0,1.0,20.0,31.0,9.0,21.0,0.0,0.0,0.0,0.0,96.9,11.1,0.0,0.0,71400.0,28124.0,36000.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89995412,,24000.0,24000.0,24000.0, 60 months,11.49,527.71,B,B5,Project Manager,4 years,MORTGAGE,95000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89995412,,credit_card,Credit card refinancing,226xx,VA,22.01,1.0,Nov-2007,710.0,714.0,1.0,16.0,,15.0,0.0,50439.0,65.0,24.0,f,14096.18,14096.18,15288.27,15288.27,9903.82,5384.45,0.0,0.0,0.0,Mar-2019,527.71,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,358054.0,2.0,3.0,2.0,2.0,12.0,114440.0,92.0,3.0,3.0,4786.0,65.0,77200.0,0.0,2.0,3.0,5.0,23870.0,2550.0,57.0,0.0,0.0,106.0,103.0,3.0,3.0,3.0,5.0,16.0,4.0,16.0,0.0,4.0,11.0,3.0,4.0,11.0,11.0,11.0,6.0,15.0,,0.0,0.0,5.0,96.0,25.0,0.0,0.0,407953.0,122497.0,10200.0,124557.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818294,,21000.0,21000.0,21000.0, 60 months,14.49,493.99,C,C4,Cad drafter,< 1 year,RENT,48000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818294,,debt_consolidation,Debt consolidation,882xx,NM,27.0,0.0,Apr-2003,670.0,674.0,0.0,,,13.0,0.0,17328.0,63.7,20.0,f,12710.56,12710.56,14410.24,14410.24,8289.44,6120.8,0.0,0.0,0.0,Mar-2019,493.99,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,33489.0,0.0,1.0,0.0,0.0,25.0,16161.0,77.0,0.0,2.0,2660.0,70.0,27200.0,1.0,0.0,1.0,2.0,2791.0,5655.0,69.9,0.0,0.0,147.0,161.0,19.0,19.0,0.0,28.0,,7.0,,0.0,8.0,11.0,9.0,11.0,5.0,12.0,15.0,11.0,13.0,0.0,0.0,0.0,0.0,100.0,87.5,0.0,0.0,48217.0,33489.0,18800.0,21017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89777803,,19200.0,19200.0,19200.0, 60 months,12.79,434.8,C,C1,personal investor,2 years,OWN,131209.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89777803,,debt_consolidation,Debt consolidation,290xx,SC,9.65,0.0,May-2004,675.0,679.0,0.0,62.0,66.0,15.0,2.0,18233.0,50.8,25.0,f,0.0,0.0,7792.29,7792.29,4540.42,3251.87,0.0,0.0,0.0,Apr-2018,434.8,,Dec-2016,669.0,665.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,112459.0,1.0,3.0,0.0,2.0,13.0,94226.0,85.0,1.0,3.0,1386.0,66.0,35900.0,0.0,9.0,1.0,5.0,7497.0,3019.0,41.9,0.0,0.0,148.0,148.0,2.0,2.0,0.0,69.0,62.0,8.0,62.0,1.0,2.0,9.0,3.0,6.0,6.0,12.0,19.0,9.0,15.0,0.0,0.0,0.0,1.0,92.0,0.0,0.0,2.0,112707.0,112459.0,5200.0,76807.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88985606,,24000.0,24000.0,24000.0, 60 months,9.49,503.93,B,B2,Hand Former,10+ years,MORTGAGE,85500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88985606,,other,Other,760xx,TX,29.96,0.0,May-1990,715.0,719.0,0.0,,,6.0,0.0,882.0,88.2,19.0,f,13806.0,13806.0,14670.91,14670.91,10194.0,4476.91,0.0,0.0,0.0,Mar-2019,503.93,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,227704.0,0.0,4.0,1.0,3.0,9.0,93900.0,81.0,0.0,0.0,882.0,82.0,1000.0,1.0,1.0,0.0,3.0,37951.0,118.0,88.2,0.0,0.0,138.0,316.0,91.0,9.0,2.0,99.0,,20.0,,0.0,1.0,1.0,1.0,3.0,10.0,1.0,7.0,1.0,6.0,0.0,0.0,0.0,1.0,94.7,100.0,0.0,0.0,276474.0,94782.0,1000.0,125474.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89867293,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Maintenance Technician,4 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89867293,,other,Other,770xx,TX,25.18,0.0,Oct-2006,700.0,704.0,1.0,47.0,,10.0,0.0,4426.0,12.4,29.0,f,11988.22,11988.22,13305.43,13305.43,8011.78,5293.65,0.0,0.0,0.0,Mar-2019,460.1,Apr-2019,Mar-2019,639.0,635.0,0.0,57.0,1.0,Individual,,,,0.0,101.0,51518.0,4.0,2.0,2.0,4.0,1.0,47092.0,67.0,3.0,7.0,2769.0,28.0,35800.0,6.0,4.0,8.0,11.0,5152.0,8993.0,25.7,0.0,0.0,119.0,111.0,2.0,1.0,0.0,3.0,,2.0,47.0,0.0,3.0,6.0,3.0,3.0,17.0,8.0,12.0,6.0,10.0,0.0,0.0,0.0,5.0,86.2,0.0,0.0,0.0,87877.0,51518.0,12100.0,52077.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90039066,,30000.0,30000.0,30000.0, 60 months,14.49,705.7,C,C4,AP Manager,1 year,MORTGAGE,87000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90039066,,debt_consolidation,Debt consolidation,600xx,IL,17.89,5.0,Mar-2004,670.0,674.0,0.0,13.0,,22.0,0.0,32487.0,56.7,36.0,f,18157.95,18157.95,20404.92,20404.92,11842.05,8562.87,0.0,0.0,0.0,Mar-2019,705.7,Apr-2019,Mar-2019,709.0,705.0,0.0,13.0,1.0,Individual,,,,0.0,0.0,285477.0,0.0,9.0,0.0,2.0,20.0,22850.0,66.0,0.0,1.0,4569.0,60.0,57300.0,0.0,4.0,0.0,3.0,12976.0,7457.0,69.9,0.0,0.0,95.0,150.0,21.0,20.0,6.0,47.0,,,,0.0,5.0,8.0,5.0,8.0,13.0,12.0,17.0,8.0,22.0,0.0,0.0,5.0,0.0,100.0,60.0,0.0,0.0,338723.0,55337.0,24800.0,34423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89846877,,11200.0,11200.0,11200.0, 60 months,13.99,260.55,C,C3,Supervisor ,10+ years,MORTGAGE,46000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89846877,,debt_consolidation,Debt consolidation,400xx,KY,22.62,1.0,Aug-2000,665.0,669.0,0.0,22.0,42.0,16.0,1.0,23226.0,70.4,43.0,f,0.0,0.0,11949.568615971,11949.57,11200.0,749.57,0.0,0.0,0.0,Dec-2017,0.41,,Apr-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,118.0,167088.0,1.0,4.0,1.0,2.0,6.0,32565.0,95.0,0.0,4.0,5492.0,83.0,33000.0,0.0,2.0,1.0,6.0,11935.0,6131.0,51.0,0.0,0.0,121.0,193.0,14.0,6.0,3.0,22.0,,6.0,,0.0,3.0,8.0,4.0,11.0,13.0,10.0,26.0,8.0,14.0,0.0,0.0,0.0,1.0,97.4,0.0,1.0,0.0,188425.0,55791.0,12500.0,34425.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89848546,,24000.0,24000.0,24000.0, 60 months,13.99,558.32,C,C3,OR TECH ,9 years,OWN,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89848546,,debt_consolidation,Debt consolidation,071xx,NJ,13.94,0.0,Sep-2007,660.0,664.0,1.0,,,20.0,0.0,34824.0,43.3,42.0,f,14327.4,14327.4,16244.65,16244.65,9672.6,6572.05,0.0,0.0,0.0,Mar-2019,558.32,Apr-2019,Mar-2019,694.0,690.0,1.0,,1.0,Individual,,,,0.0,251.0,212878.0,0.0,2.0,0.0,0.0,30.0,3217.0,45.0,0.0,0.0,14712.0,43.0,80400.0,2.0,1.0,3.0,1.0,10644.0,28382.0,51.8,0.0,0.0,103.0,108.0,25.0,10.0,1.0,25.0,,1.0,,0.0,9.0,13.0,9.0,16.0,12.0,17.0,29.0,13.0,20.0,0.0,0.0,0.0,1.0,100.0,22.2,0.0,0.0,267290.0,38041.0,58900.0,7205.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90039262,,30000.0,30000.0,30000.0, 60 months,10.49,644.67,B,B3,Service technician,10+ years,MORTGAGE,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90039262,,credit_card,Credit card refinancing,060xx,CT,22.06,1.0,Sep-2001,735.0,739.0,0.0,8.0,,8.0,0.0,9426.0,33.7,21.0,f,0.0,0.0,34126.844830251204,34126.84,30000.0,4126.84,0.0,0.0,0.0,Mar-2018,23742.19,,Mar-2018,719.0,715.0,0.0,,1.0,Joint App,103000.0,19.13,Not Verified,0.0,0.0,252036.0,0.0,2.0,0.0,0.0,42.0,83079.0,17.0,1.0,2.0,8483.0,29.0,28000.0,3.0,0.0,3.0,2.0,31505.0,9269.0,47.9,0.0,0.0,150.0,180.0,11.0,11.0,2.0,11.0,8.0,11.0,8.0,0.0,2.0,3.0,3.0,9.0,6.0,5.0,13.0,3.0,8.0,0.0,0.0,0.0,1.0,95.2,33.3,0.0,0.0,301268.0,92505.0,17800.0,101968.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89937898,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,owner,10+ years,MORTGAGE,140000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937898,,debt_consolidation,Debt consolidation,606xx,IL,12.64,0.0,Mar-1991,735.0,739.0,0.0,,,7.0,0.0,76171.0,86.0,13.0,f,14317.88,14317.88,15059.81,15059.81,10682.12,4351.75,25.94,0.0,0.0,Mar-2019,518.84,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,355986.0,0.0,0.0,0.0,0.0,54.0,0.0,,0.0,0.0,31444.0,86.0,97000.0,1.0,0.0,0.0,0.0,50855.0,20829.0,86.0,0.0,0.0,54.0,306.0,40.0,40.0,3.0,40.0,,20.0,,0.0,5.0,5.0,5.0,6.0,1.0,5.0,8.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,60.0,0.0,0.0,424485.0,76171.0,97000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89937139,,40000.0,40000.0,39925.0, 60 months,13.49,920.19,C,C2,Director of Distribution,10+ years,MORTGAGE,200000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937139,,debt_consolidation,Debt consolidation,270xx,NC,31.22,0.0,Nov-1983,710.0,714.0,0.0,,,17.0,0.0,125186.0,81.1,24.0,f,23973.21,23928.26,26610.57,26560.68,16026.79,10583.78,0.0,0.0,0.0,Mar-2019,920.19,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,513402.0,0.0,3.0,1.0,1.0,7.0,26015.0,46.0,1.0,4.0,33587.0,59.0,138400.0,0.0,5.0,1.0,6.0,32088.0,3730.0,63.1,0.0,0.0,104.0,193.0,11.0,7.0,2.0,51.0,,12.0,,0.0,4.0,10.0,5.0,5.0,5.0,11.0,15.0,10.0,17.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,595565.0,180207.0,43000.0,56557.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89856493,,22400.0,22400.0,22400.0, 60 months,13.49,515.31,C,C2,driver,10+ years,MORTGAGE,119000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89856493,,credit_card,Credit card refinancing,052xx,VT,23.22,0.0,Feb-1986,680.0,684.0,3.0,,75.0,20.0,1.0,17669.0,51.5,47.0,f,0.0,0.0,5111.13,5111.13,2772.34,2338.79,0.0,0.0,0.0,Aug-2017,515.31,,Feb-2019,604.0,600.0,0.0,,1.0,Individual,,,,0.0,0.0,364920.0,3.0,6.0,1.0,6.0,9.0,70224.0,74.0,3.0,5.0,6627.0,68.0,34300.0,5.0,2.0,4.0,13.0,18246.0,3848.0,70.8,0.0,0.0,66.0,367.0,1.0,1.0,4.0,18.0,,1.0,,0.0,5.0,8.0,6.0,23.0,12.0,12.0,31.0,8.0,20.0,0.0,0.0,0.0,4.0,100.0,50.0,1.0,0.0,428916.0,87893.0,13200.0,94816.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89906080,,19400.0,19400.0,19400.0, 60 months,14.49,456.35,C,C4,Clinical Applications Specialist,< 1 year,RENT,78000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89906080,,debt_consolidation,Debt consolidation,851xx,AZ,13.02,0.0,Apr-1994,665.0,669.0,1.0,90.0,31.0,10.0,6.0,13775.0,63.8,26.0,f,0.0,0.0,24960.4250672159,24960.43,19400.0,5560.43,0.0,0.0,0.0,Feb-2019,12594.45,,Mar-2019,719.0,715.0,0.0,90.0,1.0,Individual,,,,0.0,0.0,33166.0,1.0,1.0,2.0,2.0,3.0,19391.0,92.0,1.0,2.0,3204.0,78.0,21600.0,0.0,1.0,5.0,4.0,3317.0,3970.0,68.7,0.0,0.0,171.0,269.0,10.0,3.0,0.0,28.0,90.0,2.0,90.0,1.0,5.0,9.0,5.0,10.0,9.0,9.0,16.0,9.0,10.0,0.0,0.0,0.0,3.0,95.5,40.0,1.0,5.0,42728.0,33166.0,12700.0,21128.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90052831,,16000.0,16000.0,16000.0, 60 months,13.99,372.21,C,C3,Pilot,3 years,RENT,153000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90052831,,debt_consolidation,Debt consolidation,973xx,OR,15.0,1.0,Apr-2002,675.0,679.0,0.0,11.0,7.0,11.0,1.0,14233.0,56.5,32.0,f,9636.89,9636.89,10781.65,10781.65,6363.11,4418.54,0.0,0.0,0.0,Mar-2019,372.21,Apr-2019,Mar-2019,699.0,695.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,154600.0,1.0,5.0,2.0,4.0,11.0,140367.0,66.0,2.0,3.0,5347.0,62.0,25200.0,5.0,0.0,2.0,7.0,14055.0,10967.0,56.5,0.0,0.0,158.0,173.0,5.0,5.0,2.0,5.0,37.0,2.0,37.0,6.0,6.0,6.0,6.0,7.0,23.0,6.0,7.0,6.0,11.0,0.0,0.0,1.0,4.0,77.4,16.7,0.0,1.0,177419.0,154600.0,25200.0,152219.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89775484,,24750.0,24750.0,24750.0, 60 months,10.49,531.86,B,B3,Supervisor,10+ years,MORTGAGE,55000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89775484,,debt_consolidation,Debt consolidation,328xx,FL,26.71,1.0,May-1991,685.0,689.0,0.0,7.0,,6.0,0.0,25967.0,64.0,11.0,f,14387.3,14387.3,15409.52,15409.52,10362.7,5046.82,0.0,0.0,0.0,Mar-2019,531.86,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,184463.0,0.0,1.0,1.0,1.0,8.0,27639.0,90.0,0.0,0.0,14119.0,64.0,40580.0,0.0,0.0,0.0,1.0,30743.0,18900.0,68.0,0.0,0.0,112.0,235.0,102.0,8.0,2.0,102.0,,,7.0,0.0,2.0,4.0,3.0,3.0,2.0,4.0,7.0,4.0,6.0,,0.0,0.0,1.0,91.0,50.0,0.0,0.0,207020.0,53606.0,37800.0,30665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89068414,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,Technical Resource Manager,7 years,MORTGAGE,91000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89068414,,medical,Medical expenses,800xx,CO,23.24,2.0,May-1997,665.0,669.0,1.0,6.0,103.0,13.0,1.0,7674.0,54.4,32.0,f,12235.24,12235.24,13935.27,13935.27,7764.76,6170.51,0.0,0.0,0.0,Mar-2019,482.02,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,145097.0,1.0,7.0,2.0,5.0,1.0,137423.0,96.0,0.0,3.0,4572.0,83.0,14100.0,5.0,9.0,11.0,9.0,11161.0,2638.0,69.3,0.0,0.0,232.0,100.0,14.0,1.0,2.0,15.0,,1.0,6.0,1.0,2.0,5.0,3.0,4.0,20.0,6.0,10.0,5.0,13.0,0.0,0.0,0.0,2.0,96.7,33.3,1.0,0.0,143487.0,145097.0,8600.0,129387.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89907070,,24000.0,24000.0,24000.0, 60 months,11.49,527.71,B,B5,System Analyst,2 years,MORTGAGE,101000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89907070,,credit_card,Credit card refinancing,461xx,IN,17.99,0.0,Oct-2003,725.0,729.0,1.0,,,21.0,0.0,31294.0,37.5,53.0,f,14096.18,14096.18,15288.27,15288.27,9903.82,5384.45,0.0,0.0,0.0,Mar-2019,527.71,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,599733.0,0.0,1.0,0.0,1.0,19.0,33264.0,,0.0,1.0,5258.0,38.0,83400.0,5.0,11.0,4.0,6.0,29987.0,27892.0,33.1,0.0,0.0,155.0,137.0,13.0,13.0,9.0,13.0,,1.0,,0.0,7.0,12.0,9.0,20.0,12.0,17.0,32.0,12.0,21.0,0.0,0.0,0.0,0.0,100.0,11.1,0.0,0.0,676531.0,64558.0,41700.0,43631.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89876723,,38000.0,38000.0,38000.0, 60 months,13.49,874.18,C,C2,Area Director,10+ years,MORTGAGE,120000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89876723,,home_improvement,Home improvement,101xx,NY,14.44,0.0,May-2005,715.0,719.0,0.0,55.0,,14.0,0.0,33171.0,37.8,27.0,f,0.0,0.0,21191.57,21191.57,12914.79,8276.78,0.0,0.0,0.0,Sep-2018,874.18,,Mar-2019,609.0,605.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,259919.0,1.0,1.0,0.0,1.0,16.0,1849.0,13.0,1.0,3.0,13424.0,34.0,83400.0,0.0,0.0,0.0,4.0,18566.0,42250.0,39.2,0.0,0.0,16.0,136.0,0.0,0.0,3.0,0.0,55.0,,55.0,2.0,4.0,7.0,6.0,10.0,1.0,12.0,23.0,7.0,14.0,0.0,0.0,0.0,1.0,78.3,33.3,0.0,0.0,332200.0,35020.0,72000.0,14400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88959570,,32000.0,32000.0,32000.0, 60 months,13.99,744.42,C,C3,Assistant Director,10+ years,MORTGAGE,125000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88959570,,debt_consolidation,Debt consolidation,799xx,TX,29.89,1.0,Oct-1995,670.0,674.0,2.0,2.0,,15.0,0.0,44852.0,41.6,38.0,f,0.0,0.0,8403.35,8403.35,747.04,679.62,0.0,6976.69,1255.804199969,Dec-2016,744.42,,Jun-2017,539.0,535.0,0.0,,1.0,Individual,,,,1.0,0.0,436060.0,2.0,4.0,0.0,3.0,15.0,93273.0,56.0,2.0,3.0,22031.0,44.0,107800.0,0.0,4.0,2.0,6.0,29071.0,53336.0,43.6,0.0,2141.0,124.0,251.0,3.0,3.0,7.0,3.0,,3.0,,0.0,6.0,7.0,8.0,14.0,14.0,10.0,17.0,7.0,14.0,0.0,1.0,0.0,2.0,97.3,25.0,0.0,0.0,557391.0,138125.0,94600.0,124725.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88930300,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,Registered Nurse,9 years,MORTGAGE,177000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88930300,,renewable_energy,Green loan,950xx,CA,12.36,0.0,May-2001,665.0,669.0,0.0,62.0,29.0,11.0,5.0,12949.0,60.8,20.0,f,0.0,0.0,23465.19563442,23465.2,20000.0,3465.2,0.0,0.0,0.0,Jan-2018,15305.24,,Mar-2019,704.0,700.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,912181.0,1.0,3.0,0.0,2.0,13.0,58398.0,40.0,0.0,3.0,4438.0,48.0,21300.0,5.0,2.0,1.0,7.0,82926.0,2454.0,79.7,0.0,0.0,137.0,184.0,15.0,2.0,2.0,18.0,,5.0,,1.0,5.0,6.0,5.0,6.0,7.0,7.0,8.0,6.0,11.0,0.0,0.0,0.0,2.0,89.5,80.0,0.0,5.0,949561.0,71347.0,12100.0,87427.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90014198,,16000.0,16000.0,16000.0, 60 months,10.99,347.8,B,B4,sanitation worker,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90014198,,debt_consolidation,Debt consolidation,112xx,NY,12.4,1.0,Apr-2004,745.0,749.0,2.0,10.0,82.0,21.0,1.0,5995.0,7.6,34.0,f,0.0,0.0,18183.1476432249,18183.15,16000.0,2183.15,0.0,0.0,0.0,Jun-2018,5236.72,,Nov-2018,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,416784.0,2.0,2.0,0.0,1.0,13.0,44474.0,76.0,2.0,5.0,1390.0,38.0,73500.0,3.0,3.0,3.0,6.0,20839.0,57667.0,6.7,0.0,0.0,149.0,110.0,4.0,4.0,1.0,4.0,,4.0,10.0,0.0,10.0,13.0,12.0,19.0,6.0,18.0,26.0,13.0,21.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,534255.0,50469.0,61800.0,58182.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90041095,,32000.0,32000.0,31950.0, 60 months,14.49,752.74,C,C4,Manager,10+ years,MORTGAGE,98000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90041095,,debt_consolidation,Debt consolidation,956xx,CA,3.43,0.0,Mar-2003,665.0,669.0,0.0,,72.0,6.0,1.0,8094.0,74.9,25.0,f,19368.71,19338.45,21765.06,21731.05,12631.29,9133.77,0.0,0.0,0.0,Mar-2019,752.74,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,239243.0,1.0,0.0,1.0,2.0,12.0,0.0,,2.0,2.0,5334.0,75.0,10800.0,0.0,1.0,0.0,4.0,39874.0,429.0,94.8,0.0,0.0,99.0,156.0,3.0,3.0,3.0,34.0,,,,0.0,3.0,4.0,3.0,9.0,5.0,5.0,16.0,4.0,6.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,312351.0,8094.0,8300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89968033,,11200.0,11200.0,11200.0, 60 months,13.49,257.66,C,C2,Sr. Photo Producer,5 years,RENT,86000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89968033,,debt_consolidation,Debt consolidation,981xx,WA,4.8,0.0,Apr-1994,665.0,669.0,0.0,75.0,21.0,7.0,2.0,12581.0,54.7,14.0,f,0.0,0.0,6182.92,6182.92,3606.66,2576.26,0.0,0.0,0.0,Oct-2018,257.66,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,12581.0,2.0,0.0,1.0,1.0,11.0,0.0,,2.0,3.0,4538.0,55.0,23000.0,0.0,2.0,1.0,4.0,1797.0,6720.0,57.7,0.0,0.0,269.0,70.0,1.0,1.0,0.0,3.0,,10.0,,0.0,3.0,6.0,3.0,3.0,5.0,7.0,7.0,6.0,7.0,0.0,0.0,0.0,3.0,92.9,33.3,0.0,2.0,23000.0,12581.0,15900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89997513,,36000.0,36000.0,36000.0, 60 months,10.99,782.55,B,B4,Group Operations Manager,10+ years,OWN,101000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89997513,,credit_card,Credit card refinancing,241xx,VA,11.55,0.0,Sep-2002,690.0,694.0,0.0,,,8.0,0.0,24483.0,73.3,19.0,f,21036.08,21036.08,22759.89,22759.89,14963.92,7795.97,0.0,0.0,0.0,Mar-2019,782.55,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,311710.0,0.0,2.0,0.0,1.0,24.0,25076.0,93.0,0.0,0.0,8856.0,82.0,33400.0,3.0,1.0,1.0,2.0,38964.0,3157.0,84.1,0.0,0.0,168.0,121.0,61.0,13.0,4.0,61.0,,1.0,,0.0,3.0,5.0,3.0,4.0,8.0,5.0,7.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,326250.0,49559.0,19900.0,26850.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89976312,,22000.0,22000.0,22000.0, 60 months,13.99,511.79,C,C3,,,RENT,93600.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89976312,,debt_consolidation,Debt consolidation,231xx,VA,11.42,0.0,Jan-1985,720.0,724.0,0.0,,,8.0,0.0,12269.0,63.6,14.0,f,13250.68,13250.68,14824.81,14824.81,8749.32,6075.49,0.0,0.0,0.0,Mar-2019,511.79,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Joint App,106776.0,11.09,Not Verified,0.0,0.0,37326.0,0.0,1.0,0.0,1.0,14.0,25057.0,86.0,0.0,4.0,3916.0,77.0,19300.0,1.0,0.0,0.0,5.0,4666.0,5756.0,67.3,0.0,0.0,128.0,380.0,15.0,14.0,0.0,21.0,,14.0,,0.0,6.0,7.0,6.0,7.0,3.0,7.0,11.0,7.0,8.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,48608.0,37326.0,17600.0,29308.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024450,,40000.0,40000.0,39975.0, 60 months,15.59,964.03,C,C5,Sr. Project Manager,< 1 year,MORTGAGE,220000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024450,,debt_consolidation,Debt consolidation,114xx,NY,10.88,0.0,Feb-2004,715.0,719.0,2.0,,,19.0,0.0,43437.0,13.3,45.0,f,0.0,0.0,42089.4164107701,42063.11,40000.0,2089.42,0.0,0.0,0.0,Feb-2017,39283.94,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,394526.0,2.0,3.0,1.0,3.0,9.0,29395.0,83.0,1.0,3.0,24661.0,27.0,185700.0,1.0,5.0,3.0,7.0,20765.0,107774.0,8.9,0.0,0.0,104.0,151.0,2.0,2.0,4.0,16.0,,2.0,,0.0,5.0,8.0,9.0,13.0,12.0,14.0,28.0,8.0,19.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,558214.0,73480.0,141000.0,35551.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88423119,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,TMSG,10+ years,RENT,63000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88423119,,debt_consolidation,Debt consolidation,334xx,FL,19.73,1.0,Oct-2005,670.0,674.0,0.0,,,10.0,0.0,19845.0,47.0,23.0,f,14283.58,14283.58,15718.87,15718.87,9716.42,6002.45,0.0,0.0,0.0,Mar-2019,543.5,Apr-2019,Mar-2019,704.0,700.0,1.0,11.0,1.0,Individual,,,,0.0,159.0,35214.0,0.0,1.0,0.0,1.0,19.0,15369.0,65.0,1.0,2.0,7514.0,47.0,41850.0,0.0,0.0,0.0,3.0,3521.0,5800.0,57.0,0.0,0.0,131.0,125.0,7.0,7.0,2.0,17.0,,17.0,,0.0,4.0,9.0,5.0,5.0,6.0,9.0,15.0,7.0,10.0,,0.0,1.0,1.0,100.0,0.0,0.0,0.0,65648.0,35214.0,23200.0,23798.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89077638,,30000.0,30000.0,30000.0, 60 months,13.99,697.9,C,C3,Fire Lieutenant ,10+ years,RENT,107000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89077638,,debt_consolidation,Debt consolidation,060xx,CT,28.38,2.0,Jun-1993,690.0,694.0,1.0,15.0,,14.0,0.0,25120.0,51.3,35.0,f,17929.86,17929.86,20315.78,20315.78,12070.14,8245.64,0.0,0.0,0.0,Mar-2019,697.9,Apr-2019,Mar-2019,719.0,715.0,0.0,15.0,1.0,Individual,,,,0.0,0.0,69005.0,2.0,1.0,2.0,3.0,3.0,43885.0,75.0,0.0,0.0,8653.0,64.0,49000.0,2.0,2.0,2.0,3.0,5308.0,5776.0,80.4,0.0,0.0,119.0,279.0,82.0,3.0,4.0,82.0,,2.0,,3.0,9.0,10.0,9.0,18.0,8.0,11.0,22.0,10.0,14.0,0.0,0.0,2.0,2.0,91.4,66.7,0.0,0.0,107418.0,69005.0,29400.0,58418.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88878506,,30000.0,30000.0,30000.0, 60 months,9.49,629.91,B,B2,,,MORTGAGE,110000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88878506,,medical,Medical expenses,330xx,FL,10.2,1.0,May-1993,745.0,749.0,0.0,7.0,,10.0,0.0,25899.0,33.8,22.0,f,17268.58,17268.58,18314.57,18314.57,12731.42,5520.15,63.0,0.0,0.0,Mar-2019,629.91,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,159038.0,0.0,1.0,0.0,0.0,30.0,6490.0,65.0,1.0,3.0,20157.0,38.0,80400.0,0.0,2.0,0.0,3.0,15904.0,42192.0,36.1,0.0,0.0,118.0,239.0,12.0,12.0,4.0,12.0,,,7.0,0.0,4.0,5.0,5.0,9.0,4.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,1.0,95.2,20.0,0.0,0.0,334100.0,32389.0,66000.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89846605,,15000.0,15000.0,15000.0, 36 months,10.49,487.47,B,B3,Billing clerk,8 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89846605,,debt_consolidation,Debt consolidation,802xx,CO,26.4,0.0,Oct-1980,680.0,684.0,0.0,,,24.0,0.0,48654.0,36.1,42.0,f,0.0,0.0,15908.001163397099,15908.0,15000.0,908.0,0.0,0.0,0.0,May-2017,12991.92,,Jun-2018,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,209074.0,1.0,0.0,0.0,0.0,92.0,0.0,,1.0,1.0,5544.0,36.0,134800.0,1.0,5.0,4.0,2.0,9090.0,57649.0,26.7,0.0,0.0,151.0,431.0,10.0,5.0,2.0,10.0,,7.0,,0.0,11.0,20.0,12.0,21.0,3.0,23.0,37.0,20.0,24.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,297396.0,48654.0,78700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89007204,,36400.0,36400.0,36400.0, 60 months,14.49,856.24,C,C4,,5 years,RENT,95000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89007204,,credit_card,Credit card refinancing,906xx,CA,21.5,0.0,Feb-1987,720.0,724.0,0.0,,,11.0,0.0,55723.0,79.8,24.0,f,0.0,0.0,2539.42,2539.42,1265.29,1274.13,0.0,0.0,0.0,Jan-2017,856.24,,May-2017,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,481490.0,2.0,2.0,1.0,2.0,6.0,81554.0,75.0,1.0,1.0,16390.0,78.0,69800.0,1.0,4.0,1.0,3.0,43772.0,3676.0,91.5,0.0,0.0,82.0,355.0,5.0,5.0,6.0,38.0,,6.0,,0.0,3.0,5.0,4.0,6.0,5.0,7.0,13.0,5.0,11.0,0.0,0.0,0.0,2.0,100.0,75.0,0.0,0.0,529965.0,137277.0,43500.0,90665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89867167,,23800.0,23800.0,23800.0, 60 months,14.49,559.85,C,C4,Exec Dir Internal Audit,10+ years,MORTGAGE,119000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89867167,,debt_consolidation,Debt consolidation,441xx,OH,32.73,0.0,Aug-1992,685.0,689.0,1.0,,,13.0,0.0,107747.0,89.5,29.0,f,0.0,0.0,29818.8711947384,29818.87,23800.0,6018.87,0.0,0.0,0.0,Oct-2018,16846.53,,Nov-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,372285.0,1.0,4.0,3.0,4.0,4.0,84824.0,84.0,0.0,0.0,16150.0,87.0,117000.0,4.0,1.0,10.0,4.0,31024.0,6097.0,90.1,0.0,0.0,139.0,289.0,49.0,4.0,5.0,49.0,,0.0,,0.0,5.0,6.0,5.0,10.0,10.0,8.0,14.0,6.0,13.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,406737.0,192571.0,61600.0,95737.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89794723,,28000.0,28000.0,28000.0, 60 months,8.99,581.1,B,B1,Purchasing Manager,2 years,MORTGAGE,97000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89794723,,debt_consolidation,Debt consolidation,857xx,AZ,22.23,0.0,Aug-2000,745.0,749.0,0.0,,,22.0,0.0,16219.0,19.7,47.0,f,16021.88,16021.88,16914.83,16914.83,11978.12,4936.71,0.0,0.0,0.0,Mar-2019,581.1,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,302271.0,0.0,12.0,0.0,1.0,17.0,138211.0,84.0,1.0,1.0,6375.0,63.0,82500.0,0.0,5.0,1.0,2.0,13740.0,15281.0,51.5,0.0,0.0,193.0,192.0,7.0,7.0,1.0,30.0,,5.0,,0.0,3.0,3.0,7.0,10.0,32.0,9.0,14.0,3.0,22.0,0.0,0.0,0.0,1.0,100.0,42.9,0.0,0.0,411101.0,154430.0,31500.0,164626.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89905081,,18000.0,18000.0,18000.0, 60 months,9.49,377.95,B,B2,,5 years,OWN,130000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89905081,,home_improvement,Home improvement,775xx,TX,20.59,0.0,Jul-2004,735.0,739.0,1.0,,,17.0,0.0,23833.0,34.0,39.0,f,0.0,0.0,20756.2336319436,20756.23,18000.0,2756.23,0.0,0.0,0.0,Aug-2018,12828.77,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,168758.0,0.0,6.0,0.0,3.0,15.0,30516.0,52.0,0.0,3.0,7061.0,41.0,70100.0,1.0,2.0,1.0,6.0,9927.0,4161.0,68.2,0.0,0.0,113.0,146.0,17.0,15.0,3.0,17.0,,2.0,,0.0,3.0,9.0,3.0,5.0,21.0,10.0,15.0,9.0,17.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,275356.0,54349.0,13100.0,77756.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88979824,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Financial Advisor,5 years,MORTGAGE,150000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88979824,,debt_consolidation,Debt consolidation,325xx,FL,15.47,0.0,May-1998,725.0,729.0,0.0,,,7.0,0.0,51827.0,63.8,15.0,f,23252.59,23252.59,24903.93,24903.93,16747.41,8156.52,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Mar-2019,839.0,835.0,0.0,,1.0,Individual,,,,0.0,0.0,273704.0,0.0,1.0,0.0,1.0,14.0,48721.0,,0.0,0.0,15471.0,64.0,81200.0,1.0,4.0,0.0,1.0,39101.0,29373.0,63.8,0.0,0.0,124.0,220.0,101.0,14.0,2.0,124.0,,20.0,,0.0,4.0,4.0,5.0,7.0,6.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,0.0,100.0,60.0,0.0,0.0,324428.0,100548.0,81200.0,55935.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88948836,,29400.0,29400.0,29400.0, 60 months,13.99,683.94,C,C3,Chief Operating Officer,9 years,MORTGAGE,180792.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88948836,,debt_consolidation,Debt consolidation,900xx,CA,22.03,0.0,Mar-2002,705.0,709.0,1.0,,,16.0,0.0,77480.0,85.2,32.0,f,0.0,0.0,35848.7645317365,35848.76,29400.0,6448.76,0.0,0.0,0.0,Jul-2018,22192.81,,Jul-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,663465.0,0.0,4.0,2.0,4.0,8.0,70652.0,50.0,0.0,0.0,31069.0,68.0,86500.0,3.0,0.0,2.0,4.0,44231.0,8427.0,69.4,0.0,0.0,145.0,174.0,31.0,8.0,3.0,70.0,,3.0,,0.0,4.0,5.0,7.0,9.0,17.0,8.0,10.0,5.0,16.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,719056.0,148305.0,56500.0,95702.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89996426,,32000.0,32000.0,32000.0, 60 months,14.49,752.74,C,C4,Sales Manager,3 years,MORTGAGE,157000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89996426,,home_improvement,Home improvement,863xx,AZ,10.34,0.0,Jun-2011,735.0,739.0,0.0,,,14.0,0.0,111598.0,27.4,18.0,f,0.0,0.0,3737.94,3737.94,1876.47,1861.47,0.0,0.0,0.0,Mar-2017,752.74,,Dec-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,408701.0,2.0,2.0,0.0,2.0,16.0,11274.0,47.0,2.0,7.0,736.0,36.0,207500.0,2.0,2.0,0.0,10.0,29193.0,14118.0,10.6,0.0,0.0,53.0,63.0,4.0,4.0,3.0,4.0,,15.0,,0.0,5.0,8.0,7.0,7.0,4.0,11.0,11.0,8.0,14.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,524379.0,122872.0,15800.0,23879.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006534,,16000.0,16000.0,16000.0, 60 months,12.79,362.34,C,C1,Manager,10+ years,RENT,150000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006534,,medical,Medical expenses,284xx,NC,12.25,0.0,Aug-1997,665.0,669.0,0.0,68.0,26.0,12.0,4.0,7700.0,55.0,28.0,f,0.0,0.0,18660.6075694149,18660.61,16000.0,2660.61,0.0,0.0,0.0,Mar-2018,12874.54,,Mar-2019,684.0,680.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,65797.0,1.0,5.0,2.0,6.0,4.0,58097.0,79.0,0.0,3.0,4516.0,75.0,14000.0,1.0,1.0,1.0,9.0,5982.0,2720.0,73.1,0.0,0.0,147.0,229.0,17.0,4.0,0.0,17.0,,12.0,,1.0,3.0,4.0,4.0,5.0,15.0,6.0,11.0,4.0,12.0,0.0,0.0,0.0,2.0,92.0,50.0,3.0,0.0,87473.0,65797.0,10100.0,73473.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89955820,,24000.0,24000.0,24000.0, 60 months,10.49,515.74,B,B3,Current Operations Officer,4 years,OWN,125000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89955820,,credit_card,Credit card refinancing,967xx,HI,10.98,0.0,Feb-2001,725.0,729.0,0.0,,42.0,15.0,2.0,22448.0,22.4,22.0,f,13951.43,13951.43,14977.43,14977.43,10048.57,4928.86,0.0,0.0,0.0,Mar-2019,515.74,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,31320.0,5.0,1.0,0.0,0.0,44.0,8872.0,31.0,5.0,10.0,6460.0,24.0,100300.0,0.0,0.0,0.0,10.0,2088.0,73489.0,21.6,0.0,0.0,44.0,187.0,0.0,0.0,0.0,0.0,,13.0,,0.0,6.0,8.0,11.0,14.0,1.0,14.0,21.0,8.0,15.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,2.0,128902.0,31320.0,93700.0,28602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89885898,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,Unit Operator,7 years,MORTGAGE,95000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89885898,,home_improvement,Home improvement,356xx,AL,19.61,0.0,Dec-1999,665.0,669.0,0.0,,,5.0,0.0,49431.0,84.4,54.0,f,14287.39,14287.39,15760.5,15760.5,9712.61,6047.89,0.0,0.0,0.0,Mar-2019,543.5,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,104422.0,2.0,2.0,1.0,3.0,3.0,54991.0,106.0,2.0,2.0,0.0,103.0,50500.0,1.0,19.0,1.0,5.0,26106.0,,,0.0,0.0,201.0,88.0,3.0,3.0,0.0,,,4.0,,0.0,0.0,2.0,0.0,3.0,43.0,3.0,11.0,2.0,5.0,0.0,0.0,0.0,3.0,100.0,,0.0,0.0,102517.0,104422.0,0.0,52017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88977788,,24000.0,24000.0,24000.0, 60 months,10.49,515.74,B,B3,Database Administrator,10+ years,MORTGAGE,108000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88977788,,debt_consolidation,Debt consolidation,840xx,UT,34.94,0.0,Feb-1991,695.0,699.0,1.0,60.0,69.0,24.0,1.0,21665.0,39.0,58.0,f,13951.42,13951.42,15008.53,15008.53,10048.58,4959.95,0.0,0.0,0.0,Mar-2019,515.74,Apr-2019,Mar-2019,734.0,730.0,0.0,60.0,1.0,Individual,,,,0.0,0.0,140118.0,0.0,4.0,0.0,5.0,16.0,118453.0,77.0,0.0,2.0,4090.0,59.0,55600.0,1.0,12.0,4.0,7.0,6369.0,15307.0,45.1,0.0,0.0,166.0,307.0,15.0,15.0,4.0,15.0,60.0,4.0,60.0,12.0,5.0,12.0,7.0,18.0,17.0,19.0,37.0,12.0,24.0,0.0,0.0,0.0,0.0,75.9,42.9,0.0,1.0,227883.0,140118.0,27900.0,172283.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88985880,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Vice President ,9 years,MORTGAGE,227000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88985880,,debt_consolidation,,907xx,CA,12.75,7.0,Feb-1995,705.0,709.0,1.0,9.0,,5.0,0.0,8633.0,64.9,37.0,f,23252.59,23252.59,24903.93,24903.93,16747.41,8156.52,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Mar-2019,724.0,720.0,0.0,10.0,1.0,Individual,,,,0.0,0.0,28398.0,0.0,2.0,0.0,1.0,15.0,19765.0,46.0,0.0,0.0,5141.0,51.0,13300.0,3.0,0.0,2.0,2.0,5680.0,4070.0,66.9,0.0,0.0,154.0,258.0,33.0,15.0,3.0,41.0,9.0,1.0,9.0,6.0,2.0,3.0,2.0,15.0,9.0,3.0,23.0,3.0,5.0,0.0,0.0,7.0,0.0,75.7,50.0,0.0,0.0,55970.0,28398.0,12300.0,42670.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88224441,,24000.0,24000.0,24000.0, 60 months,14.49,564.56,C,C4,Program Manager,6 years,RENT,110000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88224441,,debt_consolidation,Debt consolidation,334xx,FL,18.3,0.0,Jul-1999,660.0,664.0,0.0,67.0,72.0,10.0,1.0,17641.0,68.1,31.0,f,0.0,0.0,6755.4,6755.4,3521.91,3233.49,0.0,0.0,0.0,Oct-2017,564.56,,Mar-2019,594.0,590.0,0.0,67.0,1.0,Individual,,,,0.0,0.0,62426.0,0.0,2.0,0.0,2.0,20.0,44785.0,78.0,1.0,5.0,6172.0,73.0,25900.0,0.0,0.0,1.0,7.0,6243.0,4660.0,77.5,0.0,0.0,132.0,206.0,9.0,9.0,2.0,9.0,,9.0,,1.0,5.0,7.0,5.0,15.0,4.0,8.0,24.0,7.0,10.0,0.0,0.0,0.0,1.0,96.2,40.0,1.0,0.0,84664.0,62426.0,20700.0,58764.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2019,ACTIVE,Mar-2019,10000.0,44.82,1.0 +88215728,,14000.0,14000.0,14000.0, 60 months,14.49,329.33,C,C4,Customer Service Technician,10+ years,MORTGAGE,95000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88215728,,debt_consolidation,,770xx,TX,23.36,0.0,Jun-1996,660.0,664.0,1.0,37.0,,8.0,0.0,7662.0,54.0,22.0,w,8456.12,8456.12,9621.25,9621.25,5543.88,4027.96,49.41,0.0,0.0,Mar-2019,329.33,Apr-2019,Mar-2019,669.0,665.0,0.0,37.0,1.0,Individual,,,,0.0,0.0,143066.0,0.0,1.0,1.0,2.0,7.0,32071.0,94.0,0.0,1.0,4093.0,84.0,14200.0,3.0,1.0,2.0,3.0,17883.0,1838.0,80.7,0.0,0.0,149.0,243.0,22.0,7.0,1.0,75.0,39.0,6.0,37.0,4.0,3.0,3.0,4.0,12.0,3.0,5.0,17.0,3.0,8.0,0.0,0.0,0.0,1.0,81.8,50.0,0.0,0.0,163804.0,44215.0,9500.0,34169.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +Total amount funded in policy code 1: 1465324575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Total amount funded in policy code 2: 521953170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,