From ddd53d76bfedc6db4e844cd1788971a672f6bc09 Mon Sep 17 00:00:00 2001 From: Henry Doupe Date: Tue, 17 Jul 2018 17:27:58 -0400 Subject: [PATCH 01/66] Create core app --- webapp/apps/core/__init__.py | 0 webapp/apps/core/admin.py | 3 +++ webapp/apps/core/apps.py | 5 +++++ webapp/apps/core/migrations/__init__.py | 0 webapp/apps/core/models.py | 1 + webapp/apps/core/tests.py | 3 +++ webapp/apps/core/views.py | 3 +++ 7 files changed, 15 insertions(+) create mode 100644 webapp/apps/core/__init__.py create mode 100644 webapp/apps/core/admin.py create mode 100644 webapp/apps/core/apps.py create mode 100644 webapp/apps/core/migrations/__init__.py create mode 100644 webapp/apps/core/models.py create mode 100644 webapp/apps/core/tests.py create mode 100644 webapp/apps/core/views.py diff --git a/webapp/apps/core/__init__.py b/webapp/apps/core/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/webapp/apps/core/admin.py b/webapp/apps/core/admin.py new file mode 100644 index 00000000..8c38f3f3 --- /dev/null +++ b/webapp/apps/core/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/webapp/apps/core/apps.py b/webapp/apps/core/apps.py new file mode 100644 index 00000000..26f78a8e --- /dev/null +++ b/webapp/apps/core/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class CoreConfig(AppConfig): + name = 'core' diff --git a/webapp/apps/core/migrations/__init__.py b/webapp/apps/core/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py new file mode 100644 index 00000000..137941ff --- /dev/null +++ b/webapp/apps/core/models.py @@ -0,0 +1 @@ +from django.db import models diff --git a/webapp/apps/core/tests.py b/webapp/apps/core/tests.py new file mode 100644 index 00000000..7ce503c2 --- /dev/null +++ b/webapp/apps/core/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py new file mode 100644 index 00000000..91ea44a2 --- /dev/null +++ b/webapp/apps/core/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. From 465c05aaf707de5d9e19a31c69e2e5355de02fda Mon Sep 17 00:00:00 2001 From: Henry Doupe Date: Tue, 17 Jul 2018 17:30:03 -0400 Subject: [PATCH 02/66] Copy and paste outputs code from taxbrain --- webapp/apps/core/views.py | 225 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 225 insertions(+) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 91ea44a2..97b185d9 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,3 +1,228 @@ from django.shortcuts import render # Create your views here. +def add_summary_column(table): + import copy + summary = copy.deepcopy(table["cols"][-1]) + summary["label"] = "Total" + table["cols"].append(summary) + for x in table["rows"]: + row_total = 0 + for y in x["cells"]: + row_total += float(y["value"]) + x["cells"].append({ + 'format': { + 'decimals': 1, + 'divisor': 1000000000 + }, + 'value': str(row_total), + 'year_values': {} + }) + return table + + +def get_result_context(model, request, url): + output = model.get_tax_result() + first_year = model.first_year + quick_calc = model.quick_calc + created_on = model.creation_date + if 'fiscal_tots' in output: + # Use new key/value pairs for old data + output['aggr_d'] = output['fiscal_tots'] + output['aggr_1'] = output['fiscal_tots'] + output['aggr_2'] = output['fiscal_tots'] + del output['fiscal_tots'] + + tables = taxcalc_results_to_tables(output, first_year) + tables["tooltips"] = { + 'distribution': DISTRIBUTION_TOOLTIP, + 'difference': DIFFERENCE_TOOLTIP, + 'payroll': PAYROLL_TOOLTIP, + 'income': INCOME_TOOLTIP, + 'base': BASE_TOOLTIP, + 'reform': REFORM_TOOLTIP, + 'bins': INCOME_BINS_TOOLTIP, + 'deciles': INCOME_DECILES_TOOLTIP, + 'fiscal_current_law': FISCAL_CURRENT_LAW, + 'fiscal_reform': FISCAL_REFORM, + 'fiscal_change': FISCAL_CHANGE, + } + + is_from_file = not model.raw_input_fields + + if (model.json_text is not None and (model.json_text.raw_reform_text or + model.json_text.raw_assumption_text)): + reform_file_contents = model.json_text.raw_reform_text + reform_file_contents = reform_file_contents.replace(" ", " ") + assump_file_contents = model.json_text.raw_assumption_text + assump_file_contents = assump_file_contents.replace(" ", " ") + elif model.input_fields is not None: + reform = to_json_reform(first_year, model.input_fields) + reform_file_contents = json.dumps(reform, indent=4) + assump_file_contents = '{}' + else: + reform_file_contents = None + assump_file_contents = None + + is_registered = (hasattr(request, 'user') and + request.user.is_authenticated()) + + # TODO: Fix the java script mapping problem. There exists somewhere in + # the taxbrain javascript code a mapping to the old table names. As + # soon as this is changed to accept the new table names, this code NEEDS + # to be removed. + tables['fiscal_change'] = add_summary_column(tables.pop('aggr_d')) + tables['fiscal_currentlaw'] = add_summary_column(tables.pop('aggr_1')) + tables['fiscal_reform'] = add_summary_column(tables.pop('aggr_2')) + tables['mY_dec'] = tables.pop('dist2_xdec') + tables['mX_dec'] = tables.pop('dist1_xdec') + tables['df_dec'] = tables.pop('diff_itax_xdec') + tables['pdf_dec'] = tables.pop('diff_ptax_xdec') + tables['cdf_dec'] = tables.pop('diff_comb_xdec') + tables['mY_bin'] = tables.pop('dist2_xbin') + tables['mX_bin'] = tables.pop('dist1_xbin') + tables['df_bin'] = tables.pop('diff_itax_xbin') + tables['pdf_bin'] = tables.pop('diff_ptax_xbin') + tables['cdf_bin'] = tables.pop('diff_comb_xbin') + + json_table = json.dumps(tables) + # TODO: Add row labels for decile and income bin tables to the context here + # and display these instead of hardcode in the javascript + context = { + 'locals': locals(), + 'unique_url': url, + 'tables': json_table, + 'created_on': created_on, + 'first_year': first_year, + 'quick_calc': quick_calc, + 'is_registered': is_registered, + 'is_micro': True, + 'reform_file_contents': reform_file_contents, + 'assump_file_contents': assump_file_contents, + 'dynamic_file_contents': None, + 'is_from_file': is_from_file, + 'allow_dyn_links': not is_from_file, + 'results_type': "static" + } + return context + + +def output_detail(request, pk): + """ + This view is the single page of diplaying a progress bar for how + close the job is to finishing, and then it will also display the + job results if the job is done. Finally, it will render a 'job failed' + page if the job has failed. + """ + + try: + url = OutputUrl.objects.get(pk=pk) + except OutputUrl.DoesNotExist: + raise Http404 + + model = url.unique_inputs + + taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) + webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) + + context_vers_disp = {'taxcalc_version': taxcalc_vers_disp, + 'webapp_version': webapp_vers_disp} + if model.tax_result: + # try to render table; if failure render not available page + try: + context = get_result_context(model, request, url) + except Exception as e: + print('Exception rendering pk', pk, e) + traceback.print_exc() + edit_href = '/taxbrain/edit/{}/?start_year={}'.format( + pk, + model.first_year or START_YEAR # sometimes first_year is None + ) + not_avail_context = dict(edit_href=edit_href, + **context_vers_disp) + return render( + request, + 'taxbrain/not_avail.html', + not_avail_context) + + context.update(context_vers_disp) + return render(request, 'taxbrain/results.html', context) + elif model.error_text: + return render(request, 'taxbrain/failed.html', + {"error_msg": model.error_text.text}) + else: + if not model.check_hostnames(DROPQ_WORKERS): + print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) + return render_to_response('taxbrain/failed.html') + job_ids = model.job_ids + jobs_to_check = model.jobs_not_ready + if not jobs_to_check: + jobs_to_check = normalize(job_ids) + else: + jobs_to_check = normalize(jobs_to_check) + + try: + jobs_ready = dropq_compute.dropq_results_ready(jobs_to_check) + except JobFailError as jfe: + print(jfe) + return render_to_response('taxbrain/failed.html') + + if any(j == 'FAIL' for j in jobs_ready): + failed_jobs = [sub_id for (sub_id, job_ready) + in zip(jobs_to_check, jobs_ready) + if job_ready == 'FAIL'] + + # Just need the error message from one failed job + error_msgs = dropq_compute.dropq_get_results([failed_jobs[0]], + job_failure=True) + if error_msgs: + error_msg = error_msgs[0] + else: + error_msg = "Error: stack trace for this error is unavailable" + val_err_idx = error_msg.rfind("Error") + error = ErrorMessageTaxCalculator() + error_contents = error_msg[val_err_idx:].replace(" ", " ") + error.text = error_contents + error.save() + model.error_text = error + model.save() + return render(request, 'taxbrain/failed.html', + {"error_msg": error_contents}) + + if all(j == 'YES' for j in jobs_ready): + results = dropq_compute.dropq_get_results(normalize(job_ids)) + model.tax_result = results + model.creation_date = timezone.now() + model.save() + context = get_result_context(model, request, url) + context.update(context_vers_disp) + return render(request, 'taxbrain/results.html', context) + + else: + jobs_not_ready = [sub_id for (sub_id, job_ready) + in zip(jobs_to_check, jobs_ready) + if job_ready == 'NO'] + jobs_not_ready = denormalize(jobs_not_ready) + model.jobs_not_ready = jobs_not_ready + model.save() + if request.method == 'POST': + # if not ready yet, insert number of minutes remaining + exp_comp_dt = url.exp_comp_datetime + utc_now = timezone.now() + dt = exp_comp_dt - utc_now + exp_num_minutes = dt.total_seconds() / 60. + exp_num_minutes = round(exp_num_minutes, 2) + exp_num_minutes = exp_num_minutes if exp_num_minutes > 0 else 0 + if exp_num_minutes > 0: + return JsonResponse({'eta': exp_num_minutes}, status=202) + else: + return JsonResponse({'eta': exp_num_minutes}, status=200) + + else: + context = {'eta': '100'} + context.update(context_vers_disp) + return render_to_response( + 'taxbrain/not_ready.html', + context, + context_instance=RequestContext(request) + ) From d01cbddb2848ec43c0d19b33068e6e0b86b95b31 Mon Sep 17 00:00:00 2001 From: Henry Doupe Date: Wed, 18 Jul 2018 13:27:13 -0400 Subject: [PATCH 03/66] Add simple compute.py version corresponding to pb_deploy#1 --- webapp/apps/core/compute.py | 149 ++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 webapp/apps/core/compute.py diff --git a/webapp/apps/core/compute.py b/webapp/apps/core/compute.py new file mode 100644 index 00000000..9d2fa50e --- /dev/null +++ b/webapp/apps/core/compute.py @@ -0,0 +1,149 @@ +import os +import requests +import msgpack +from requests.exceptions import RequestException, Timeout +import requests_mock +requests_mock.Mocker.TEST_PREFIX = 'dropq' + +NUM_BUDGET_YEARS = int(os.environ.get('NUM_BUDGET_YEARS', 10)) +NUM_BUDGET_YEARS_QUICK = int(os.environ.get('NUM_BUDGET_YEARS_QUICK', 1)) +WORKER_HN = os.environ.get('DROPQ_WORKERS') +DROPQ_URL = "/dropq_start_job" +# URL to perform the dropq algorithm on a sample of the full dataset +DROPQ_SMALL_URL = "/dropq_small_start_job" +TIMEOUT_IN_SECONDS = 1.0 +MAX_ATTEMPTS_SUBMIT_JOB = 20 +BYTES_HEADER = {'Content-Type': 'application/octet-stream'} + + +class JobFailError(Exception): + '''An Exception to raise when a remote jobs has failed''' + + +class DropqCompute(object): + + num_budget_years = NUM_BUDGET_YEARS + + def remote_submit_job( + self, + theurl, + data, + timeout=TIMEOUT_IN_SECONDS, + headers=None): + print(theurl, data) + if headers is not None: + response = requests.post(theurl, + data=data, + timeout=timeout, + headers=headers) + else: + response = requests.post(theurl, data=data, timeout=timeout) + return response + + def remote_results_ready(self, theurl, params): + job_response = requests.get(theurl, params=params) + return job_response + + def remote_retrieve_results(self, theurl, params): + job_response = requests.get(theurl, params=params) + return job_response + + def submit_dropq_calculation(self, data): + url_template = "http://{hn}" + DROPQ_URL + return self.submit_calculation(data, url_template) + + def submit_dropq_small_calculation(self, data): + url_template = "http://{hn}" + DROPQ_SMALL_URL + return self.submit_calculation(data, url_template, + increment_counter=False + ) + + def submit_elastic_calculation(self, data): + url_template = "http://{hn}/elastic_gdp_start_job" + return self.submit_calculation(data, url_template) + + def submit_calculation(self, + data_list, + url_template, + increment_counter=True, + use_wnc_offset=True): + + print("hostnames: ", WORKER_HN) + print("submitting data: ", data_list) + job_ids = [] + queue_length = 0 + for data in data_list: + submitted = False + attempts = 0 + while not submitted: + packed = msgpack.dumps({'inputs': data}, use_bin_type=True) + theurl = url_template.format(hn=WORKER_HN) + try: + response = self.remote_submit_job( + theurl, data=packed, timeout=TIMEOUT_IN_SECONDS, + headers=BYTES_HEADER) + if response.status_code == 200: + print("submitted: ", ) + submitted = True + response_d = response.json() + job_ids.append(response_d['job_id']) + queue_length = response_d['qlength'] + else: + print("FAILED: ", data, WORKER_HN) + attempts += 1 + except Timeout: + print("Couldn't submit to: ", WORKER_HN) + attempts += 1 + except RequestException as re: + print("Something unexpected happened: ", re) + attempts += 1 + if attempts > MAX_ATTEMPTS_SUBMIT_JOB: + print("Exceeded max attempts. Bailing out.") + raise IOError() + + return job_ids, queue_length + + def dropq_results_ready(self, job_ids): + jobs_done = [] + for job_id in job_ids: + result_url = "http://{hn}/dropq_query_result".format(hn=WORKER_HN) + job_response = self.remote_results_ready( + result_url, params={'job_id': job_id}) + msg = '{0} failed on host: {1}'.format(job_id, WORKER_HN) + if job_response.status_code == 200: # Valid response + rep = job_response.text + jobs_done.append(rep) + else: + print( + 'did not expect response with status_code', + job_response.status_code) + raise JobFailError(msg) + return jobs_done + + def _get_results_base(self, job_ids, job_failure=False): + ans = [] + for job_id in job_ids: + result_url = "http://{hn}/dropq_get_result".format(hn=WORKER_HN) + job_response = self.remote_retrieve_results( + result_url, + params={'job_id': job_id} + ) + if job_response.status_code == 200: # Valid response + try: + if job_failure: + ans.append(job_response.text) + else: + ans.append(job_response.json()) + except ValueError: + # Got back a bad response. Get the text and re-raise + msg = 'PROBLEM WITH RESPONSE. TEXT RECEIVED: {}' + raise ValueError(msg) + return ans + + def dropq_get_results(self, job_ids, job_failure=False): + if job_failure: + return self._get_results_base(job_ids, job_failure=job_failure) + + ans = self._get_results_base(job_ids, job_failure=job_failure) + + return ans From 5ba7a457be01f60e33aa81039d222dd03ceb4533 Mon Sep 17 00:00:00 2001 From: Henry Doupe Date: Wed, 18 Jul 2018 13:27:59 -0400 Subject: [PATCH 04/66] Turn core/views.py into skeleton to be filled out --- webapp/apps/core/views.py | 227 +++----------------------------------- 1 file changed, 16 insertions(+), 211 deletions(-) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 97b185d9..558e30fe 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,228 +1,33 @@ from django.shortcuts import render -# Create your views here. -def add_summary_column(table): - import copy - summary = copy.deepcopy(table["cols"][-1]) - summary["label"] = "Total" - table["cols"].append(summary) - for x in table["rows"]: - row_total = 0 - for y in x["cells"]: - row_total += float(y["value"]) - x["cells"].append({ - 'format': { - 'decimals': 1, - 'divisor': 1000000000 - }, - 'value': str(row_total), - 'year_values': {} - }) - return table - def get_result_context(model, request, url): - output = model.get_tax_result() - first_year = model.first_year - quick_calc = model.quick_calc - created_on = model.creation_date - if 'fiscal_tots' in output: - # Use new key/value pairs for old data - output['aggr_d'] = output['fiscal_tots'] - output['aggr_1'] = output['fiscal_tots'] - output['aggr_2'] = output['fiscal_tots'] - del output['fiscal_tots'] - - tables = taxcalc_results_to_tables(output, first_year) - tables["tooltips"] = { - 'distribution': DISTRIBUTION_TOOLTIP, - 'difference': DIFFERENCE_TOOLTIP, - 'payroll': PAYROLL_TOOLTIP, - 'income': INCOME_TOOLTIP, - 'base': BASE_TOOLTIP, - 'reform': REFORM_TOOLTIP, - 'bins': INCOME_BINS_TOOLTIP, - 'deciles': INCOME_DECILES_TOOLTIP, - 'fiscal_current_law': FISCAL_CURRENT_LAW, - 'fiscal_reform': FISCAL_REFORM, - 'fiscal_change': FISCAL_CHANGE, - } - - is_from_file = not model.raw_input_fields - - if (model.json_text is not None and (model.json_text.raw_reform_text or - model.json_text.raw_assumption_text)): - reform_file_contents = model.json_text.raw_reform_text - reform_file_contents = reform_file_contents.replace(" ", " ") - assump_file_contents = model.json_text.raw_assumption_text - assump_file_contents = assump_file_contents.replace(" ", " ") - elif model.input_fields is not None: - reform = to_json_reform(first_year, model.input_fields) - reform_file_contents = json.dumps(reform, indent=4) - assump_file_contents = '{}' - else: - reform_file_contents = None - assump_file_contents = None - - is_registered = (hasattr(request, 'user') and - request.user.is_authenticated()) + """ + generate context from request object and model and url model objects - # TODO: Fix the java script mapping problem. There exists somewhere in - # the taxbrain javascript code a mapping to the old table names. As - # soon as this is changed to accept the new table names, this code NEEDS - # to be removed. - tables['fiscal_change'] = add_summary_column(tables.pop('aggr_d')) - tables['fiscal_currentlaw'] = add_summary_column(tables.pop('aggr_1')) - tables['fiscal_reform'] = add_summary_column(tables.pop('aggr_2')) - tables['mY_dec'] = tables.pop('dist2_xdec') - tables['mX_dec'] = tables.pop('dist1_xdec') - tables['df_dec'] = tables.pop('diff_itax_xdec') - tables['pdf_dec'] = tables.pop('diff_ptax_xdec') - tables['cdf_dec'] = tables.pop('diff_comb_xdec') - tables['mY_bin'] = tables.pop('dist2_xbin') - tables['mX_bin'] = tables.pop('dist1_xbin') - tables['df_bin'] = tables.pop('diff_itax_xbin') - tables['pdf_bin'] = tables.pop('diff_ptax_xbin') - tables['cdf_bin'] = tables.pop('diff_comb_xbin') + returns: context + """ - json_table = json.dumps(tables) - # TODO: Add row labels for decile and income bin tables to the context here - # and display these instead of hardcode in the javascript context = { - 'locals': locals(), - 'unique_url': url, - 'tables': json_table, - 'created_on': created_on, - 'first_year': first_year, - 'quick_calc': quick_calc, - 'is_registered': is_registered, - 'is_micro': True, - 'reform_file_contents': reform_file_contents, - 'assump_file_contents': assump_file_contents, - 'dynamic_file_contents': None, - 'is_from_file': is_from_file, - 'allow_dyn_links': not is_from_file, - 'results_type': "static" + # ... } return context -def output_detail(request, pk): +def outputs(request, id): """ - This view is the single page of diplaying a progress bar for how - close the job is to finishing, and then it will also display the - job results if the job is done. Finally, it will render a 'job failed' - page if the job has failed. - """ - - try: - url = OutputUrl.objects.get(pk=pk) - except OutputUrl.DoesNotExist: - raise Http404 - - model = url.unique_inputs - - taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) - webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) + Query status of jobs, render result upon completion of all jobs - context_vers_disp = {'taxcalc_version': taxcalc_vers_disp, - 'webapp_version': webapp_vers_disp} - if model.tax_result: - # try to render table; if failure render not available page - try: - context = get_result_context(model, request, url) - except Exception as e: - print('Exception rendering pk', pk, e) - traceback.print_exc() - edit_href = '/taxbrain/edit/{}/?start_year={}'.format( - pk, - model.first_year or START_YEAR # sometimes first_year is None - ) - not_avail_context = dict(edit_href=edit_href, - **context_vers_disp) - return render( - request, - 'taxbrain/not_avail.html', - not_avail_context) + Cases: + case 1: result is ready and successful - context.update(context_vers_disp) - return render(request, 'taxbrain/results.html', context) - elif model.error_text: - return render(request, 'taxbrain/failed.html', - {"error_msg": model.error_text.text}) - else: - if not model.check_hostnames(DROPQ_WORKERS): - print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) - return render_to_response('taxbrain/failed.html') - job_ids = model.job_ids - jobs_to_check = model.jobs_not_ready - if not jobs_to_check: - jobs_to_check = normalize(job_ids) - else: - jobs_to_check = normalize(jobs_to_check) + case 2: model run failed - try: - jobs_ready = dropq_compute.dropq_results_ready(jobs_to_check) - except JobFailError as jfe: - print(jfe) - return render_to_response('taxbrain/failed.html') + case 3: query results + case 3a: all jobs have completed + case 3b: not all jobs have completed - if any(j == 'FAIL' for j in jobs_ready): - failed_jobs = [sub_id for (sub_id, job_ready) - in zip(jobs_to_check, jobs_ready) - if job_ready == 'FAIL'] - - # Just need the error message from one failed job - error_msgs = dropq_compute.dropq_get_results([failed_jobs[0]], - job_failure=True) - if error_msgs: - error_msg = error_msgs[0] - else: - error_msg = "Error: stack trace for this error is unavailable" - val_err_idx = error_msg.rfind("Error") - error = ErrorMessageTaxCalculator() - error_contents = error_msg[val_err_idx:].replace(" ", " ") - error.text = error_contents - error.save() - model.error_text = error - model.save() - return render(request, 'taxbrain/failed.html', - {"error_msg": error_contents}) - - if all(j == 'YES' for j in jobs_ready): - results = dropq_compute.dropq_get_results(normalize(job_ids)) - model.tax_result = results - model.creation_date = timezone.now() - model.save() - context = get_result_context(model, request, url) - context.update(context_vers_disp) - return render(request, 'taxbrain/results.html', context) - - else: - jobs_not_ready = [sub_id for (sub_id, job_ready) - in zip(jobs_to_check, jobs_ready) - if job_ready == 'NO'] - jobs_not_ready = denormalize(jobs_not_ready) - model.jobs_not_ready = jobs_not_ready - model.save() - if request.method == 'POST': - # if not ready yet, insert number of minutes remaining - exp_comp_dt = url.exp_comp_datetime - utc_now = timezone.now() - dt = exp_comp_dt - utc_now - exp_num_minutes = dt.total_seconds() / 60. - exp_num_minutes = round(exp_num_minutes, 2) - exp_num_minutes = exp_num_minutes if exp_num_minutes > 0 else 0 - if exp_num_minutes > 0: - return JsonResponse({'eta': exp_num_minutes}, status=202) - else: - return JsonResponse({'eta': exp_num_minutes}, status=200) + returns: data to be rendered and displayed + """ - else: - context = {'eta': '100'} - context.update(context_vers_disp) - return render_to_response( - 'taxbrain/not_ready.html', - context, - context_instance=RequestContext(request) - ) + return render('appropriate html page') From 3bfb235be593ac7e32a1404e547af1cdb2dc162c Mon Sep 17 00:00:00 2001 From: Henry Doupe Date: Wed, 18 Jul 2018 15:09:55 -0400 Subject: [PATCH 05/66] Fill in outputs view a little more --- webapp/apps/core/views.py | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 558e30fe..35612da5 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,7 +1,11 @@ -from django.shortcuts import render +from django.shortcuts import render, get_object_or_404 +from django.http import JsonResponse +from .models import CoreRun +from .compute import Compute -def get_result_context(model, request, url): + +def get_result_context(request, model, url): """ generate context from request object and model and url model objects @@ -30,4 +34,23 @@ def outputs(request, id): returns: data to be rendered and displayed """ - return render('appropriate html page') + model = get_object_or_404(CoreRun, id=id) + + compute = Compute() + + if model.result is not None: + context = get_result_context(request, model) + return render('outputs.html', context) + elif model.error_message is not None: + context = {'error': model.error_message} + return render('failed.html', context) + else: + jobs_to_complete = compute.ready(model.job_ids) + if jobs_to_complete == 0: + result = compute.get_result(model.job_ids) + model.result = result + model.save() + return JsonResponse({'eta': 0}, status=202) + else: + eta = compute.eta(model.job_ids) + return JsonResponse({'eta': eta}, status=202) From cc3657d4b4b9b901041629dccacf3cb766b827e5 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Fri, 20 Jul 2018 10:55:29 -0400 Subject: [PATCH 06/66] Prototype for HTML output implementation, to be used with development version of T-C --- distributed/requirements.txt | 1 + templates/taxbrain/results.html | 4 ++ webapp/apps/taxbrain/compute.py | 34 ++++++++---- webapp/apps/taxbrain/views.py | 96 ++++++++++++++++++--------------- 4 files changed, 81 insertions(+), 54 deletions(-) diff --git a/distributed/requirements.txt b/distributed/requirements.txt index 88b6579b..d2b71aef 100644 --- a/distributed/requirements.txt +++ b/distributed/requirements.txt @@ -5,4 +5,5 @@ toolz celery requests-mock requests +msgpack pytest diff --git a/templates/taxbrain/results.html b/templates/taxbrain/results.html index c1c07fee..46a6e9ce 100644 --- a/templates/taxbrain/results.html +++ b/templates/taxbrain/results.html @@ -90,7 +90,11 @@

Assumptions


+ {% if renderable %} + {{ renderable | safeseq | join:"" }} + {% else %}
+ {% endif %}
diff --git a/webapp/apps/taxbrain/compute.py b/webapp/apps/taxbrain/compute.py index ffff0c35..3a11b7c1 100644 --- a/webapp/apps/taxbrain/compute.py +++ b/webapp/apps/taxbrain/compute.py @@ -204,11 +204,6 @@ def dropq_get_results(self, job_ids, job_failure=False): "aggr_d", "aggr_1", "aggr_2"] - results = {name: {} for name in names} - - for result in ans: - for name in results: - results[name].update(result[name]) if ENFORCE_REMOTE_VERSION_CHECK: versions = [r.get('taxcalc_version', None) for r in ans] @@ -223,14 +218,31 @@ def dropq_get_results(self, job_ids, job_failure=False): print(msg) raise IOError(msg) - results['aggr_d'] = arrange_totals_by_row(results['aggr_d'], - AGG_ROW_NAMES) + is_new_output = 'renderable' in ans[0] + + if is_new_output: + results = {} + for x in ['renderable', 'download_only']: + results[x] = {name: '' for name in names} + + for result in ans: + for name in result[x]: + results[x][name] += result[x][name] + else: + results = {name: {} for name in names} + + for result in ans: + for name in results: + results[name].update(result[name]) + + results['aggr_d'] = arrange_totals_by_row(results['aggr_d'], + AGG_ROW_NAMES) - results['aggr_1'] = arrange_totals_by_row(results['aggr_1'], - AGG_ROW_NAMES) + results['aggr_1'] = arrange_totals_by_row(results['aggr_1'], + AGG_ROW_NAMES) - results['aggr_2'] = arrange_totals_by_row(results['aggr_2'], - AGG_ROW_NAMES) + results['aggr_2'] = arrange_totals_by_row(results['aggr_2'], + AGG_ROW_NAMES) return results diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index 03068c28..fa350d92 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -654,27 +654,6 @@ def get_result_context(model, request, url): first_year = model.first_year quick_calc = model.quick_calc created_on = model.creation_date - if 'fiscal_tots' in output: - # Use new key/value pairs for old data - output['aggr_d'] = output['fiscal_tots'] - output['aggr_1'] = output['fiscal_tots'] - output['aggr_2'] = output['fiscal_tots'] - del output['fiscal_tots'] - - tables = taxcalc_results_to_tables(output, first_year) - tables["tooltips"] = { - 'distribution': DISTRIBUTION_TOOLTIP, - 'difference': DIFFERENCE_TOOLTIP, - 'payroll': PAYROLL_TOOLTIP, - 'income': INCOME_TOOLTIP, - 'base': BASE_TOOLTIP, - 'reform': REFORM_TOOLTIP, - 'bins': INCOME_BINS_TOOLTIP, - 'deciles': INCOME_DECILES_TOOLTIP, - 'fiscal_current_law': FISCAL_CURRENT_LAW, - 'fiscal_reform': FISCAL_REFORM, - 'fiscal_change': FISCAL_CHANGE, - } is_from_file = not model.raw_input_fields @@ -695,31 +674,9 @@ def get_result_context(model, request, url): is_registered = (hasattr(request, 'user') and request.user.is_authenticated()) - # TODO: Fix the java script mapping problem. There exists somewhere in - # the taxbrain javascript code a mapping to the old table names. As - # soon as this is changed to accept the new table names, this code NEEDS - # to be removed. - tables['fiscal_change'] = add_summary_column(tables.pop('aggr_d')) - tables['fiscal_currentlaw'] = add_summary_column(tables.pop('aggr_1')) - tables['fiscal_reform'] = add_summary_column(tables.pop('aggr_2')) - tables['mY_dec'] = tables.pop('dist2_xdec') - tables['mX_dec'] = tables.pop('dist1_xdec') - tables['df_dec'] = tables.pop('diff_itax_xdec') - tables['pdf_dec'] = tables.pop('diff_ptax_xdec') - tables['cdf_dec'] = tables.pop('diff_comb_xdec') - tables['mY_bin'] = tables.pop('dist2_xbin') - tables['mX_bin'] = tables.pop('dist1_xbin') - tables['df_bin'] = tables.pop('diff_itax_xbin') - tables['pdf_bin'] = tables.pop('diff_ptax_xbin') - tables['cdf_bin'] = tables.pop('diff_comb_xbin') - - json_table = json.dumps(tables) - # TODO: Add row labels for decile and income bin tables to the context here - # and display these instead of hardcode in the javascript context = { 'locals': locals(), 'unique_url': url, - 'tables': json_table, 'created_on': created_on, 'first_year': first_year, 'quick_calc': quick_calc, @@ -732,6 +689,59 @@ def get_result_context(model, request, url): 'allow_dyn_links': not is_from_file, 'results_type': "static" } + + if 'renderable' in output: + context.update({ + 'renderable': output['renderable'].values(), + # 'download_only': output['download_only'] + }) + else: + if 'fiscal_tots' in output: + # Use new key/value pairs for old data + output['aggr_d'] = output['fiscal_tots'] + output['aggr_1'] = output['fiscal_tots'] + output['aggr_2'] = output['fiscal_tots'] + del output['fiscal_tots'] + + tables = taxcalc_results_to_tables(output, first_year) + tables["tooltips"] = { + 'distribution': DISTRIBUTION_TOOLTIP, + 'difference': DIFFERENCE_TOOLTIP, + 'payroll': PAYROLL_TOOLTIP, + 'income': INCOME_TOOLTIP, + 'base': BASE_TOOLTIP, + 'reform': REFORM_TOOLTIP, + 'bins': INCOME_BINS_TOOLTIP, + 'deciles': INCOME_DECILES_TOOLTIP, + 'fiscal_current_law': FISCAL_CURRENT_LAW, + 'fiscal_reform': FISCAL_REFORM, + 'fiscal_change': FISCAL_CHANGE, + } + + # TODO: Fix the java script mapping problem. There exists somewhere in + # the taxbrain javascript code a mapping to the old table names. As + # soon as this is changed to accept the new table names, this code NEEDS + # to be removed. + tables['fiscal_change'] = add_summary_column(tables.pop('aggr_d')) + tables['fiscal_currentlaw'] = add_summary_column(tables.pop('aggr_1')) + tables['fiscal_reform'] = add_summary_column(tables.pop('aggr_2')) + tables['mY_dec'] = tables.pop('dist2_xdec') + tables['mX_dec'] = tables.pop('dist1_xdec') + tables['df_dec'] = tables.pop('diff_itax_xdec') + tables['pdf_dec'] = tables.pop('diff_ptax_xdec') + tables['cdf_dec'] = tables.pop('diff_comb_xdec') + tables['mY_bin'] = tables.pop('dist2_xbin') + tables['mX_bin'] = tables.pop('dist1_xbin') + tables['df_bin'] = tables.pop('diff_itax_xbin') + tables['pdf_bin'] = tables.pop('diff_ptax_xbin') + tables['cdf_bin'] = tables.pop('diff_comb_xbin') + + json_table = json.dumps(tables) + # TODO: Add row labels for decile and income bin tables to the context + # here and display these instead of hardcode in the javascript + + context['tables'] = json_table + return context From f38386436c9bf20f6472086a85a1c4c411346599 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Fri, 20 Jul 2018 13:52:35 -0400 Subject: [PATCH 07/66] Update TaxBrain to use core/compute --- webapp/apps/core/compute.py | 9 ++++++++- webapp/apps/core/models.py | 12 ++++++++++++ webapp/apps/taxbrain/views.py | 17 +++++++---------- 3 files changed, 27 insertions(+), 11 deletions(-) diff --git a/webapp/apps/core/compute.py b/webapp/apps/core/compute.py index 9d2fa50e..ce94d847 100644 --- a/webapp/apps/core/compute.py +++ b/webapp/apps/core/compute.py @@ -146,4 +146,11 @@ def dropq_get_results(self, job_ids, job_failure=False): ans = self._get_results_base(job_ids, job_failure=job_failure) - return ans + fields = ['renderable', 'download_only'] + results = {key: {} for key in fields} + for x in fields: + for result in ans: + for name in result[x]: + results[x][name] = (results[x][name] if name in results[x] + else '') + result[x][name] + return results diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py index 137941ff..b6f86434 100644 --- a/webapp/apps/core/models.py +++ b/webapp/apps/core/models.py @@ -1 +1,13 @@ from django.db import models +from django.contrib.postgres.fields import JSONField + + +class TaxSimulation(models.Model): + inputs = JSONField() + outputs = JSONField(default=None, blank=True, null=True) + uuid = models.UUIDField( + default=uuid.uuid4, + editable=False, + max_length=32, + unique=True) + user = models.ForeignKey(User, default=None, blank=True, null=True) diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index fa350d92..fd9e8762 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -28,8 +28,8 @@ from .helpers import (taxcalc_results_to_tables, format_csv, json_int_key_encode, make_bool) from .param_displayers import nested_form_parameters -from .compute import (DropqCompute, MockCompute, JobFailError, - NUM_BUDGET_YEARS, NUM_BUDGET_YEARS_QUICK, DROPQ_WORKERS) +from ..core.compute import (DropqCompute, JobFailError, NUM_BUDGET_YEARS, + NUM_BUDGET_YEARS_QUICK) from ..constants import (DISTRIBUTION_TOOLTIP, DIFFERENCE_TOOLTIP, PAYROLL_TOOLTIP, INCOME_TOOLTIP, BASE_TOOLTIP, @@ -94,7 +94,7 @@ def save_model(post_meta): # create model for file_input case if model is None: model = TaxSaveInputs() - model.job_ids = denormalize(post_meta.submitted_ids) + model.job_ids = post_meta.submitted_ids model.json_text = post_meta.json_reform model.first_year = int(post_meta.start_year) model.data_source = post_meta.data_source @@ -789,15 +789,13 @@ def output_detail(request, pk): return render(request, 'taxbrain/failed.html', {"error_msg": model.error_text.text}) else: - if not model.check_hostnames(DROPQ_WORKERS): - print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) - return render_to_response('taxbrain/failed.html') + # if not model.check_hostnames(DROPQ_WORKERS): + # print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) + # return render_to_response('taxbrain/failed.html') job_ids = model.job_ids jobs_to_check = model.jobs_not_ready if not jobs_to_check: - jobs_to_check = normalize(job_ids) - else: - jobs_to_check = normalize(jobs_to_check) + jobs_to_check = job_ids try: jobs_ready = dropq_compute.dropq_results_ready(jobs_to_check) @@ -840,7 +838,6 @@ def output_detail(request, pk): jobs_not_ready = [sub_id for (sub_id, job_ready) in zip(jobs_to_check, jobs_ready) if job_ready == 'NO'] - jobs_not_ready = denormalize(jobs_not_ready) model.jobs_not_ready = jobs_not_ready model.save() if request.method == 'POST': From 51639230408dc5aba03b13db043714c415a7a368 Mon Sep 17 00:00:00 2001 From: Henry Doupe Date: Fri, 20 Jul 2018 14:04:55 -0400 Subject: [PATCH 08/66] Slimmed down version of inputs page --- webapp/apps/core/views.py | 120 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 35612da5..3b3bfbfc 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -5,6 +5,126 @@ from .compute import Compute +def process_reform(request): + fields = dict(request.GET) + fields.update(dict(request.POST)) + fields = {k: v[0] if isinstance(v, list) else v + for k, v in list(fields.items())} + start_year = fields.get('start_year', START_YEAR) + # TODO: migrate first_year to start_year to get rid of weird stuff like + # this + fields['first_year'] = fields['start_year'] + has_errors = make_bool(fields['has_errors']) + + # which file to use, front-end not yet implemented + data_source = fields.get('data_source', 'PUF') + use_puf_not_cps = (data_source == 'PUF') + + personal_inputs = TaxBrainForm(start_year, use_puf_not_cps, fields) + # If an attempt is made to post data we don't accept + # raise a 400 + if personal_inputs.non_field_errors(): + return BadPost( + http_response_404=HttpResponse( + "Bad Input!", status=400 + ), + has_errors=True + ) + is_valid = personal_inputs.is_valid() + if is_valid: + model = personal_inputs.save(commit=False) + model.set_fields() + model.save() + (reform_dict, assumptions_dict, reform_text, assumptions_text, + errors_warnings) = model.get_model_specs() + + json_reform = JSONReformTaxCalculator( + reform_text=json.dumps(reform_dict), + assumption_text=json.dumps(assumptions_dict), + raw_reform_text=reform_text, + raw_assumption_text=assumptions_text, + errors_warnings_text=json.dumps(errors_warnings) + ) + json_reform.save() + + user_mods = dict({'policy': reform_dict}, **assumptions_dict) + data = {'user_mods': user_mods, + 'first_budget_year': int(start_year), + 'use_puf_not_cps': use_puf_not_cps} + if do_full_calc: + data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS)] + submitted_ids, max_q_length = ( + dropq_compute.submit_dropq_calculation(data_list)) + else: + data_list = [dict(year=i, **data) + for i in range(NUM_BUDGET_YEARS_QUICK)] + submitted_ids, max_q_length = ( + dropq_compute.submit_dropq_small_calculation(data_list)) + + +def gui_inputs(request): + """ + Receive data from GUI interface and returns parsed data or default data if + get request + """ + start_year = START_YEAR + has_errors = False + data_source = DEFAULT_SOURCE + if request.method == 'POST': + print('method=POST get', request.GET) + print('method=POST post', request.POST) + obj, post_meta = process_reform(request) + # case where validation failed in forms.TaxBrainForm + # TODO: assert HttpResponse status is 404 + if isinstance(post_meta, BadPost): + return post_meta.http_response_404 + + # No errors--submit to model + if not post_meta.stop_submission: + return redirect(obj) + # Errors from taxcalc.tbi.reform_warnings_errors + else: + personal_inputs = post_meta.personal_inputs + start_year = post_meta.start_year + data_source = post_meta.data_source + use_puf_not_cps = (data_source == 'PUF') + has_errors = post_meta.has_errors + + else: + # Probably a GET request, load a default form + print('method=GET get', request.GET) + print('method=GET post', request.POST) + params = parse_qs(urlparse(request.build_absolute_uri()).query) + if 'start_year' in params and params['start_year'][0] in START_YEARS: + start_year = params['start_year'][0] + + # use puf by default + use_puf_not_cps = True + if ('data_source' in params and + params['data_source'][0] in DATA_SOURCES): + data_source = params['data_source'][0] + if data_source != 'PUF': + use_puf_not_cps = False + + personal_inputs = TaxBrainForm(first_year=start_year, + use_puf_not_cps=use_puf_not_cps) + + init_context = { + 'form': personal_inputs, + 'params': nested_form_parameters(int(start_year), use_puf_not_cps), + 'taxcalc_version': TAXCALC_VERSION, + 'webapp_version': WEBAPP_VERSION, + 'start_years': START_YEARS, + 'start_year': start_year, + 'has_errors': has_errors, + 'data_sources': DATA_SOURCES, + 'data_source': data_source, + } + + return render(request, 'taxbrain/input_form.html', init_context) + + + def get_result_context(request, model, url): """ generate context from request object and model and url model objects From bcb4dd912ac4b5f615e95d464513e2e2386dd987 Mon Sep 17 00:00:00 2001 From: Henry Doupe Date: Fri, 20 Jul 2018 14:27:40 -0400 Subject: [PATCH 09/66] Fix imports, rename, simplify further --- webapp/apps/core/views.py | 105 +++++++++++++++++++++----------------- 1 file changed, 57 insertions(+), 48 deletions(-) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 3b3bfbfc..2b83945e 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,8 +1,36 @@ +import json +from collections import namedtuple + from django.shortcuts import render, get_object_or_404 -from django.http import JsonResponse +from django.http import (HttpResponse, JsonResponse) + +from ..taxbrain.forms import TaxBrainForm as Form +from ..taxbrain.param_displayers import nested_form_parameters +from ..constants import START_YEAR, START_YEARS, DATA_SOURCES, DEFAULT_SOURCE from .models import CoreRun -from .compute import Compute +from .compute import Compute, NUM_BUDGET_YEARS, NUM_BUDGET_YEARS_QUICK + +import taxcalc +from django.conf import settings + + +WEBAPP_VERSION = settings.WEBAPP_VERSION + +tcversion_info = taxcalc._version.get_versions() + +TAXCALC_VERSION = tcversion_info['version'] + + +PostMeta = namedtuple( + 'PostMeta', + ['form', 'start_year', 'data_source'] +) + +BadPost = namedtuple( + 'BasdPost', + ['http_response_404', 'has_errors'] +) def process_reform(request): @@ -14,52 +42,53 @@ def process_reform(request): # TODO: migrate first_year to start_year to get rid of weird stuff like # this fields['first_year'] = fields['start_year'] - has_errors = make_bool(fields['has_errors']) - # which file to use, front-end not yet implemented data_source = fields.get('data_source', 'PUF') use_puf_not_cps = (data_source == 'PUF') - personal_inputs = TaxBrainForm(start_year, use_puf_not_cps, fields) + # TODO: figure out correct way to grab quick_calc flag + do_full_calc = False if fields.get('quick_calc') else True + + form = Form(start_year, use_puf_not_cps, fields) # If an attempt is made to post data we don't accept # raise a 400 - if personal_inputs.non_field_errors(): + if form.non_field_errors(): return BadPost( http_response_404=HttpResponse( "Bad Input!", status=400 ), has_errors=True ) - is_valid = personal_inputs.is_valid() + is_valid = form.is_valid() if is_valid: - model = personal_inputs.save(commit=False) + model = form.save(commit=False) model.set_fields() model.save() (reform_dict, assumptions_dict, reform_text, assumptions_text, errors_warnings) = model.get_model_specs() - json_reform = JSONReformTaxCalculator( - reform_text=json.dumps(reform_dict), - assumption_text=json.dumps(assumptions_dict), - raw_reform_text=reform_text, - raw_assumption_text=assumptions_text, - errors_warnings_text=json.dumps(errors_warnings) - ) - json_reform.save() + # TODO: save processed data user_mods = dict({'policy': reform_dict}, **assumptions_dict) data = {'user_mods': user_mods, 'first_budget_year': int(start_year), 'use_puf_not_cps': use_puf_not_cps} + compute = Compute() if do_full_calc: data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS)] submitted_ids, max_q_length = ( - dropq_compute.submit_dropq_calculation(data_list)) + compute.submit_dropq_calculation(data_list)) else: data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS_QUICK)] submitted_ids, max_q_length = ( - dropq_compute.submit_dropq_small_calculation(data_list)) + compute.submit_dropq_small_calculation(data_list)) + + return PostMeta( + form=form, + start_year=start_year, + data_source=data_source + ) def gui_inputs(request): @@ -68,55 +97,35 @@ def gui_inputs(request): get request """ start_year = START_YEAR - has_errors = False data_source = DEFAULT_SOURCE if request.method == 'POST': print('method=POST get', request.GET) print('method=POST post', request.POST) obj, post_meta = process_reform(request) - # case where validation failed in forms.TaxBrainForm - # TODO: assert HttpResponse status is 404 if isinstance(post_meta, BadPost): return post_meta.http_response_404 - - # No errors--submit to model - if not post_meta.stop_submission: - return redirect(obj) - # Errors from taxcalc.tbi.reform_warnings_errors - else: - personal_inputs = post_meta.personal_inputs - start_year = post_meta.start_year - data_source = post_meta.data_source - use_puf_not_cps = (data_source == 'PUF') - has_errors = post_meta.has_errors + form = post_meta.form + start_year = post_meta.start_year + data_source = post_meta.data_source + use_puf_not_cps = (data_source == 'PUF') else: # Probably a GET request, load a default form print('method=GET get', request.GET) print('method=GET post', request.POST) - params = parse_qs(urlparse(request.build_absolute_uri()).query) - if 'start_year' in params and params['start_year'][0] in START_YEARS: - start_year = params['start_year'][0] - - # use puf by default - use_puf_not_cps = True - if ('data_source' in params and - params['data_source'][0] in DATA_SOURCES): - data_source = params['data_source'][0] - if data_source != 'PUF': - use_puf_not_cps = False - - personal_inputs = TaxBrainForm(first_year=start_year, - use_puf_not_cps=use_puf_not_cps) + start_year = request.GET.get('start_year', START_YEAR) + data_source = request.GET.get('data_source', DEFAULT_SOURCE) + use_puf_not_cps = (data_source == 'PUF') + form = Form(first_year=start_year, + use_puf_not_cps=use_puf_not_cps) init_context = { - 'form': personal_inputs, + 'form': form, 'params': nested_form_parameters(int(start_year), use_puf_not_cps), 'taxcalc_version': TAXCALC_VERSION, 'webapp_version': WEBAPP_VERSION, 'start_years': START_YEARS, 'start_year': start_year, - 'has_errors': has_errors, 'data_sources': DATA_SOURCES, 'data_source': data_source, } From 158845504b829443add1d1c0e3fdb1b8dff79aa0 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Fri, 20 Jul 2018 16:27:32 -0400 Subject: [PATCH 10/66] Temp work --- webapp/apps/core/compute.py | 17 +++++---- webapp/apps/core/models.py | 65 ++++++++++++++++++++++++++++++++- webapp/apps/core/views.py | 15 ++++---- webapp/apps/taxbrain/compute.py | 34 ++++++----------- webapp/apps/taxbrain/urls.py | 13 +------ webapp/apps/taxbrain/views.py | 4 +- webapp/settings.py | 1 + 7 files changed, 98 insertions(+), 51 deletions(-) diff --git a/webapp/apps/core/compute.py b/webapp/apps/core/compute.py index ce94d847..46af23bc 100644 --- a/webapp/apps/core/compute.py +++ b/webapp/apps/core/compute.py @@ -20,8 +20,7 @@ class JobFailError(Exception): '''An Exception to raise when a remote jobs has failed''' -class DropqCompute(object): - +class Compute(object): num_budget_years = NUM_BUDGET_YEARS def remote_submit_job( @@ -48,11 +47,11 @@ def remote_retrieve_results(self, theurl, params): job_response = requests.get(theurl, params=params) return job_response - def submit_dropq_calculation(self, data): + def submit_calculation_job(self, data): url_template = "http://{hn}" + DROPQ_URL return self.submit_calculation(data, url_template) - def submit_dropq_small_calculation(self, data): + def submit_small_calculation_job(self, data): url_template = "http://{hn}" + DROPQ_SMALL_URL return self.submit_calculation(data, url_template, increment_counter=False @@ -103,7 +102,7 @@ def submit_calculation(self, return job_ids, queue_length - def dropq_results_ready(self, job_ids): + def results_ready(self, job_ids): jobs_done = [] for job_id in job_ids: result_url = "http://{hn}/dropq_query_result".format(hn=WORKER_HN) @@ -112,7 +111,8 @@ def dropq_results_ready(self, job_ids): msg = '{0} failed on host: {1}'.format(job_id, WORKER_HN) if job_response.status_code == 200: # Valid response rep = job_response.text - jobs_done.append(rep) + if rep == 'YES': + jobs_done.append(job_id) else: print( 'did not expect response with status_code', @@ -140,7 +140,7 @@ def _get_results_base(self, job_ids, job_failure=False): raise ValueError(msg) return ans - def dropq_get_results(self, job_ids, job_failure=False): + def get_results(self, job_ids, job_failure=False): if job_failure: return self._get_results_base(job_ids, job_failure=job_failure) @@ -154,3 +154,6 @@ def dropq_get_results(self, job_ids, job_failure=False): results[x][name] = (results[x][name] if name in results[x] else '') + result[x][name] return results + + def eta(self, job_ids): + return 10 diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py index b6f86434..8a244981 100644 --- a/webapp/apps/core/models.py +++ b/webapp/apps/core/models.py @@ -1,8 +1,35 @@ from django.db import models from django.contrib.postgres.fields import JSONField +from django.contrib.auth.models import User +import uuid +class SeparatedValuesField(models.TextField): -class TaxSimulation(models.Model): + def __init__(self, *args, **kwargs): + self.token = kwargs.pop('token', ',') + super(SeparatedValuesField, self).__init__(*args, **kwargs) + + def to_python(self, value): + if not value: + return + if isinstance(value, list): + return value + return value.split(self.token) + + def get_db_prep_value(self, value, connection=None, prepared=False): + if not value: + return + assert(isinstance(value, list) or isinstance(value, tuple)) + return self.token.join([str(s) for s in value]) + + def value_to_string(self, obj): + value = self._get_val_from_obj(obj) + return self.get_db_prep_value(value) + + def from_db_value(self, value, expression, connection, context): + return self.to_python(value) + +class CoreRun(models.Model): inputs = JSONField() outputs = JSONField(default=None, blank=True, null=True) uuid = models.UUIDField( @@ -11,3 +38,39 @@ class TaxSimulation(models.Model): max_length=32, unique=True) user = models.ForeignKey(User, default=None, blank=True, null=True) + job_ids = SeparatedValuesField(blank=True, default=None, null=True) + + def get_model_specs(self): + """ + Build JSON model specifications up from fields data + + returns: reform_dict, assumptions_dict, errors_warnings + """ + (reform_dict, assumptions_dict, reform_text, assumptions_text, + errors_warnings) = param_formatters.get_reform_from_gui( + self.start_year, + taxbrain_fields=self.input_fields, + use_puf_not_cps=self.use_puf_not_cps + ) + Fieldable.pop_extra_errors(self, errors_warnings) + return (reform_dict, assumptions_dict, reform_text, assumptions_text, + errors_warnings) + + def set_fields(self): + """ + Parse raw fields + 1. Only keep fields that user specifies + 2. Map TB names to TC names + 3. Do more specific type checking--in particular, check if + field is the type that Tax-Calculator expects from this param + 4. Remove errors on undisplayed parameters + """ + Fieldable.set_fields(self, taxcalc.Policy, + nonparam_fields=self.NONPARAM_FIELDS) + + class Meta: + abstract = True + + +class TaxBrainRun(CoreRun): + pass diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 2b83945e..57f9adde 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -66,7 +66,6 @@ def process_reform(request): model.save() (reform_dict, assumptions_dict, reform_text, assumptions_text, errors_warnings) = model.get_model_specs() - # TODO: save processed data user_mods = dict({'policy': reform_dict}, **assumptions_dict) @@ -77,14 +76,14 @@ def process_reform(request): if do_full_calc: data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS)] submitted_ids, max_q_length = ( - compute.submit_dropq_calculation(data_list)) + compute.submit_calculation_job(data_list)) else: data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS_QUICK)] submitted_ids, max_q_length = ( - compute.submit_dropq_small_calculation(data_list)) + compute.submit_small_calculation_job(data_list)) - return PostMeta( + return unique_url, PostMeta( form=form, start_year=start_year, data_source=data_source @@ -108,6 +107,8 @@ def gui_inputs(request): start_year = post_meta.start_year data_source = post_meta.data_source use_puf_not_cps = (data_source == 'PUF') + if not post_meta.stop_submission: + return redirect(obj) else: # Probably a GET request, load a default form @@ -174,9 +175,9 @@ def outputs(request, id): context = {'error': model.error_message} return render('failed.html', context) else: - jobs_to_complete = compute.ready(model.job_ids) - if jobs_to_complete == 0: - result = compute.get_result(model.job_ids) + jobs_ready = compute.results_ready(model.job_ids) + if jobs_ready == model.job_ids: + result = compute.get_results(model.job_ids) model.result = result model.save() return JsonResponse({'eta': 0}, status=202) diff --git a/webapp/apps/taxbrain/compute.py b/webapp/apps/taxbrain/compute.py index 3a11b7c1..ffff0c35 100644 --- a/webapp/apps/taxbrain/compute.py +++ b/webapp/apps/taxbrain/compute.py @@ -204,6 +204,11 @@ def dropq_get_results(self, job_ids, job_failure=False): "aggr_d", "aggr_1", "aggr_2"] + results = {name: {} for name in names} + + for result in ans: + for name in results: + results[name].update(result[name]) if ENFORCE_REMOTE_VERSION_CHECK: versions = [r.get('taxcalc_version', None) for r in ans] @@ -218,31 +223,14 @@ def dropq_get_results(self, job_ids, job_failure=False): print(msg) raise IOError(msg) - is_new_output = 'renderable' in ans[0] - - if is_new_output: - results = {} - for x in ['renderable', 'download_only']: - results[x] = {name: '' for name in names} - - for result in ans: - for name in result[x]: - results[x][name] += result[x][name] - else: - results = {name: {} for name in names} - - for result in ans: - for name in results: - results[name].update(result[name]) - - results['aggr_d'] = arrange_totals_by_row(results['aggr_d'], - AGG_ROW_NAMES) + results['aggr_d'] = arrange_totals_by_row(results['aggr_d'], + AGG_ROW_NAMES) - results['aggr_1'] = arrange_totals_by_row(results['aggr_1'], - AGG_ROW_NAMES) + results['aggr_1'] = arrange_totals_by_row(results['aggr_1'], + AGG_ROW_NAMES) - results['aggr_2'] = arrange_totals_by_row(results['aggr_2'], - AGG_ROW_NAMES) + results['aggr_2'] = arrange_totals_by_row(results['aggr_2'], + AGG_ROW_NAMES) return results diff --git a/webapp/apps/taxbrain/urls.py b/webapp/apps/taxbrain/urls.py index d6d280b2..9a00220b 100644 --- a/webapp/apps/taxbrain/urls.py +++ b/webapp/apps/taxbrain/urls.py @@ -1,17 +1,8 @@ from django.conf.urls import url -from .views import (personal_results, output_detail, csv_input, csv_output, - pdf_view, edit_personal_results, submit_micro, file_input) +from ..core.views import gui_inputs urlpatterns = [ - url(r'^$', personal_results, name='tax_form'), - url(r'^file/$', file_input, name='json_file'), - url(r'^(?P\d+)/output.csv/$', csv_output, name='csv_output'), - url(r'^(?P\d+)/input.csv/$', csv_input, name='csv_input'), - url(r'^(?P\d+)/', output_detail, name='output_detail'), - url(r'^submit/(?P\d+)/', submit_micro, name='submit_micro'), - url(r'^pdf/$', pdf_view), - url(r'^edit/(?P\d+)/', edit_personal_results, - name='edit_personal_results'), + url(r'^$', gui_inputs) ] diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index fd9e8762..03987a07 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -28,8 +28,8 @@ from .helpers import (taxcalc_results_to_tables, format_csv, json_int_key_encode, make_bool) from .param_displayers import nested_form_parameters -from ..core.compute import (DropqCompute, JobFailError, NUM_BUDGET_YEARS, - NUM_BUDGET_YEARS_QUICK) +from .compute import (DropqCompute, JobFailError, NUM_BUDGET_YEARS, + NUM_BUDGET_YEARS_QUICK) from ..constants import (DISTRIBUTION_TOOLTIP, DIFFERENCE_TOOLTIP, PAYROLL_TOOLTIP, INCOME_TOOLTIP, BASE_TOOLTIP, diff --git a/webapp/settings.py b/webapp/settings.py index 0a2e3ba4..ce5aa2b1 100644 --- a/webapp/settings.py +++ b/webapp/settings.py @@ -72,6 +72,7 @@ 'django.contrib.sites', # Apps + 'webapp.apps.core', 'webapp.apps.taxbrain', 'webapp.apps.dynamic', 'webapp.apps.pages', From 1223d9a154e2ad501b056b0fa9bd50937dc5a5a2 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Mon, 23 Jul 2018 12:44:35 -0400 Subject: [PATCH 11/66] Simplified outputs in core --- webapp/apps/btax/views.py | 11 +- webapp/apps/core/compute.py | 4 - webapp/apps/core/models.py | 63 ------- webapp/apps/core/views.py | 312 +++++++++++++++------------------ webapp/apps/dynamic/compute.py | 4 +- webapp/apps/dynamic/helpers.py | 2 +- webapp/apps/dynamic/views.py | 37 +++- webapp/apps/taxbrain/urls.py | 13 +- webapp/apps/taxbrain/views.py | 293 +------------------------------ 9 files changed, 204 insertions(+), 535 deletions(-) diff --git a/webapp/apps/btax/views.py b/webapp/apps/btax/views.py index 7d58629e..61ca5c93 100644 --- a/webapp/apps/btax/views.py +++ b/webapp/apps/btax/views.py @@ -24,7 +24,6 @@ group_args_to_btax_depr, hover_args_to_btax_depr, make_bool, convert_val) from ..taxbrain.helpers import format_csv, is_wildcard -from ..taxbrain.views import denormalize, normalize from .compute import BTAX_WORKERS, DropqComputeBtax, JobFailError from ..constants import (METTR_TOOLTIP, METR_TOOLTIP, COC_TOOLTIP, @@ -58,6 +57,16 @@ JOB_PROC_TIME_IN_SECONDS = 30 +def denormalize(x): + ans = [str("#".join([i[0], i[1]])) for i in x] + return ans + + +def normalize(x): + ans = [i.split('#') for i in x] + return ans + + def make_bool_gds_ads(form_btax_input): for k, v in list(vars(form_btax_input).items()): if any(token in k for token in ('gds', 'ads', 'tax')): diff --git a/webapp/apps/core/compute.py b/webapp/apps/core/compute.py index 46af23bc..9637462f 100644 --- a/webapp/apps/core/compute.py +++ b/webapp/apps/core/compute.py @@ -66,7 +66,6 @@ def submit_calculation(self, url_template, increment_counter=True, use_wnc_offset=True): - print("hostnames: ", WORKER_HN) print("submitting data: ", data_list) job_ids = [] @@ -154,6 +153,3 @@ def get_results(self, job_ids, job_failure=False): results[x][name] = (results[x][name] if name in results[x] else '') + result[x][name] return results - - def eta(self, job_ids): - return 10 diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py index 8a244981..91c8a384 100644 --- a/webapp/apps/core/models.py +++ b/webapp/apps/core/models.py @@ -3,74 +3,11 @@ from django.contrib.auth.models import User import uuid -class SeparatedValuesField(models.TextField): - - def __init__(self, *args, **kwargs): - self.token = kwargs.pop('token', ',') - super(SeparatedValuesField, self).__init__(*args, **kwargs) - - def to_python(self, value): - if not value: - return - if isinstance(value, list): - return value - return value.split(self.token) - - def get_db_prep_value(self, value, connection=None, prepared=False): - if not value: - return - assert(isinstance(value, list) or isinstance(value, tuple)) - return self.token.join([str(s) for s in value]) - - def value_to_string(self, obj): - value = self._get_val_from_obj(obj) - return self.get_db_prep_value(value) - - def from_db_value(self, value, expression, connection, context): - return self.to_python(value) class CoreRun(models.Model): - inputs = JSONField() outputs = JSONField(default=None, blank=True, null=True) uuid = models.UUIDField( default=uuid.uuid4, editable=False, max_length=32, unique=True) - user = models.ForeignKey(User, default=None, blank=True, null=True) - job_ids = SeparatedValuesField(blank=True, default=None, null=True) - - def get_model_specs(self): - """ - Build JSON model specifications up from fields data - - returns: reform_dict, assumptions_dict, errors_warnings - """ - (reform_dict, assumptions_dict, reform_text, assumptions_text, - errors_warnings) = param_formatters.get_reform_from_gui( - self.start_year, - taxbrain_fields=self.input_fields, - use_puf_not_cps=self.use_puf_not_cps - ) - Fieldable.pop_extra_errors(self, errors_warnings) - return (reform_dict, assumptions_dict, reform_text, assumptions_text, - errors_warnings) - - def set_fields(self): - """ - Parse raw fields - 1. Only keep fields that user specifies - 2. Map TB names to TC names - 3. Do more specific type checking--in particular, check if - field is the type that Tax-Calculator expects from this param - 4. Remove errors on undisplayed parameters - """ - Fieldable.set_fields(self, taxcalc.Policy, - nonparam_fields=self.NONPARAM_FIELDS) - - class Meta: - abstract = True - - -class TaxBrainRun(CoreRun): - pass diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 57f9adde..73734dde 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,156 +1,23 @@ -import json -from collections import namedtuple - from django.shortcuts import render, get_object_or_404 -from django.http import (HttpResponse, JsonResponse) - -from ..taxbrain.forms import TaxBrainForm as Form -from ..taxbrain.param_displayers import nested_form_parameters -from ..constants import START_YEAR, START_YEARS, DATA_SOURCES, DEFAULT_SOURCE +from django.http import JsonResponse +from django.utils import timezone from .models import CoreRun -from .compute import Compute, NUM_BUDGET_YEARS, NUM_BUDGET_YEARS_QUICK - -import taxcalc -from django.conf import settings - - -WEBAPP_VERSION = settings.WEBAPP_VERSION - -tcversion_info = taxcalc._version.get_versions() - -TAXCALC_VERSION = tcversion_info['version'] - - -PostMeta = namedtuple( - 'PostMeta', - ['form', 'start_year', 'data_source'] -) - -BadPost = namedtuple( - 'BasdPost', - ['http_response_404', 'has_errors'] -) - - -def process_reform(request): - fields = dict(request.GET) - fields.update(dict(request.POST)) - fields = {k: v[0] if isinstance(v, list) else v - for k, v in list(fields.items())} - start_year = fields.get('start_year', START_YEAR) - # TODO: migrate first_year to start_year to get rid of weird stuff like - # this - fields['first_year'] = fields['start_year'] - - data_source = fields.get('data_source', 'PUF') - use_puf_not_cps = (data_source == 'PUF') - - # TODO: figure out correct way to grab quick_calc flag - do_full_calc = False if fields.get('quick_calc') else True - - form = Form(start_year, use_puf_not_cps, fields) - # If an attempt is made to post data we don't accept - # raise a 400 - if form.non_field_errors(): - return BadPost( - http_response_404=HttpResponse( - "Bad Input!", status=400 - ), - has_errors=True - ) - is_valid = form.is_valid() - if is_valid: - model = form.save(commit=False) - model.set_fields() - model.save() - (reform_dict, assumptions_dict, reform_text, assumptions_text, - errors_warnings) = model.get_model_specs() - # TODO: save processed data - - user_mods = dict({'policy': reform_dict}, **assumptions_dict) - data = {'user_mods': user_mods, - 'first_budget_year': int(start_year), - 'use_puf_not_cps': use_puf_not_cps} - compute = Compute() - if do_full_calc: - data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS)] - submitted_ids, max_q_length = ( - compute.submit_calculation_job(data_list)) - else: - data_list = [dict(year=i, **data) - for i in range(NUM_BUDGET_YEARS_QUICK)] - submitted_ids, max_q_length = ( - compute.submit_small_calculation_job(data_list)) - - return unique_url, PostMeta( - form=form, - start_year=start_year, - data_source=data_source - ) - - -def gui_inputs(request): - """ - Receive data from GUI interface and returns parsed data or default data if - get request - """ - start_year = START_YEAR - data_source = DEFAULT_SOURCE - if request.method == 'POST': - print('method=POST get', request.GET) - print('method=POST post', request.POST) - obj, post_meta = process_reform(request) - if isinstance(post_meta, BadPost): - return post_meta.http_response_404 - form = post_meta.form - start_year = post_meta.start_year - data_source = post_meta.data_source - use_puf_not_cps = (data_source == 'PUF') - if not post_meta.stop_submission: - return redirect(obj) - - else: - # Probably a GET request, load a default form - print('method=GET get', request.GET) - print('method=GET post', request.POST) - start_year = request.GET.get('start_year', START_YEAR) - data_source = request.GET.get('data_source', DEFAULT_SOURCE) - use_puf_not_cps = (data_source == 'PUF') - form = Form(first_year=start_year, - use_puf_not_cps=use_puf_not_cps) - - init_context = { - 'form': form, - 'params': nested_form_parameters(int(start_year), use_puf_not_cps), - 'taxcalc_version': TAXCALC_VERSION, - 'webapp_version': WEBAPP_VERSION, - 'start_years': START_YEARS, - 'start_year': start_year, - 'data_sources': DATA_SOURCES, - 'data_source': data_source, - } - - return render(request, 'taxbrain/input_form.html', init_context) +from ..taxbrain.models import OutputUrl +from .compute import Compute, JobFailError +from ..formatters import get_version +from ..taxbrain.views import TAXCALC_VERSION, WEBAPP_VERSION, dropq_compute +from django.shortcuts import (render, render_to_response, get_object_or_404, + redirect) +from django.template.context import RequestContext - -def get_result_context(request, model, url): +def output_detail(request, pk): """ - generate context from request object and model and url model objects - - returns: context - """ - - context = { - # ... - } - return context - - -def outputs(request, id): - """ - Query status of jobs, render result upon completion of all jobs + This view is the single page of diplaying a progress bar for how + close the job is to finishing, and then it will also display the + job results if the job is done. Finally, it will render a 'job failed' + page if the job has failed. Cases: case 1: result is ready and successful @@ -160,27 +27,140 @@ def outputs(request, id): case 3: query results case 3a: all jobs have completed case 3b: not all jobs have completed - - returns: data to be rendered and displayed """ - model = get_object_or_404(CoreRun, id=id) - - compute = Compute() - - if model.result is not None: - context = get_result_context(request, model) - return render('outputs.html', context) - elif model.error_message is not None: - context = {'error': model.error_message} - return render('failed.html', context) + try: + url = OutputUrl.objects.get(pk=pk) + except OutputUrl.DoesNotExist: + raise Http404 + + model = url.unique_inputs + + taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) + webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) + + context_vers_disp = {'taxcalc_version': taxcalc_vers_disp, + 'webapp_version': webapp_vers_disp} + if model.tax_result: + # try to render table; if failure render not available page + try: + context = get_result_context(model, request, url) + except Exception as e: + print('Exception rendering pk', pk, e) + traceback.print_exc() + edit_href = '/taxbrain/edit/{}/?start_year={}'.format( + pk, + model.first_year or START_YEAR # sometimes first_year is None + ) + not_avail_context = dict(edit_href=edit_href, + **context_vers_disp) + return render( + request, + 'taxbrain/not_avail.html', + not_avail_context) + + context.update(context_vers_disp) + return render(request, 'taxbrain/results.html', context) + elif model.error_text: + return render(request, 'taxbrain/failed.html', + {"error_msg": model.error_text.text}) else: - jobs_ready = compute.results_ready(model.job_ids) - if jobs_ready == model.job_ids: - result = compute.get_results(model.job_ids) - model.result = result + # if not model.check_hostnames(DROPQ_WORKERS): + # print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) + # return render_to_response('taxbrain/failed.html') + job_ids = model.job_ids + jobs_to_check = model.jobs_not_ready + if not jobs_to_check: + jobs_to_check = job_ids + + try: + jobs_ready = dropq_compute.results_ready(jobs_to_check) + except JobFailError as jfe: + print(jfe) + return render_to_response('taxbrain/failed.html') + + jobs_not_ready = set(jobs_to_check).difference(set(jobs_ready)) + if jobs_not_ready == set(): + results = dropq_compute.get_results(job_ids) + model.tax_result = results + model.creation_date = timezone.now() model.save() - return JsonResponse({'eta': 0}, status=202) + context = get_result_context(model, request, url) + context.update(context_vers_disp) + return render(request, 'taxbrain/results.html', context) + else: - eta = compute.eta(model.job_ids) - return JsonResponse({'eta': eta}, status=202) + jobs_not_ready = list(jobs_not_ready) + model.jobs_not_ready = jobs_not_ready + model.save() + if request.method == 'POST': + # if not ready yet, insert number of minutes remaining + exp_comp_dt = url.exp_comp_datetime + utc_now = timezone.now() + dt = exp_comp_dt - utc_now + exp_num_minutes = dt.total_seconds() / 60. + exp_num_minutes = round(exp_num_minutes, 2) + exp_num_minutes = exp_num_minutes if exp_num_minutes > 0 else 0 + if exp_num_minutes > 0: + return JsonResponse({'eta': exp_num_minutes}, status=202) + else: + return JsonResponse({'eta': exp_num_minutes}, status=200) + + else: + context = {'eta': '100'} + context.update(context_vers_disp) + return render_to_response( + 'taxbrain/not_ready.html', + context, + context_instance=RequestContext(request) + ) + + +def get_result_context(model, request, url): + output = model.get_tax_result() + first_year = model.first_year + quick_calc = model.quick_calc + created_on = model.creation_date + + is_from_file = not model.raw_input_fields + + if (model.json_text is not None and (model.json_text.raw_reform_text or + model.json_text.raw_assumption_text)): + reform_file_contents = model.json_text.raw_reform_text + reform_file_contents = reform_file_contents.replace(" ", " ") + assump_file_contents = model.json_text.raw_assumption_text + assump_file_contents = assump_file_contents.replace(" ", " ") + elif model.input_fields is not None: + reform = to_json_reform(first_year, model.input_fields) + reform_file_contents = json.dumps(reform, indent=4) + assump_file_contents = '{}' + else: + reform_file_contents = None + assump_file_contents = None + + is_registered = (hasattr(request, 'user') and + request.user.is_authenticated()) + + context = { + 'locals': locals(), + 'unique_url': url, + 'created_on': created_on, + 'first_year': first_year, + 'quick_calc': quick_calc, + 'is_registered': is_registered, + 'is_micro': True, + 'reform_file_contents': reform_file_contents, + 'assump_file_contents': assump_file_contents, + 'dynamic_file_contents': None, + 'is_from_file': is_from_file, + 'allow_dyn_links': not is_from_file, + 'results_type': "static" + } + + if 'renderable' in output: + context.update({ + 'renderable': output['renderable'].values(), + # 'download_only': output['download_only'] + }) + + return context diff --git a/webapp/apps/dynamic/compute.py b/webapp/apps/dynamic/compute.py index 74266db2..15ce8709 100644 --- a/webapp/apps/dynamic/compute.py +++ b/webapp/apps/dynamic/compute.py @@ -5,7 +5,7 @@ from requests.exceptions import Timeout, RequestException import requests_mock import taxcalc -from ..taxbrain.compute import DropqCompute +from ..core.compute import Compute from .models import OGUSAWorkerNodesCounter from .helpers import filter_ogusa_only @@ -28,7 +28,7 @@ 'True') -class DynamicCompute(DropqCompute): +class DynamicCompute(Compute): def remote_register_job(self, theurl, data, timeout=TIMEOUT_IN_SECONDS): response = requests.post(theurl, data=data, timeout=timeout) diff --git a/webapp/apps/dynamic/helpers.py b/webapp/apps/dynamic/helpers.py index 7c07c712..c780931b 100644 --- a/webapp/apps/dynamic/helpers.py +++ b/webapp/apps/dynamic/helpers.py @@ -7,7 +7,6 @@ import sys from ..taxbrain.helpers import default_taxcalc_data from ..taxbrain.param_displayers import TaxCalcParam -from ..taxbrain.compute import GDP_ELAST_ROW_NAMES from django.core.mail import send_mail import taxcalc @@ -40,6 +39,7 @@ OGUSA_RESULTS_TOTAL_ROW_KEY_LABELS = { n: n for n in OGUSA_RESULTS_TOTAL_ROW_KEYS} +GDP_ELAST_ROW_NAMES = taxcalc.tbi.GDP_ELAST_ROW_NAMES GDP_ELAST_ROW_KEY_LABELS = { n: '% Difference in GDP' for n in GDP_ELAST_ROW_NAMES} GDP_ELAST_RESULTS_TABLE_LABELS = { diff --git a/webapp/apps/dynamic/views.py b/webapp/apps/dynamic/views.py index 58395ad3..c6fe03df 100644 --- a/webapp/apps/dynamic/views.py +++ b/webapp/apps/dynamic/views.py @@ -25,14 +25,13 @@ ErrorMessageTaxCalculator, JSONReformTaxCalculator) from ..taxbrain.views import (make_bool, dropq_compute, - JOB_PROC_TIME_IN_SECONDS, - add_summary_column) + JOB_PROC_TIME_IN_SECONDS) from ..taxbrain.param_formatters import (to_json_reform, get_reform_from_gui, parse_fields, append_errors_warnings) from ..taxbrain.helpers import (taxcalc_results_to_tables, convert_val, json_int_key_encode) from ..taxbrain.param_displayers import default_behavior -from ..taxbrain.compute import JobFailError, DROPQ_WORKERS +from ..core.compute import JobFailError from .helpers import (default_parameters, job_submitted, ogusa_results_to_tables, success_text, failure_text, normalize, denormalize, strip_empty_lists, @@ -89,6 +88,26 @@ WEBAPP_VERSION = settings.WEBAPP_VERSION +def add_summary_column(table): + import copy + summary = copy.deepcopy(table["cols"][-1]) + summary["label"] = "Total" + table["cols"].append(summary) + for x in table["rows"]: + row_total = 0 + for y in x["cells"]: + row_total += float(y["value"]) + x["cells"].append({ + 'format': { + 'decimals': 1, + 'divisor': 1000000000 + }, + 'value': str(row_total), + 'year_values': {} + }) + return table + + def dynamic_input(request, pk): """ This view handles the dynamic input page and calls the function that @@ -714,9 +733,9 @@ def elastic_results(request, pk): return render(request, 'dynamic/elasticity_results.html', context) else: - if not model.check_hostnames(DROPQ_WORKERS): - print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) - raise render_to_response('taxbrain/failed.html') + # if not model.check_hostnames(DROPQ_WORKERS): + # print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) + # raise render_to_response('taxbrain/failed.html') job_ids = model.job_ids jobs_to_check = model.jobs_not_ready if not jobs_to_check: @@ -933,9 +952,9 @@ def behavior_results(request, pk): return render(request, 'taxbrain/results.html', context) else: - if not model.check_hostnames(DROPQ_WORKERS): - print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) - raise render_to_response('taxbrain/failed.html') + # if not model.check_hostnames(DROPQ_WORKERS): + # print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) + # raise render_to_response('taxbrain/failed.html') job_ids = model.job_ids jobs_to_check = model.jobs_not_ready if not jobs_to_check: diff --git a/webapp/apps/taxbrain/urls.py b/webapp/apps/taxbrain/urls.py index 9a00220b..395500ee 100644 --- a/webapp/apps/taxbrain/urls.py +++ b/webapp/apps/taxbrain/urls.py @@ -1,8 +1,17 @@ from django.conf.urls import url -from ..core.views import gui_inputs +from .views import (personal_results, csv_input, edit_personal_results, + submit_micro, file_input) + +from ..core.views import output_detail urlpatterns = [ - url(r'^$', gui_inputs) + url(r'^$', personal_results, name='tax_form'), + url(r'^file/$', file_input, name='json_file'), + url(r'^(?P\d+)/input.csv/$', csv_input, name='csv_input'), + url(r'^(?P\d+)/', output_detail, name='output_detail'), + url(r'^submit/(?P\d+)/', submit_micro, name='submit_micro'), + url(r'^edit/(?P\d+)/', edit_personal_results, + name='edit_personal_results'), ] diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index 03987a07..aa59692d 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -28,8 +28,8 @@ from .helpers import (taxcalc_results_to_tables, format_csv, json_int_key_encode, make_bool) from .param_displayers import nested_form_parameters -from .compute import (DropqCompute, JobFailError, NUM_BUDGET_YEARS, - NUM_BUDGET_YEARS_QUICK) +from ..core.compute import (Compute, JobFailError, NUM_BUDGET_YEARS, + NUM_BUDGET_YEARS_QUICK) from ..constants import (DISTRIBUTION_TOOLTIP, DIFFERENCE_TOOLTIP, PAYROLL_TOOLTIP, INCOME_TOOLTIP, BASE_TOOLTIP, @@ -51,7 +51,7 @@ ENABLE_QUICK_CALC = bool(os.environ.get('ENABLE_QUICK_CALC', '')) sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES) -dropq_compute = DropqCompute() +dropq_compute = Compute() WEBAPP_VERSION = settings.WEBAPP_VERSION @@ -75,16 +75,6 @@ def log_ip(request): print("BEGIN DROPQ WORK FROM: unknown IP") -def denormalize(x): - ans = [str("#".join([i[0], i[1]])) for i in x] - return ans - - -def normalize(x): - ans = [i.split('#') for i in x] - return ans - - def save_model(post_meta): """ Save user input data @@ -304,12 +294,12 @@ def submit_reform(request, user=None, json_reform_id=None): if do_full_calc: data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS)] submitted_ids, max_q_length = ( - dropq_compute.submit_dropq_calculation(data_list)) + dropq_compute.submit_calculation_job(data_list)) else: data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS_QUICK)] submitted_ids, max_q_length = ( - dropq_compute.submit_dropq_small_calculation(data_list)) + dropq_compute.submit_small_calculation_job(data_list)) return PostMeta( request=request, @@ -552,7 +542,7 @@ def submit_micro(request, pk): # start calc job data_list = [dict(year=i, **data) for i in range(NUM_BUDGET_YEARS)] - submitted_ids, max_q_length = dropq_compute.submit_dropq_calculation( + submitted_ids, max_q_length = dropq_compute.submit_calculation_job( data_list ) @@ -629,265 +619,6 @@ def edit_personal_results(request, pk): return render(request, 'taxbrain/input_form.html', init_context) -def add_summary_column(table): - import copy - summary = copy.deepcopy(table["cols"][-1]) - summary["label"] = "Total" - table["cols"].append(summary) - for x in table["rows"]: - row_total = 0 - for y in x["cells"]: - row_total += float(y["value"]) - x["cells"].append({ - 'format': { - 'decimals': 1, - 'divisor': 1000000000 - }, - 'value': str(row_total), - 'year_values': {} - }) - return table - - -def get_result_context(model, request, url): - output = model.get_tax_result() - first_year = model.first_year - quick_calc = model.quick_calc - created_on = model.creation_date - - is_from_file = not model.raw_input_fields - - if (model.json_text is not None and (model.json_text.raw_reform_text or - model.json_text.raw_assumption_text)): - reform_file_contents = model.json_text.raw_reform_text - reform_file_contents = reform_file_contents.replace(" ", " ") - assump_file_contents = model.json_text.raw_assumption_text - assump_file_contents = assump_file_contents.replace(" ", " ") - elif model.input_fields is not None: - reform = to_json_reform(first_year, model.input_fields) - reform_file_contents = json.dumps(reform, indent=4) - assump_file_contents = '{}' - else: - reform_file_contents = None - assump_file_contents = None - - is_registered = (hasattr(request, 'user') and - request.user.is_authenticated()) - - context = { - 'locals': locals(), - 'unique_url': url, - 'created_on': created_on, - 'first_year': first_year, - 'quick_calc': quick_calc, - 'is_registered': is_registered, - 'is_micro': True, - 'reform_file_contents': reform_file_contents, - 'assump_file_contents': assump_file_contents, - 'dynamic_file_contents': None, - 'is_from_file': is_from_file, - 'allow_dyn_links': not is_from_file, - 'results_type': "static" - } - - if 'renderable' in output: - context.update({ - 'renderable': output['renderable'].values(), - # 'download_only': output['download_only'] - }) - else: - if 'fiscal_tots' in output: - # Use new key/value pairs for old data - output['aggr_d'] = output['fiscal_tots'] - output['aggr_1'] = output['fiscal_tots'] - output['aggr_2'] = output['fiscal_tots'] - del output['fiscal_tots'] - - tables = taxcalc_results_to_tables(output, first_year) - tables["tooltips"] = { - 'distribution': DISTRIBUTION_TOOLTIP, - 'difference': DIFFERENCE_TOOLTIP, - 'payroll': PAYROLL_TOOLTIP, - 'income': INCOME_TOOLTIP, - 'base': BASE_TOOLTIP, - 'reform': REFORM_TOOLTIP, - 'bins': INCOME_BINS_TOOLTIP, - 'deciles': INCOME_DECILES_TOOLTIP, - 'fiscal_current_law': FISCAL_CURRENT_LAW, - 'fiscal_reform': FISCAL_REFORM, - 'fiscal_change': FISCAL_CHANGE, - } - - # TODO: Fix the java script mapping problem. There exists somewhere in - # the taxbrain javascript code a mapping to the old table names. As - # soon as this is changed to accept the new table names, this code NEEDS - # to be removed. - tables['fiscal_change'] = add_summary_column(tables.pop('aggr_d')) - tables['fiscal_currentlaw'] = add_summary_column(tables.pop('aggr_1')) - tables['fiscal_reform'] = add_summary_column(tables.pop('aggr_2')) - tables['mY_dec'] = tables.pop('dist2_xdec') - tables['mX_dec'] = tables.pop('dist1_xdec') - tables['df_dec'] = tables.pop('diff_itax_xdec') - tables['pdf_dec'] = tables.pop('diff_ptax_xdec') - tables['cdf_dec'] = tables.pop('diff_comb_xdec') - tables['mY_bin'] = tables.pop('dist2_xbin') - tables['mX_bin'] = tables.pop('dist1_xbin') - tables['df_bin'] = tables.pop('diff_itax_xbin') - tables['pdf_bin'] = tables.pop('diff_ptax_xbin') - tables['cdf_bin'] = tables.pop('diff_comb_xbin') - - json_table = json.dumps(tables) - # TODO: Add row labels for decile and income bin tables to the context - # here and display these instead of hardcode in the javascript - - context['tables'] = json_table - - return context - - -def output_detail(request, pk): - """ - This view is the single page of diplaying a progress bar for how - close the job is to finishing, and then it will also display the - job results if the job is done. Finally, it will render a 'job failed' - page if the job has failed. - """ - - try: - url = OutputUrl.objects.get(pk=pk) - except OutputUrl.DoesNotExist: - raise Http404 - - model = url.unique_inputs - - taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) - webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) - - context_vers_disp = {'taxcalc_version': taxcalc_vers_disp, - 'webapp_version': webapp_vers_disp} - if model.tax_result: - # try to render table; if failure render not available page - try: - context = get_result_context(model, request, url) - except Exception as e: - print('Exception rendering pk', pk, e) - traceback.print_exc() - edit_href = '/taxbrain/edit/{}/?start_year={}'.format( - pk, - model.first_year or START_YEAR # sometimes first_year is None - ) - not_avail_context = dict(edit_href=edit_href, - **context_vers_disp) - return render( - request, - 'taxbrain/not_avail.html', - not_avail_context) - - context.update(context_vers_disp) - return render(request, 'taxbrain/results.html', context) - elif model.error_text: - return render(request, 'taxbrain/failed.html', - {"error_msg": model.error_text.text}) - else: - # if not model.check_hostnames(DROPQ_WORKERS): - # print('bad hostname', model.jobs_not_ready, DROPQ_WORKERS) - # return render_to_response('taxbrain/failed.html') - job_ids = model.job_ids - jobs_to_check = model.jobs_not_ready - if not jobs_to_check: - jobs_to_check = job_ids - - try: - jobs_ready = dropq_compute.dropq_results_ready(jobs_to_check) - except JobFailError as jfe: - print(jfe) - return render_to_response('taxbrain/failed.html') - - if any(j == 'FAIL' for j in jobs_ready): - failed_jobs = [sub_id for (sub_id, job_ready) - in zip(jobs_to_check, jobs_ready) - if job_ready == 'FAIL'] - - # Just need the error message from one failed job - error_msgs = dropq_compute.dropq_get_results([failed_jobs[0]], - job_failure=True) - if error_msgs: - error_msg = error_msgs[0] - else: - error_msg = "Error: stack trace for this error is unavailable" - val_err_idx = error_msg.rfind("Error") - error = ErrorMessageTaxCalculator() - error_contents = error_msg[val_err_idx:].replace(" ", " ") - error.text = error_contents - error.save() - model.error_text = error - model.save() - return render(request, 'taxbrain/failed.html', - {"error_msg": error_contents}) - - if all(j == 'YES' for j in jobs_ready): - results = dropq_compute.dropq_get_results(normalize(job_ids)) - model.tax_result = results - model.creation_date = timezone.now() - model.save() - context = get_result_context(model, request, url) - context.update(context_vers_disp) - return render(request, 'taxbrain/results.html', context) - - else: - jobs_not_ready = [sub_id for (sub_id, job_ready) - in zip(jobs_to_check, jobs_ready) - if job_ready == 'NO'] - model.jobs_not_ready = jobs_not_ready - model.save() - if request.method == 'POST': - # if not ready yet, insert number of minutes remaining - exp_comp_dt = url.exp_comp_datetime - utc_now = timezone.now() - dt = exp_comp_dt - utc_now - exp_num_minutes = dt.total_seconds() / 60. - exp_num_minutes = round(exp_num_minutes, 2) - exp_num_minutes = exp_num_minutes if exp_num_minutes > 0 else 0 - if exp_num_minutes > 0: - return JsonResponse({'eta': exp_num_minutes}, status=202) - else: - return JsonResponse({'eta': exp_num_minutes}, status=200) - - else: - context = {'eta': '100'} - context.update(context_vers_disp) - return render_to_response( - 'taxbrain/not_ready.html', - context, - context_instance=RequestContext(request) - ) - - -@permission_required('taxbrain.view_inputs') -def csv_output(request, pk): - try: - url = OutputUrl.objects.get(pk=pk) - except OutputUrl.DoesNotExist: - raise Http404 - - # Create the HttpResponse object with the appropriate CSV header. - response = HttpResponse(content_type='text/csv') - now = timezone.now() - suffix = "".join(map(str, [now.year, now.month, now.day, now.hour, - now.minute, now.second])) - filename = "taxbrain_outputs_" + suffix + ".csv" - response['Content-Disposition'] = 'attachment; filename="' + filename + '"' - - results = url.unique_inputs.get_tax_result() - first_year = url.unique_inputs.first_year - csv_results = format_csv(results, pk, first_year) - writer = csv.writer(response) - for csv_row in csv_results: - writer.writerow(csv_row) - - return response - - @permission_required('taxbrain.view_inputs') def csv_input(request, pk): try: @@ -922,15 +653,3 @@ def filter_names(x): writer.writerow([getattr(inputs, field) for field in field_names]) return response - - -@permission_required('taxbrain.view_inputs') -def pdf_view(request): - """ - This view creates the pdfs. - """ - pdf = pdfkit.from_url(request.META['HTTP_REFERER'], False) - response = HttpResponse(pdf, content_type='application/pdf') - response['Content-Disposition'] = 'attachment; filename="tax_results.pdf"' - - return response From 0da41bc601dbc12e00ea946539a4d3f2b74c418f Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Mon, 23 Jul 2018 17:13:32 -0400 Subject: [PATCH 12/66] Fix some tests --- webapp/apps/core/compute.py | 114 ++++++++++++++++++++++- webapp/apps/core/models.py | 14 +-- webapp/apps/core/views.py | 25 ++--- webapp/apps/taxbrain/tests/test_views.py | 6 +- webapp/apps/taxbrain/views.py | 4 +- webapp/apps/test_assets/utils.py | 2 +- 6 files changed, 129 insertions(+), 36 deletions(-) diff --git a/webapp/apps/core/compute.py b/webapp/apps/core/compute.py index 23d56887..f5224b67 100644 --- a/webapp/apps/core/compute.py +++ b/webapp/apps/core/compute.py @@ -1,6 +1,7 @@ import os import requests import msgpack +import json from requests.exceptions import RequestException, Timeout import requests_mock requests_mock.Mocker.TEST_PREFIX = 'dropq' @@ -59,11 +60,11 @@ def submit_elastic_calculation(self, data): url_template = "http://{hn}/elastic_gdp_start_job" return self.submit(data, url_template) - def submit_calculation(self, - data_list, - url_template, - increment_counter=True, - use_wnc_offset=True): + def submit(self, + data_list, + url_template, + increment_counter=True, + use_wnc_offset=True): print("hostnames: ", WORKER_HN) print("submitting data: ", data_list) job_ids = [] @@ -149,3 +150,106 @@ def get_results(self, job_ids, job_failure=False): results[x][name] = (results[x][name] if name in results[x] else '') + result[x][name] return results + + +class MockCompute(Compute): + + num_budget_years = NUM_BUDGET_YEARS + __slots__ = ('count', 'num_times_to_wait', 'last_posted') + + def __init__(self, num_times_to_wait=0): + self.count = 0 + # Number of times to respond 'No' before + # replying that a job is ready + self.num_times_to_wait = num_times_to_wait + + def remote_submit_job(self, theurl, data, timeout, headers=None): + with requests_mock.Mocker() as mock: + resp = {'job_id': '424242', 'qlength': 2} + resp = json.dumps(resp) + mock.register_uri('POST', DROPQ_URL, text=resp) + mock.register_uri('POST', DROPQ_SMALL_URL, text=resp) + mock.register_uri('POST', '/elastic_gdp_start_job', text=resp) + mock.register_uri('POST', '/btax_start_job', text=resp) + self.last_posted = data + return Compute.remote_submit_job(self, theurl, data, timeout) + + def remote_results_ready(self, theurl, params): + with requests_mock.Mocker() as mock: + if self.num_times_to_wait > 0: + mock.register_uri('GET', '/dropq_query_result', text='NO') + self.num_times_to_wait -= 1 + else: + mock.register_uri('GET', '/dropq_query_result', text='YES') + return Compute.remote_results_ready(self, theurl, params) + + def remote_retrieve_results(self, theurl, params): + mock_path = os.path.join(os.path.split(__file__)[0], "tests", + "response_year_{0}.json") + with open(mock_path.format(self.count), 'r') as f: + text = f.read() + self.count += 1 + with requests_mock.Mocker() as mock: + mock.register_uri('GET', '/dropq_get_result', text=text) + return Compute.remote_retrieve_results(self, theurl, params) + + def reset_count(self): + """ + reset worker node count + """ + self.count = 0 + + +class MockFailedCompute(MockCompute): + + def remote_results_ready(self, theurl, params): + print('MockFailedCompute remote_results_ready', theurl, params) + with requests_mock.Mocker() as mock: + mock.register_uri('GET', '/dropq_query_result', text='FAIL') + return Compute.remote_results_ready(self, theurl, params) + + +class MockFailedComputeOnOldHost(MockCompute): + """ + Simulate requesting results from a host IP that is no longer used. This + action should raise a `ConnectionError` + """ + + def remote_results_ready(self, theurl, params): + print('MockFailedComputeOnOldHost remote_results_ready', + theurl, params) + raise requests.ConnectionError() + + +class NodeDownCompute(MockCompute): + + __slots__ = ('count', 'num_times_to_wait', 'switch') + + def __init__(self, **kwargs): + if 'switch' in kwargs: + self.switch = kwargs['switch'] + del kwargs['switch'] + else: + self.switch = 0 + self.count = 0 + self.num_times_to_wait = 0 + super(MockCompute, self).__init__(**kwargs) + + def remote_submit_job(self, theurl, data, timeout, headers=None): + with requests_mock.Mocker() as mock: + resp = {'job_id': '424242', 'qlength': 2} + resp = json.dumps(resp) + if (self.switch % 2 == 0): + mock.register_uri('POST', DROPQ_URL, status_code=502) + mock.register_uri( + 'POST', + '/elastic_gdp_start_job', + status_code=502) + mock.register_uri('POST', '/btax_start_job', status_code=502) + else: + mock.register_uri('POST', DROPQ_URL, text=resp) + mock.register_uri('POST', '/elastic_gdp_start_job', text=resp) + mock.register_uri('POST', '/btax_start_job', text=resp) + self.switch += 1 + self.last_posted = data + return Compute.remote_submit_job(self, theurl, data, timeout) diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py index 91c8a384..c92becdf 100644 --- a/webapp/apps/core/models.py +++ b/webapp/apps/core/models.py @@ -4,10 +4,10 @@ import uuid -class CoreRun(models.Model): - outputs = JSONField(default=None, blank=True, null=True) - uuid = models.UUIDField( - default=uuid.uuid4, - editable=False, - max_length=32, - unique=True) +# class CoreRun(models.Model): +# outputs = JSONField(default=None, blank=True, null=True) +# uuid = models.UUIDField( +# default=uuid.uuid4, +# editable=False, +# max_length=32, +# unique=True) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index d0f2cc8d..0fb086f3 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,12 +1,16 @@ +import traceback +import json from django.shortcuts import render, get_object_or_404 from django.http import JsonResponse from django.utils import timezone -from .models import CoreRun +# from .models import CoreRun from ..taxbrain.models import OutputUrl from .compute import Compute, JobFailError from ..formatters import get_version from ..taxbrain.views import TAXCALC_VERSION, WEBAPP_VERSION, dropq_compute +from ..taxbrain.param_formatters import to_json_reform +from ..constants import START_YEAR from django.shortcuts import (render, render_to_response, get_object_or_404, redirect) from django.template.context import RequestContext @@ -43,21 +47,7 @@ def output_detail(request, pk): 'webapp_version': webapp_vers_disp} if model.tax_result: # try to render table; if failure render not available page - try: - context = get_result_context(model, request, url) - except Exception as e: - print('Exception rendering pk', pk, e) - traceback.print_exc() - edit_href = '/taxbrain/edit/{}/?start_year={}'.format( - pk, - model.first_year or START_YEAR # sometimes first_year is None - ) - not_avail_context = dict(edit_href=edit_href, - **context_vers_disp) - return render( - request, - 'taxbrain/not_avail.html', - not_avail_context) + context = get_result_context(model, request, url) context.update(context_vers_disp) return render(request, 'taxbrain/results.html', context) @@ -65,8 +55,7 @@ def output_detail(request, pk): return render(request, 'taxbrain/failed.html', {"error_msg": model.error_text.text}) else: - job_ids = model.job_ids - + job_ids = model.job_ids try: jobs_ready = dropq_compute.results_ready(job_ids) except JobFailError as jfe: diff --git a/webapp/apps/taxbrain/tests/test_views.py b/webapp/apps/taxbrain/tests/test_views.py index 52f8c88e..33d33a41 100644 --- a/webapp/apps/taxbrain/tests/test_views.py +++ b/webapp/apps/taxbrain/tests/test_views.py @@ -8,9 +8,9 @@ from ..models import TaxSaveInputs, OutputUrl, WorkerNodesCounter from ..helpers import (expand_1D, expand_2D, expand_list, package_up_vars, format_csv, arrange_totals_by_row, default_taxcalc_data) -from ..compute import (DropqCompute, MockCompute, MockFailedCompute, - NodeDownCompute, MockFailedComputeOnOldHost) -from ..views import get_result_context +from ...core.compute import (Compute, MockCompute, MockFailedCompute, + NodeDownCompute, MockFailedComputeOnOldHost) +from ...core.views import get_result_context import taxcalc from ...test_assets.utils import (check_posted_params, do_micro_sim, diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index 67549fd9..a106b6c0 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -28,8 +28,8 @@ from .helpers import (taxcalc_results_to_tables, format_csv, json_int_key_encode, make_bool) from .param_displayers import nested_form_parameters -from ..core.compute import (Compute, MockCompute, JobFailError, NUM_BUDGET_YEARS, - NUM_BUDGET_YEARS_QUICK, WORKER_HN) +from ..core.compute import (Compute, MockCompute, JobFailError, + NUM_BUDGET_YEARS, NUM_BUDGET_YEARS_QUICK) from ..constants import (DISTRIBUTION_TOOLTIP, DIFFERENCE_TOOLTIP, PAYROLL_TOOLTIP, INCOME_TOOLTIP, BASE_TOOLTIP, diff --git a/webapp/apps/test_assets/utils.py b/webapp/apps/test_assets/utils.py index 96a35810..1b730a49 100644 --- a/webapp/apps/test_assets/utils.py +++ b/webapp/apps/test_assets/utils.py @@ -3,7 +3,7 @@ import ast import msgpack -from ..taxbrain.compute import MockCompute +from ..core.compute import MockCompute from ..taxbrain.models import OutputUrl from ..taxbrain.forms import TaxBrainForm From 0db2d67b61dd932e14d4325c5a3006a8f5080245 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Wed, 25 Jul 2018 10:04:53 -0400 Subject: [PATCH 13/66] Move MockCompute to different directory --- webapp/apps/core/compute.py | 104 ---------------------- webapp/apps/core/views.py | 2 - webapp/apps/taxbrain/mock_compute.py | 108 +++++++++++++++++++++++ webapp/apps/taxbrain/tests/test_views.py | 5 +- webapp/apps/taxbrain/views.py | 4 +- webapp/apps/test_assets/utils.py | 6 +- 6 files changed, 118 insertions(+), 111 deletions(-) create mode 100644 webapp/apps/taxbrain/mock_compute.py diff --git a/webapp/apps/core/compute.py b/webapp/apps/core/compute.py index f5224b67..1410144c 100644 --- a/webapp/apps/core/compute.py +++ b/webapp/apps/core/compute.py @@ -1,7 +1,6 @@ import os import requests import msgpack -import json from requests.exceptions import RequestException, Timeout import requests_mock requests_mock.Mocker.TEST_PREFIX = 'dropq' @@ -150,106 +149,3 @@ def get_results(self, job_ids, job_failure=False): results[x][name] = (results[x][name] if name in results[x] else '') + result[x][name] return results - - -class MockCompute(Compute): - - num_budget_years = NUM_BUDGET_YEARS - __slots__ = ('count', 'num_times_to_wait', 'last_posted') - - def __init__(self, num_times_to_wait=0): - self.count = 0 - # Number of times to respond 'No' before - # replying that a job is ready - self.num_times_to_wait = num_times_to_wait - - def remote_submit_job(self, theurl, data, timeout, headers=None): - with requests_mock.Mocker() as mock: - resp = {'job_id': '424242', 'qlength': 2} - resp = json.dumps(resp) - mock.register_uri('POST', DROPQ_URL, text=resp) - mock.register_uri('POST', DROPQ_SMALL_URL, text=resp) - mock.register_uri('POST', '/elastic_gdp_start_job', text=resp) - mock.register_uri('POST', '/btax_start_job', text=resp) - self.last_posted = data - return Compute.remote_submit_job(self, theurl, data, timeout) - - def remote_results_ready(self, theurl, params): - with requests_mock.Mocker() as mock: - if self.num_times_to_wait > 0: - mock.register_uri('GET', '/dropq_query_result', text='NO') - self.num_times_to_wait -= 1 - else: - mock.register_uri('GET', '/dropq_query_result', text='YES') - return Compute.remote_results_ready(self, theurl, params) - - def remote_retrieve_results(self, theurl, params): - mock_path = os.path.join(os.path.split(__file__)[0], "tests", - "response_year_{0}.json") - with open(mock_path.format(self.count), 'r') as f: - text = f.read() - self.count += 1 - with requests_mock.Mocker() as mock: - mock.register_uri('GET', '/dropq_get_result', text=text) - return Compute.remote_retrieve_results(self, theurl, params) - - def reset_count(self): - """ - reset worker node count - """ - self.count = 0 - - -class MockFailedCompute(MockCompute): - - def remote_results_ready(self, theurl, params): - print('MockFailedCompute remote_results_ready', theurl, params) - with requests_mock.Mocker() as mock: - mock.register_uri('GET', '/dropq_query_result', text='FAIL') - return Compute.remote_results_ready(self, theurl, params) - - -class MockFailedComputeOnOldHost(MockCompute): - """ - Simulate requesting results from a host IP that is no longer used. This - action should raise a `ConnectionError` - """ - - def remote_results_ready(self, theurl, params): - print('MockFailedComputeOnOldHost remote_results_ready', - theurl, params) - raise requests.ConnectionError() - - -class NodeDownCompute(MockCompute): - - __slots__ = ('count', 'num_times_to_wait', 'switch') - - def __init__(self, **kwargs): - if 'switch' in kwargs: - self.switch = kwargs['switch'] - del kwargs['switch'] - else: - self.switch = 0 - self.count = 0 - self.num_times_to_wait = 0 - super(MockCompute, self).__init__(**kwargs) - - def remote_submit_job(self, theurl, data, timeout, headers=None): - with requests_mock.Mocker() as mock: - resp = {'job_id': '424242', 'qlength': 2} - resp = json.dumps(resp) - if (self.switch % 2 == 0): - mock.register_uri('POST', DROPQ_URL, status_code=502) - mock.register_uri( - 'POST', - '/elastic_gdp_start_job', - status_code=502) - mock.register_uri('POST', '/btax_start_job', status_code=502) - else: - mock.register_uri('POST', DROPQ_URL, text=resp) - mock.register_uri('POST', '/elastic_gdp_start_job', text=resp) - mock.register_uri('POST', '/btax_start_job', text=resp) - self.switch += 1 - self.last_posted = data - return Compute.remote_submit_job(self, theurl, data, timeout) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 0fb086f3..04d160c2 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,5 +1,3 @@ -import traceback -import json from django.shortcuts import render, get_object_or_404 from django.http import JsonResponse diff --git a/webapp/apps/taxbrain/mock_compute.py b/webapp/apps/taxbrain/mock_compute.py new file mode 100644 index 00000000..1b7d01b0 --- /dev/null +++ b/webapp/apps/taxbrain/mock_compute.py @@ -0,0 +1,108 @@ +import os +from ..core.compute import Compute +import requests_mock +import json +from ..core.compute import (NUM_BUDGET_YEARS, DROPQ_URL, DROPQ_SMALL_URL) + + +class MockCompute(Compute): + + num_budget_years = NUM_BUDGET_YEARS + __slots__ = ('count', 'num_times_to_wait', 'last_posted') + + def __init__(self, num_times_to_wait=0): + self.count = 0 + # Number of times to respond 'No' before + # replying that a job is ready + self.num_times_to_wait = num_times_to_wait + + def remote_submit_job(self, theurl, data, timeout, headers=None): + with requests_mock.Mocker() as mock: + resp = {'job_id': '424242', 'qlength': 2} + resp = json.dumps(resp) + mock.register_uri('POST', DROPQ_URL, text=resp) + mock.register_uri('POST', DROPQ_SMALL_URL, text=resp) + mock.register_uri('POST', '/elastic_gdp_start_job', text=resp) + mock.register_uri('POST', '/btax_start_job', text=resp) + self.last_posted = data + return Compute.remote_submit_job(self, theurl, data, timeout) + + def remote_results_ready(self, theurl, params): + with requests_mock.Mocker() as mock: + if self.num_times_to_wait > 0: + mock.register_uri('GET', '/dropq_query_result', text='NO') + self.num_times_to_wait -= 1 + else: + mock.register_uri('GET', '/dropq_query_result', text='YES') + return Compute.remote_results_ready(self, theurl, params) + + def remote_retrieve_results(self, theurl, params): + mock_path = os.path.join(os.path.split(__file__)[0], "tests", + "response_year_{0}.json") + with open(mock_path.format(self.count), 'r') as f: + text = f.read() + self.count += 1 + with requests_mock.Mocker() as mock: + mock.register_uri('GET', '/dropq_get_result', text=text) + return Compute.remote_retrieve_results(self, theurl, params) + + def reset_count(self): + """ + reset worker node count + """ + self.count = 0 + + +class MockFailedCompute(MockCompute): + + def remote_results_ready(self, theurl, params): + print('MockFailedCompute remote_results_ready', theurl, params) + with requests_mock.Mocker() as mock: + mock.register_uri('GET', '/dropq_query_result', text='FAIL') + return Compute.remote_results_ready(self, theurl, params) + + +class MockFailedComputeOnOldHost(MockCompute): + """ + Simulate requesting results from a host IP that is no longer used. This + action should raise a `ConnectionError` + """ + + def remote_results_ready(self, theurl, params): + print('MockFailedComputeOnOldHost remote_results_ready', + theurl, params) + raise requests.ConnectionError() + + +class NodeDownCompute(MockCompute): + + __slots__ = ('count', 'num_times_to_wait', 'switch') + + def __init__(self, **kwargs): + if 'switch' in kwargs: + self.switch = kwargs['switch'] + del kwargs['switch'] + else: + self.switch = 0 + self.count = 0 + self.num_times_to_wait = 0 + super(MockCompute, self).__init__(**kwargs) + + def remote_submit_job(self, theurl, data, timeout, headers=None): + with requests_mock.Mocker() as mock: + resp = {'job_id': '424242', 'qlength': 2} + resp = json.dumps(resp) + if (self.switch % 2 == 0): + mock.register_uri('POST', DROPQ_URL, status_code=502) + mock.register_uri( + 'POST', + '/elastic_gdp_start_job', + status_code=502) + mock.register_uri('POST', '/btax_start_job', status_code=502) + else: + mock.register_uri('POST', DROPQ_URL, text=resp) + mock.register_uri('POST', '/elastic_gdp_start_job', text=resp) + mock.register_uri('POST', '/btax_start_job', text=resp) + self.switch += 1 + self.last_posted = data + return Compute.remote_submit_job(self, theurl, data, timeout) diff --git a/webapp/apps/taxbrain/tests/test_views.py b/webapp/apps/taxbrain/tests/test_views.py index 33d33a41..cf43543a 100644 --- a/webapp/apps/taxbrain/tests/test_views.py +++ b/webapp/apps/taxbrain/tests/test_views.py @@ -8,8 +8,9 @@ from ..models import TaxSaveInputs, OutputUrl, WorkerNodesCounter from ..helpers import (expand_1D, expand_2D, expand_list, package_up_vars, format_csv, arrange_totals_by_row, default_taxcalc_data) -from ...core.compute import (Compute, MockCompute, MockFailedCompute, - NodeDownCompute, MockFailedComputeOnOldHost) +from ...core.compute import Compute +from ..mock_compute import (MockCompute, MockFailedCompute, + NodeDownCompute, MockFailedComputeOnOldHost) from ...core.views import get_result_context import taxcalc diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index a106b6c0..171c92ee 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -2,7 +2,6 @@ import pdfkit import json import os -import traceback from mock import Mock @@ -28,8 +27,9 @@ from .helpers import (taxcalc_results_to_tables, format_csv, json_int_key_encode, make_bool) from .param_displayers import nested_form_parameters -from ..core.compute import (Compute, MockCompute, JobFailError, +from ..core.compute import (Compute, JobFailError, NUM_BUDGET_YEARS, NUM_BUDGET_YEARS_QUICK) +from .mock_compute import MockCompute from ..constants import (DISTRIBUTION_TOOLTIP, DIFFERENCE_TOOLTIP, PAYROLL_TOOLTIP, INCOME_TOOLTIP, BASE_TOOLTIP, diff --git a/webapp/apps/test_assets/utils.py b/webapp/apps/test_assets/utils.py index 1b730a49..08c5a8e7 100644 --- a/webapp/apps/test_assets/utils.py +++ b/webapp/apps/test_assets/utils.py @@ -3,7 +3,7 @@ import ast import msgpack -from ..core.compute import MockCompute +from ..taxbrain.mock_compute import MockCompute from ..taxbrain.models import OutputUrl from ..taxbrain.forms import TaxBrainForm @@ -21,6 +21,10 @@ def get_dropq_compute_from_module(module_import_path, attr='dropq_compute', returns: mocked dropq compute object """ + # Temporary hack + if module_import_path == "webapp.apps.taxbrain.views": + get_dropq_compute_from_module("webapp.apps.core.views", attr, + MockComputeObj, **mc_args) module_views = sys.modules[module_import_path] setattr(module_views, attr, MockComputeObj(**mc_args)) return getattr(module_views, attr) From c015cbe57495362ce3287b7fb83cef0c4196006f Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Wed, 25 Jul 2018 11:08:49 -0400 Subject: [PATCH 14/66] Fix test compatibility for new outputs given removal of round-robin behavior --- webapp/apps/btax/tests/test_views.py | 9 ----- webapp/apps/core/views.py | 3 +- webapp/apps/taxbrain/models.py | 12 ------ .../apps/taxbrain/tests/response_year_0.json | 2 +- .../apps/taxbrain/tests/response_year_1.json | 2 +- .../apps/taxbrain/tests/response_year_2.json | 2 +- .../apps/taxbrain/tests/response_year_3.json | 2 +- .../apps/taxbrain/tests/response_year_4.json | 2 +- .../apps/taxbrain/tests/response_year_5.json | 2 +- .../apps/taxbrain/tests/response_year_6.json | 2 +- .../apps/taxbrain/tests/response_year_7.json | 2 +- .../apps/taxbrain/tests/response_year_8.json | 2 +- .../apps/taxbrain/tests/response_year_9.json | 2 +- webapp/apps/taxbrain/tests/test_all.py | 40 ------------------- webapp/apps/taxbrain/tests/test_views.py | 23 +---------- webapp/apps/test_assets/utils.py | 2 - 16 files changed, 14 insertions(+), 95 deletions(-) diff --git a/webapp/apps/btax/tests/test_views.py b/webapp/apps/btax/tests/test_views.py index 208202a2..fddf08f9 100644 --- a/webapp/apps/btax/tests/test_views.py +++ b/webapp/apps/btax/tests/test_views.py @@ -3,7 +3,6 @@ from ..models import BTaxSaveInputs, BTaxOutputUrl from ..forms import BTaxExemptionForm -from ...taxbrain.models import WorkerNodesCounter from ..compute import (DropqComputeBtax, MockComputeBtax, MockFailedComputeBtax, NodeDownComputeBtax) from ...btax import views @@ -98,14 +97,6 @@ def test_btax_submit_to_single_host(self): Ensure that Btax submission does not advance the worker node counter, nor use the dropq_offset """ - - # Set the worker node count to 1, which would error if we used - # that for BTax, since there is only a single node - wnc, created = WorkerNodesCounter.objects.get_or_create( - singleton_enforce=1) - wnc.current_offset = 1 - wnc.save() - # Monkey patch to mock out running of compute jobs import sys webapp_views = sys.modules['webapp.apps.btax.views'] diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 04d160c2..787ee0bd 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -1,6 +1,7 @@ from django.shortcuts import render, get_object_or_404 from django.http import JsonResponse +import json from django.utils import timezone # from .models import CoreRun from ..taxbrain.models import OutputUrl @@ -8,7 +9,7 @@ from ..formatters import get_version from ..taxbrain.views import TAXCALC_VERSION, WEBAPP_VERSION, dropq_compute from ..taxbrain.param_formatters import to_json_reform -from ..constants import START_YEAR +from ..taxbrain.models import ErrorMessageTaxCalculator from django.shortcuts import (render, render_to_response, get_object_or_404, redirect) from django.template.context import RequestContext diff --git a/webapp/apps/taxbrain/models.py b/webapp/apps/taxbrain/models.py index ff7659a3..639503d4 100644 --- a/webapp/apps/taxbrain/models.py +++ b/webapp/apps/taxbrain/models.py @@ -1011,18 +1011,6 @@ class Meta: ) -class WorkerNodesCounter(models.Model): - ''' - This class specifies a counter for which set of worker nodes we have - just deployed a TaxBrain job to. It is a singleton class to enforce - round robin behavior with multiple dynos running simultaneously. The - database becomes the single source of truth for which set of nodes - just got the last dispatch - ''' - singleton_enforce = models.IntegerField(default=1, unique=True) - current_offset = models.IntegerField(default=0) - - class OutputUrl(models.Model): """ This model creates a unique url for each calculation. diff --git a/webapp/apps/taxbrain/tests/response_year_0.json b/webapp/apps/taxbrain/tests/response_year_0.json index 2d2aa79c..328334a7 100644 --- a/webapp/apps/taxbrain/tests/response_year_0.json +++ b/webapp/apps/taxbrain/tests/response_year_0.json @@ -1 +1 @@ -{"aggr_1": {"combined_tax_0": "2321866939492.54", "payroll_tax_0": "1192635665901.18", "ind_tax_0": "1129231273591.36"}, "aggr_2": {"combined_tax_0": "3332036952282.61", "payroll_tax_0": "1766195081640.81", "ind_tax_0": "1565841870641.80"}, "diff_ptax_xdec": {"0-10p_0": ["15673654.76", "0.00", "0.00", "11485068.03", "73.28", "275.30", "4314960461.53", "0.75", "200906257190.00", "30425136665.14", "30425136665.14", "197.72"], "ALL_0": ["169894839.66", "281.44", "0.00", "129032030.00", "75.95", "3375.97", "573559415739.63", "100.00", "3413296005370.00", "2616680906895.63", "2616680906895.63", "22.65"], "0-10n_0": ["90427.26", "0.00", "0.00", "19563.44", "21.63", "244.80", "22136892.07", "0.00", "1790679510.00", "908731509.20", "908731509.20", "-7.14"], "20-30_0": ["16990282.62", "0.00", "0.00", "11876552.91", "69.90", "1175.14", "19966016862.73", "3.48", "278217585800.00", "158461222531.18", "158461222531.18", "53.57"], "Top 1%_0": ["1698996.80", "281.44", "0.02", "1479540.82", "87.08", "10722.39", "18217310646.01", "3.18", "45386332000.00", "76541047252.57", "76541047252.57", "2.00"], "30-40_0": ["16989448.14", "0.00", "0.00", "12466925.64", "73.38", "1624.38", "27597348067.48", "4.81", "299486558780.00", "189964142655.40", "189964142655.40", "43.55"], "50-60_0": ["16989557.82", "0.00", "0.00", "13391933.62", "78.82", "2866.42", "48699201851.79", "8.49", "353301201150.00", "251719994004.00", "251719994004.00", "31.06"], "80-90_0": ["16989260.15", "0.00", "0.00", "14015385.49", "82.50", "6668.50", "113292950213.44", "19.75", "434556798720.00", "419751646923.69", "419751646923.69", "14.79"], "90-100_0": ["16989877.64", "281.44", "0.00", "14625658.74", "86.08", "9728.92", "165293216405.75", "28.82", "455946403650.00", "572708885641.97", "572708885641.97", "6.71"], "40-50_0": ["16988974.73", "0.00", "0.00", "12989711.60", "76.46", "2188.82", "37185886630.14", "6.48", "328727946880.00", "217044123787.93", "217044123787.93", "37.18"], "10-20_0": ["16988533.64", "0.00", "0.00", "11026138.03", "64.90", "710.39", "12068472549.80", "2.10", "253301665550.00", "124466577632.84", "124466577632.84", "73.95"], "0-10z_0": ["1225391.76", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "22154353630.00", "0.00", "0.00", "inf"], "90-95_0": ["8494789.06", "0.00", "0.00", "7224966.68", "85.05", "8781.26", "74594924143.72", "13.01", "225687428000.00", "248541466062.95", "248541466062.95", "10.42"], "70-80_0": ["16989502.78", "0.00", "0.00", "13694741.41", "80.61", "4867.15", "82690515967.48", "14.42", "406911329340.00", "349809811791.48", "349809811791.48", "20.17"], "60-70_0": ["16989928.36", "0.00", "0.00", "13440351.09", "79.11", "3674.45", "62428709837.41", "10.88", "377995225170.00", "301420633752.80", "301420633752.80", "25.69"], "95-99_0": ["6796091.78", "0.00", "0.00", "5921151.24", "87.13", "10665.10", "72480981616.03", "12.64", "184872643650.00", "247626372326.45", "247626372326.45", "6.68"]}, "diff_comb_xbin": {"$200-500K_0": ["10728818.51", "0.00", "0.00", "10379583.44", "96.74", "16242.08", "174258325361.04", "17.25", "290004412980.00", "384016597460.22", "384016597460.22", "7.13"], ">$1000K_0": ["295092.74", "127.74", "0.04", "294714.81", "99.87", "19977.08", "5895090999.45", "0.58", "7861478580.00", "4796983863.11", "4796983863.11", "0.79"], "ALL_0": ["169894839.66", "127.74", "0.00", "143988706.44", "84.75", "5945.85", "1010170012790.07", "100.00", "3413296005370.00", "2616680906895.63", "2616680906895.63", "22.65"], "<$0K_0": ["90427.26", "0.00", "0.00", "22624.71", "25.02", "406.35", "36745170.94", "0.00", "1790679510.00", "908731509.20", "908731509.20", "-7.14"], "$30-40K_0": ["18210151.42", "0.00", "0.00", "14340295.26", "78.75", "3243.01", "59055657321.76", "5.85", "316709582490.00", "196083791056.75", "196083791056.75", "45.10"], "$20-30K_0": ["19009874.38", "0.00", "0.00", "13623277.89", "71.66", "2433.43", "46259182938.90", "4.58", "302646589400.00", "172813898019.04", "172813898019.04", "57.44"], "$500-1000K_0": ["887906.39", "0.00", "0.00", "877314.83", "98.81", "18447.48", "16379636701.67", "1.62", "23439572850.00", "44316413706.96", "44316413706.96", "2.45"], "$75-100K_0": ["18792790.37", "0.00", "0.00", "17188632.93", "91.46", "6872.41", "129151853342.80", "12.79", "428916937500.00", "349715855610.97", "349715855610.97", "23.75"], "$100-200K_0": ["32049054.39", "0.00", "0.00", "30397885.37", "94.85", "10905.54", "349512329901.41", "34.60", "811621436250.00", "771999583579.09", "771999583579.09", "15.11"], "$10-20K_0": ["14612748.64", "0.00", "0.00", "10435470.70", "71.41", "1535.06", "22431435038.10", "2.22", "212625463430.00", "86035261880.97", "86035261880.97", "86.31"], "=$0K_0": ["1225391.76", "0.00", "0.00", "361628.17", "29.51", "349.10", "427782191.30", "0.04", "22154353630.00", "0.00", "0.00", "inf"], "$0-10K_0": ["12211721.88", "0.00", "0.00", "9795876.56", "80.22", "739.67", "9032621174.46", "0.89", "152150784250.00", "17933835711.34", "17933835711.34", "257.05"], "$40-50K_0": ["14502946.28", "0.00", "0.00", "12158849.58", "83.84", "3943.92", "57198424050.63", "5.66", "275561049520.00", "180137390529.14", "180137390529.14", "38.67"], "$50-75K_0": ["27277915.64", "0.00", "0.00", "24112552.19", "88.40", "5151.82", "140530928597.61", "13.91", "567813664980.00", "407922563968.84", "407922563968.84", "30.94"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"0-10p_0": ["15673654.76", "265157418465.42", "15254832.17", "191757073779.58", "412426.43", "4422597289.44", "0.00", "84896784688.66", "8504377816.48", "261015600111.24", "4039240.73", "3694013802.57", "12198391619.05", "4212012558.58", "0.00", "6037542781.68", "1948836278.79", "13009845510.22", "14958681789.01", "200906257190.00", "30425136665.14", "30425136665.14", "299014265462.38", "284055583673.36"], "ALL_0": ["169894839.66", "14018224449358.13", "150954288.92", "3120507867971.09", "18806288.15", "550983261987.55", "0.00", "10408550218044.07", "1716340550702.34", "13619355501168.27", "7510354.28", "10065689915.51", "1726406240617.85", "140692102635.34", "8445993599.10", "28318260939.81", "1565841870641.80", "1766195081640.81", "3332036952282.61", "3413296005370.00", "2616680906895.63", "2616680906895.63", "17513602081751.37", "14181565129468.76"], "0-10n_0": ["90427.26", "-10712214577.88", "16212.42", "1828309899.45", "60.49", "7771020.73", "0.00", "736477186.34", "180092298.84", "-10719380698.60", "0.00", "0.00", "180092298.84", "969770.37", "1895178.32", "231788.85", "180785917.95", "69404739.07", "250190657.02", "1790679510.00", "908731509.20", "908731509.20", "-21904743136.63", "-22154933793.65"], "20-30_0": ["16990282.62", "558290624083.14", "16594304.76", "299425890436.25", "389757.48", "8525644675.29", "0.00", "264398663650.74", "28545147869.76", "550847685705.70", "581777.45", "959699765.78", "29504847635.54", "9224983924.00", "0.00", "5314000932.32", "14965862779.22", "60597791996.22", "75563654775.44", "278217585800.00", "158461222531.18", "158461222531.18", "749652930142.28", "674089275366.85"], "Top 1%_0": ["1698996.80", "1355251758785.23", "591744.85", "15971953337.20", "1107201.87", "46165677559.98", "0.00", "1287738656896.29", "333960477451.21", "1320270060920.66", "97541.61", "954461337.63", "334914938788.84", "239461653.19", "7108983836.90", "29033525.29", "341755427447.25", "74851012323.54", "416606439770.79", "45386332000.00", "76541047252.57", "76541047252.57", "1482520666389.98", "1065914226619.19"], "30-40_0": ["16989448.14", "691134382738.39", "16465037.09", "314504786611.06", "515657.97", "10963834522.60", "0.00", "373559403206.65", "41265950131.02", "681915686760.37", "334568.53", "627853288.50", "41893803419.52", "11586311371.39", "0.00", "3216999388.69", "27090492659.44", "83753316496.67", "110843809156.11", "299486558780.00", "189964142655.40", "189964142655.40", "927849870834.67", "817006061678.56"], "50-60_0": ["16989557.82", "1083573843334.16", "15851339.18", "345131033494.70", "1130788.97", "27492256777.41", "0.00", "714125673815.94", "89641635402.48", "1062020477230.69", "144662.52", "391873938.53", "90033509341.01", "16479647656.36", "0.00", "1350780245.27", "72203081439.37", "147253976075.48", "219457057514.84", "353301201150.00", "251719994004.00", "251719994004.00", "1407544013090.07", "1188086955575.22"], "80-90_0": ["16989260.15", "2303582037227.91", "12921932.67", "339165280359.22", "4062689.57", "124314300117.80", "0.00", "1833996894381.26", "288987967584.47", "2217781410289.40", "79857.16", "171101132.04", "289159068716.51", "20988266753.89", "1859.46", "295946867.86", "267874856954.22", "342666896489.81", "610541753444.03", "434556798720.00", "419751646923.69", "419751646923.69", "2884913559740.24", "2274371806296.21"], "90-100_0": ["16989877.64", "4729986346024.50", "9772967.91", "266919672904.80", "7214889.78", "247263901935.89", "0.00", "4198693241422.78", "870979282101.61", "4554526288468.60", "232347.50", "1280946101.60", "872260228203.22", "20003319958.87", "8444096561.32", "218300248.22", "860482704557.45", "531350047790.45", "1391832752347.90", "455946403650.00", "572708885641.97", "572708885641.97", "5601782990599.73", "4209950238251.83"], "40-50_0": ["16988974.73", "868813453539.67", "16161175.15", "330704212308.15", "820064.36", "18260864196.95", "0.00", "524205757981.11", "60647599461.11", "854048538088.35", "237544.79", "507529218.59", "61155128679.69", "14729297707.72", "0.00", "2033207140.81", "44392623831.16", "112608454258.41", "157001078089.57", "328727946880.00", "217044123787.93", "217044123787.93", "1146478368893.22", "989477290803.65"], "10-20_0": ["16988533.64", "422797826143.09", "16664785.30", "282945942574.83", "316005.82", "5330970610.39", "0.00", "156221087464.88", "16231453051.57", "418016745265.00", "1401674.34", "1558049287.39", "17789502338.96", "5930118337.10", "0.00", "8556405374.26", "3302978627.60", "36469725355.52", "39772703983.12", "253301665550.00", "124466577632.84", "124466577632.84", "564458822541.45", "524686118558.34"], "0-10z_0": ["1225391.76", "22129361458.85", "1214024.70", "24078375409.74", "11048.12", "16333857.99", "0.00", "2172376221.11", "223819877.14", "22114984089.69", "310705.35", "418572904.86", "642392781.99", "214610590.69", "0.00", "0.00", "427782191.30", "0.00", "427782191.30", "22154353630.00", "0.00", "0.00", "22154353630.00", "21726571438.70"], "90-95_0": ["8494789.06", "1560564707347.31", "5578505.17", "152198014477.84", "2915027.75", "93208962690.25", "0.00", "1310610239255.23", "227643534372.13", "1496138768190.37", "52713.20", "93840338.25", "227737374710.38", "10841823376.49", "33533600.25", "95979499.65", "216833105434.49", "227807093885.79", "444640199320.28", "225687428000.00", "248541466062.95", "248541466062.95", "1927408510027.46", "1482768310707.18"], "70-80_0": ["16989502.78", "1730089662848.95", "14648584.51", "364887892152.49", "2337896.77", "63649303647.23", "0.00", "1300844492225.63", "185063040244.72", "1684884690441.09", "54683.93", "182210226.22", "185245250470.94", "19449698102.77", "0.00", "493040650.76", "165302511717.41", "249745833056.12", "415048344773.54", "406911329340.00", "349809811791.48", "349809811791.48", "2189770108050.36", "1774721763276.82"], "60-70_0": ["16989928.36", "1353381708071.92", "15389093.06", "359159398040.82", "1595002.39", "40735483335.83", "0.00", "954699365798.95", "126070184863.15", "1322902775416.72", "93291.98", "273840249.43", "126344025112.58", "17872865903.59", "0.00", "801805521.10", "107669353687.89", "188669789872.85", "296339143560.73", "377995225170.00", "301420633752.80", "301420633752.80", "1741887541903.60", "1445548398342.87"], "95-99_0": ["6796091.78", "1814169879891.96", "3602717.89", "98749705089.75", "3192660.16", "107889261685.66", "0.00", "1600344345271.26", "309375270278.28", "1738117459357.57", "82092.69", "232644425.72", "309607914704.00", "8922034929.18", "1301579124.17", "93287223.28", "301894171675.71", "228691941581.12", "530586113256.83", "184872643650.00", "247626372326.45", "247626372326.45", "2191853814182.28", "1661267700925.46"]}, "aggr_d": {"combined_tax_0": "1010170012790.07", "payroll_tax_0": "573559415739.63", "ind_tax_0": "436610597050.44"}, "dropq_version": "0.17.0", "dist1_xdec": {"0-10p_0": ["15673654.76", "64265530407.67", "13216228.73", "161303964618.31", "26250.45", "225493195.83", "0.00", "1975635311.95", "112492842.26", "64049901418.94", "8597.66", "3410702.03", "115903544.29", "53208609.60", "0.00", "7400160672.92", "-7337465738.23", "8694885048.69", "1357419310.45", "0.00", "31226457564.17", "31226457564.17", "96766218072.88", "95408798762.43"], "ALL_0": ["169894839.66", "10616441220861.59", "123395131.17", "2410147980196.81", "28372089.99", "766191191172.27", "0.00", "7976275510936.35", "1311865772367.50", "10077571048458.18", "446327.07", "1755195797.55", "1313620968165.06", "98415627126.58", "8006195556.30", "93980263003.41", "1129231273591.36", "1192635665901.18", "2321866939492.54", "0.00", "2676084867327.52", "2676084867327.52", "13884223006167.28", "11562356066674.74"], "0-10n_0": ["90427.26", "-12500573891.09", "4827.02", "1529553369.45", "60.49", "7771020.73", "0.00", "671006879.11", "165106340.72", "-12507740011.82", "0.00", "0.00", "165106340.72", "657085.00", "1895178.32", "166794.96", "166177639.08", "47267847.00", "213445486.08", "0.00", "966957561.71", "966957561.71", "-23645944843.36", "-23859390329.44"], "20-30_0": ["16989457.99", "280814820190.94", "13548554.89", "242959525927.10", "559808.14", "10824475896.78", "0.00", "104880976830.15", "10628810360.45", "271568213889.10", "32852.01", "42801544.20", "10671611904.65", "2796973091.54", "0.00", "19171921960.99", "-11297283147.87", "40628029832.41", "29330746684.54", "0.00", "164536207092.53", "164536207092.53", "468267883508.13", "438937136823.59"], "Top 1%_0": ["1698996.80", "1310997348585.57", "452646.50", "10968648403.14", "1222243.41", "49141230714.54", "0.00", "1245883848605.97", "320336726433.93", "1274148541137.19", "98149.00", "897408082.67", "321234134516.60", "323521433.44", "7036039982.29", "140885479.98", "327805767585.47", "56633701677.54", "384439469263.00", "0.00", "76904193848.83", "76904193848.83", "1429490593673.96", "1045051124410.95"], "30-40_0": ["16990272.77", "392728966960.51", "14140581.85", "256122340061.62", "716931.67", "13693794653.68", "0.00", "187506813839.83", "19823184055.70", "381460873434.66", "30066.58", "63971899.62", "19887155955.32", "4943963132.92", "0.00", "16952470565.36", "-2009277742.97", "56159713730.26", "54150435987.29", "0.00", "197629238915.56", "197629238915.56", "623305736711.47", "569155300724.18"], "50-60_0": ["16989557.82", "731219474972.64", "13820951.38", "276361280950.14", "1977962.81", "40177552143.60", "0.00", "457596088372.60", "52851391681.15", "701122205101.55", "35246.26", "111397183.36", "52962788864.51", "10932827505.52", "0.00", "8782113490.98", "33247847868.01", "98554774223.69", "131802622091.70", "0.00", "259220605898.18", "259220605898.18", "1038298598738.50", "906495976646.81"], "80-90_0": ["16989260.15", "1870757671590.35", "9699620.03", "231300130817.02", "6724306.86", "188038142122.03", "0.00", "1463344791915.37", "211680785399.22", "1744699819810.91", "34778.97", "80105627.40", "211760891026.63", "19741430445.63", "0.00", "1700063990.83", "190319396590.17", "229373946276.37", "419693342866.54", "0.00", "425301859591.22", "425301859591.22", "2400974576677.43", "1981281233810.89"], "90-100_0": ["16989877.64", "4277740954962.87", "7209727.68", "176696962063.33", "9411013.48", "304690934107.85", "0.00", "3790185946261.95", "772011946514.11", "4065809069867.36", "186068.84", "1157142377.07", "773169088891.18", "19772502594.76", "8004300377.98", "1125572398.37", "760275314276.03", "366056831384.70", "1126332145660.72", "0.00", "577307021139.94", "577307021139.94", "5071442787045.97", "3945110641385.25"], "40-50_0": ["16988974.73", "541103077937.61", "14292432.42", "269441067713.93", "1167645.79", "23201921474.43", "0.00", "300605392300.82", "32308429116.86", "522794666244.78", "28248.56", "85981461.32", "32394410578.17", "7830276633.06", "0.00", "13638578539.67", "10925555405.44", "75422567628.26", "86348123033.70", "0.00", "224532263032.96", "224532263032.96", "807630966535.71", "721282843502.01"], "10-20_0": ["16988533.64", "169681316305.92", "12632023.59", "231231875573.34", "269986.61", "5240573648.38", "0.00", "34549217273.03", "3280385857.35", "164985377663.87", "39122.87", "24503493.18", "3304889350.53", "853635623.88", "0.00", "16803004302.51", "-14351750575.87", "24401252805.72", "10049502229.85", "0.00", "130833953890.81", "130833953890.81", "311675452687.35", "301625950457.50"], "0-10z_0": ["1225391.76", "-24992171.15", "0.00", "20187061459.74", "0.00", "0.00", "0.00", "0.00", "0.00", "-24992171.15", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "90-95_0": ["8494789.06", "1335979763342.60", "4108769.35", "100438009702.47", "4185124.41", "126303739137.51", "0.00", "1111340149566.24", "182957675907.76", "1250453458112.35", "30279.91", "55857292.59", "183013533200.36", "10590225194.80", "10612888.87", "481259786.27", "171952661108.16", "153212169742.07", "325164830850.23", "0.00", "251013704518.59", "251013704518.59", "1667990857781.61", "1342826026931.38"], "70-80_0": ["16989846.12", "1324266961649.08", "11825445.03", "266398635470.58", "4474201.47", "110886770002.66", "0.00", "970131717296.91", "125462291565.99", "1247280799709.53", "20583.15", "88955679.37", "125551247245.37", "17302374039.40", "0.00", "3098808019.10", "105150065186.86", "167059683353.12", "272209748539.98", "0.00", "356306689710.50", "356306689710.50", "1749069892493.29", "1476860143953.31"], "60-70_0": ["16989585.02", "976388011946.25", "13004738.55", "276615582172.27", "3043922.22", "69203762906.29", "0.00", "664827924654.64", "83540948633.69", "926332853500.44", "30762.17", "96925830.00", "83637874463.69", "14187778365.25", "0.00", "5307402267.71", "64142693830.72", "126236713770.96", "190379407601.69", "0.00", "308223612929.94", "308223612929.94", "1340436838539.91", "1150057430938.22"], "95-99_0": ["6796091.78", "1630763843034.70", "2648311.83", "65290303957.71", "4003645.66", "129245964255.80", "0.00", "1432961948089.75", "268717544172.42", "1541207070617.82", "57639.93", "203877001.80", "268921421174.22", "8858755966.53", "957647506.82", "503427132.11", "260516885582.40", "156210959965.09", "416727845547.49", "0.00", "249389122772.52", "249389122772.52", "1973961335590.41", "1557233490042.92"]}, "diff_comb_xdec": {"0-10p_0": ["15673654.76", "0.00", "0.00", "12578826.33", "80.25", "867.78", "13601262478.56", "1.35", "200906257190.00", "30425136665.14", "30425136665.14", "197.72"], "ALL_0": ["169894839.66", "127.74", "0.00", "143988706.44", "84.75", "5945.85", "1010170012790.07", "100.00", "3413296005370.00", "2616680906895.63", "2616680906895.63", "22.65"], "0-10n_0": ["90427.26", "0.00", "0.00", "22624.71", "25.02", "406.35", "36745170.94", "0.00", "1790679510.00", "908731509.20", "908731509.20", "-7.14"], "20-30_0": ["16990282.62", "0.00", "0.00", "12645424.73", "74.43", "2720.64", "46224366776.62", "4.58", "278217585800.00", "158461222531.18", "158461222531.18", "53.57"], "Top 1%_0": ["1698996.80", "127.74", "0.01", "1674346.71", "98.55", "18932.92", "32166970507.79", "3.18", "45386332000.00", "76541047252.57", "76541047252.57", "2.00"], "30-40_0": ["16989448.14", "0.00", "0.00", "13505582.45", "79.49", "3337.48", "56701914483.10", "5.61", "299486558780.00", "189964142655.40", "189964142655.40", "43.55"], "50-60_0": ["16989557.82", "0.00", "0.00", "15026369.37", "88.44", "5159.31", "87654435423.15", "8.68", "353301201150.00", "251719994004.00", "251719994004.00", "31.06"], "80-90_0": ["16989260.15", "0.00", "0.00", "16130925.27", "94.95", "11233.47", "190848410577.49", "18.89", "434556798720.00", "419751646923.69", "419751646923.69", "14.79"], "90-100_0": ["16989877.64", "127.74", "0.00", "16457038.25", "96.86", "15626.99", "265500606687.17", "26.28", "455946403650.00", "572708885641.97", "572708885641.97", "6.71"], "40-50_0": ["16988974.73", "0.00", "0.00", "14419350.43", "84.87", "4158.75", "70652955055.87", "6.99", "328727946880.00", "217044123787.93", "217044123787.93", "37.18"], "10-20_0": ["16988533.64", "0.00", "0.00", "11604936.61", "68.31", "1749.60", "29723201753.26", "2.94", "253301665550.00", "124466577632.84", "124466577632.84", "73.95"], "0-10z_0": ["1225391.76", "0.00", "0.00", "361628.17", "29.51", "349.10", "427782191.30", "0.04", "22154353630.00", "0.00", "0.00", "inf"], "90-95_0": ["8494789.06", "0.00", "0.00", "8188794.97", "96.40", "14064.55", "119475368470.05", "11.83", "225687428000.00", "248541466062.95", "248541466062.95", "10.42"], "70-80_0": ["16989502.78", "0.00", "0.00", "15830709.98", "93.18", "8408.16", "142850418596.85", "14.14", "406911329340.00", "349809811791.48", "349809811791.48", "20.17"], "60-70_0": ["16989928.36", "0.00", "0.00", "15405290.14", "90.67", "6235.92", "105947913595.75", "10.49", "377995225170.00", "301420633752.80", "301420633752.80", "25.69"], "95-99_0": ["6796091.78", "0.00", "0.00", "6593896.57", "97.02", "16753.49", "113858267709.34", "11.27", "184872643650.00", "247626372326.45", "247626372326.45", "6.68"]}, "diff_ptax_xbin": {"$200-500K_0": ["10728818.51", "0.00", "0.00", "9284529.24", "86.54", "10261.29", "110091552238.55", "19.19", "290004412980.00", "384016597460.22", "384016597460.22", "7.13"], ">$1000K_0": ["295092.74", "281.44", "0.10", "266009.42", "90.14", "10771.80", "3178678742.58", "0.55", "7861478580.00", "4796983863.11", "4796983863.11", "0.79"], "ALL_0": ["169894839.66", "281.44", "0.00", "129032030.00", "75.95", "3375.97", "573559415739.63", "100.00", "3413296005370.00", "2616680906895.63", "2616680906895.63", "22.65"], "<$0K_0": ["90427.26", "0.00", "0.00", "19563.44", "21.63", "244.80", "22136892.07", "0.00", "1790679510.00", "908731509.20", "908731509.20", "-7.14"], "$30-40K_0": ["18210151.42", "0.00", "0.00", "13294652.66", "73.01", "1543.04", "28098992622.81", "4.90", "316709582490.00", "196083791056.75", "196083791056.75", "45.10"], "$20-30K_0": ["19009874.38", "0.00", "0.00", "12842604.37", "67.56", "1030.28", "19585404681.27", "3.41", "302646589400.00", "172813898019.04", "172813898019.04", "57.44"], "$500-1000K_0": ["887906.39", "0.00", "0.00", "774337.76", "87.21", "10346.16", "9186417952.60", "1.60", "23439572850.00", "44316413706.96", "44316413706.96", "2.45"], "$75-100K_0": ["18792790.37", "0.00", "0.00", "14997525.74", "79.80", "4074.27", "76566857638.13", "13.35", "428916937500.00", "349715855610.97", "349715855610.97", "23.75"], "$100-200K_0": ["32049054.39", "0.00", "0.00", "26376599.83", "82.30", "6472.41", "207434573647.44", "36.17", "811621436250.00", "771999583579.09", "771999583579.09", "15.11"], "$10-20K_0": ["14612748.64", "0.00", "0.00", "9913398.44", "67.84", "612.25", "8946684531.43", "1.56", "212625463430.00", "86035261880.97", "86035261880.97", "86.31"], "=$0K_0": ["1225391.76", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "22154353630.00", "0.00", "0.00", "inf"], "$0-10K_0": ["12211721.88", "0.00", "0.00", "8850723.02", "72.48", "207.79", "2537437718.41", "0.44", "152150784250.00", "17933835711.34", "17933835711.34", "257.05"], "$40-50K_0": ["14502946.28", "0.00", "0.00", "11000083.08", "75.85", "2047.01", "29687712449.67", "5.18", "275561049520.00", "180137390529.14", "180137390529.14", "38.67"], "$50-75K_0": ["27277915.64", "0.00", "0.00", "21412003.00", "78.50", "2867.63", "78222966624.68", "13.64", "567813664980.00", "407922563968.84", "407922563968.84", "30.94"]}, "dist2_xbin": {"$200-500K_0": ["10728818.51", "2703000770664.22", "5983699.68", "163877445706.81", "4743773.86", "159899882830.93", "0.00", "2369007713311.77", "454194048516.10", "2590432958465.77", "114282.71", "304501522.18", "454498550038.28", "13365889136.67", "1709002092.09", "143532761.21", "442698130232.49", "345958331254.20", "788656461486.70", "290004412980.00", "384016597460.22", "384016597460.22", "3281409147617.87", "2492752686131.17"], ">$1000K_0": ["295092.74", "593699888968.63", "47361.21", "1227845546.48", "247731.53", "12565434240.78", "0.00", "578203638723.49", "163861909483.09", "583620939043.56", "58642.63", "788259345.60", "164650168828.69", "5390113.43", "5429336018.76", "0.00", "170074114734.02", "19456341425.37", "189530456159.40", "7861478580.00", "4796983863.11", "4796983863.11", "612258677017.99", "422728220858.59"], "ALL_0": ["169894839.66", "14018224449358.13", "150954288.92", "3120507867971.09", "18806288.15", "550983261987.55", "0.00", "10408550218044.06", "1716340550702.34", "13619355501168.27", "7510354.28", "10065689915.51", "1726406240617.85", "140692102635.34", "8445993599.10", "28318260939.81", "1565841870641.80", "1766195081640.81", "3332036952282.61", "3413296005370.00", "2616680906895.63", "2616680906895.63", "17513602081751.37", "14181565129468.76"], "<$0K_0": ["90427.26", "-10712214577.88", "16212.42", "1828309899.45", "60.49", "7771020.73", "0.00", "736477186.34", "180092298.84", "-10719380698.60", "0.00", "0.00", "180092298.84", "969770.37", "1895178.32", "231788.85", "180785917.95", "69404739.07", "250190657.02", "1790679510.00", "908731509.20", "908731509.20", "-21904743136.63", "-22154933793.65"], "$30-40K_0": ["18210151.42", "714061595168.18", "17668156.02", "334151302011.65", "534140.75", "11720765534.50", "0.00", "377661667710.92", "41567701294.18", "704075823717.40", "370238.61", "692081736.00", "42259783030.18", "11994643250.46", "0.00", "3818025846.93", "26447113932.79", "85302097465.58", "111749211398.37", "316709582490.00", "196083791056.75", "196083791056.75", "957623596153.29", "845874384754.92"], "$20-30K_0": ["19009874.38", "577032019549.00", "18619922.83", "330457709329.23", "382359.35", "7518374715.30", "0.00", "257917366884.80", "27627360910.34", "570503157672.90", "774369.69", "1201169297.93", "28828530208.27", "9071540888.67", "0.00", "6794923708.66", "12962065610.94", "59389627897.71", "72351693508.65", "302646589400.00", "172813898019.04", "172813898019.04", "781205511837.28", "708853818328.62"], "$500-1000K_0": ["887906.39", "549191911009.20", "315981.13", "8460729418.96", "571875.18", "22740581508.09", "0.00", "515506995348.18", "127682933738.54", "532232252053.12", "25535.00", "124483675.43", "127807417413.98", "99447685.37", "1304115995.17", "20496754.83", "128991588968.94", "35496303458.41", "164487892427.35", "23439572850.00", "44316413706.96", "44316413706.96", "617776585766.98", "453288693339.63"], "$75-100K_0": ["18792790.37", "1632239323208.71", "16794144.38", "401591934262.73", "1992038.17", "51673776738.57", "0.00", "1179541716528.08", "159197206860.31", "1594311755925.46", "72584.46", "261322743.13", "159458529603.44", "20247273996.72", "0.00", "790355045.35", "138420900561.37", "231342183970.43", "369763084531.81", "428916937500.00", "349715855610.97", "349715855610.97", "2086789565684.70", "1717026481152.90"], "$100-200K_0": ["32049054.39", "4257117739362.43", "24809606.58", "646128302231.75", "7232505.68", "218103573161.92", "0.00", "3383169409290.64", "532017707650.40", "4106174505003.36", "152976.15", "351817619.79", "532369525270.20", "39143110175.31", "1644314.76", "590625892.67", "492637433516.98", "628052665013.01", "1120690098529.99", "811621436250.00", "771999583579.09", "771999583579.09", "5325398968930.31", "4204708870400.32"], "$10-20K_0": ["14612748.64", "339340674384.64", "14299934.86", "236995898716.81", "306479.61", "4520382394.15", "0.00", "115064729867.44", "11727105016.01", "335227421897.96", "2080486.01", "1872019597.34", "13599124613.35", "4647487238.61", "0.00", "8545128934.47", "406508440.27", "27006983882.80", "27413492323.07", "212625463430.00", "86035261880.97", "86035261880.97", "437172332449.73", "409758840126.65"], "=$0K_0": ["1225391.76", "22129361458.85", "1214024.70", "24078375409.74", "11048.12", "16333857.99", "0.00", "2172376221.11", "223819877.14", "22114984089.69", "310705.35", "418572904.86", "642392781.99", "214610590.69", "0.00", "0.00", "427782191.30", "0.00", "427782191.30", "22154353630.00", "0.00", "0.00", "22154353630.00", "21726571438.70"], "$0-10K_0": ["12211721.88", "190744477631.12", "11882026.02", "138052045133.67", "324024.52", "3383895698.62", "0.00", "62335286364.71", "6249686410.83", "187553085480.43", "3080841.45", "2967298695.92", "9216985106.74", "3202950709.23", "0.00", "3551733942.73", "2462300454.78", "7650499666.71", "10112800121.49", "152150784250.00", "17933835711.34", "17933835711.34", "210240747367.24", "200127947245.74"], "$40-50K_0": ["14502946.28", "703904082303.81", "13876860.34", "278901974939.64", "619806.59", "13883984595.26", "0.00", "415199426689.10", "47228071291.10", "692554005605.83", "228488.16", "448983811.47", "47677055102.57", "12208840500.62", "0.00", "1891852556.75", "33576362045.20", "89947023063.97", "123523385109.17", "275561049520.00", "180137390529.14", "180137390529.14", "933352108294.16", "809828723184.99"], "$50-75K_0": ["27277915.64", "1746474820227.23", "25426358.75", "554755995364.16", "1840444.30", "44948505690.70", "0.00", "1152033413917.47", "144582907355.45", "1711273992911.39", "241204.06", "635178965.86", "145218086321.31", "26489948579.19", "0.00", "2171353707.37", "116556784034.76", "236523619803.53", "353080403838.29", "567813664980.00", "407922563968.84", "407922563968.84", "2270125230138.45", "1917044826300.17"]}, "diff_itax_xdec": {"0-10p_0": ["15673654.76", "331431.25", "2.11", "8712986.38", "55.59", "592.48", "9286302017.03", "2.13", "200906257190.00", "30425136665.14", "30425136665.14", "197.72"], "ALL_0": ["169894839.66", "402687.40", "0.24", "138342443.30", "81.43", "2569.89", "436610597050.44", "100.00", "3413296005370.00", "2616680906895.63", "2616680906895.63", "22.65"], "0-10n_0": ["90427.26", "800.24", "0.88", "4887.51", "5.40", "161.55", "14608278.87", "0.00", "1790679510.00", "908731509.20", "908731509.20", "-7.14"], "20-30_0": ["16990282.62", "8822.60", "0.05", "12297272.63", "72.38", "1545.49", "26258349913.89", "6.01", "278217585800.00", "158461222531.18", "158461222531.18", "53.57"], "Top 1%_0": ["1698996.80", "16.63", "0.00", "1673354.04", "98.49", "8210.53", "13949659861.78", "3.19", "45386332000.00", "76541047252.57", "76541047252.57", "2.00"], "30-40_0": ["16989448.14", "8243.54", "0.05", "13244705.32", "77.96", "1713.10", "29104566415.62", "6.67", "299486558780.00", "189964142655.40", "189964142655.40", "43.55"], "50-60_0": ["16989557.82", "384.94", "0.00", "14908487.11", "87.75", "2292.89", "38955233571.36", "8.92", "353301201150.00", "251719994004.00", "251719994004.00", "31.06"], "80-90_0": ["16989260.15", "1068.39", "0.01", "16084626.19", "94.68", "4564.97", "77555460364.05", "17.76", "434556798720.00", "419751646923.69", "419751646923.69", "14.79"], "90-100_0": ["16989877.64", "865.25", "0.01", "16421456.99", "96.65", "5898.06", "100207390281.42", "22.95", "455946403650.00", "572708885641.97", "572708885641.97", "6.71"], "40-50_0": ["16988974.73", "5227.76", "0.03", "14270359.23", "84.00", "1969.93", "33467068425.72", "7.67", "328727946880.00", "217044123787.93", "217044123787.93", "37.18"], "10-20_0": ["16988533.64", "34951.16", "0.21", "10989734.17", "64.69", "1039.21", "17654729203.46", "4.04", "253301665550.00", "124466577632.84", "124466577632.84", "73.95"], "0-10z_0": ["1225391.76", "0.00", "0.00", "361628.17", "29.51", "349.10", "427782191.30", "0.10", "22154353630.00", "0.00", "0.00", "inf"], "90-95_0": ["8494789.06", "819.42", "0.01", "8166183.32", "96.13", "5283.29", "44880444326.33", "10.28", "225687428000.00", "248541466062.95", "248541466062.95", "10.42"], "70-80_0": ["16989502.78", "4809.94", "0.03", "15756378.23", "92.74", "3541.00", "60159902629.37", "13.78", "406911329340.00", "349809811791.48", "349809811791.48", "20.17"], "60-70_0": ["16989928.36", "6082.33", "0.04", "15289921.37", "89.99", "2561.47", "43519203758.34", "9.97", "377995225170.00", "301420633752.80", "301420633752.80", "25.69"], "95-99_0": ["6796091.78", "29.20", "0.00", "6581919.63", "96.85", "6088.39", "41377286093.30", "9.48", "184872643650.00", "247626372326.45", "247626372326.45", "6.68"]}, "diff_itax_xbin": {"$200-500K_0": ["10728818.51", "124.34", "0.00", "10358720.33", "96.55", "5980.79", "64166773122.49", "14.70", "290004412980.00", "384016597460.22", "384016597460.22", "7.13"], ">$1000K_0": ["295092.74", "0.00", "0.00", "294842.55", "99.92", "9205.28", "2716412256.87", "0.62", "7861478580.00", "4796983863.11", "4796983863.11", "0.79"], "ALL_0": ["169894839.66", "402687.40", "0.24", "138342443.30", "81.43", "2569.89", "436610597050.44", "100.00", "3413296005370.00", "2616680906895.63", "2616680906895.63", "22.65"], "<$0K_0": ["90427.26", "800.24", "0.88", "4887.51", "5.40", "161.55", "14608278.87", "0.00", "1790679510.00", "908731509.20", "908731509.20", "-7.14"], "$30-40K_0": ["18210151.42", "8331.34", "0.05", "14051717.13", "77.16", "1699.97", "30956664698.95", "7.09", "316709582490.00", "196083791056.75", "196083791056.75", "45.10"], "$20-30K_0": ["19009874.38", "12758.91", "0.07", "13189383.59", "69.38", "1403.15", "26673778257.63", "6.11", "302646589400.00", "172813898019.04", "172813898019.04", "57.44"], "$500-1000K_0": ["887906.39", "0.00", "0.00", "876865.94", "98.76", "8101.33", "7193218749.07", "1.65", "23439572850.00", "44316413706.96", "44316413706.96", "2.45"], "$75-100K_0": ["18792790.37", "8569.03", "0.05", "17063896.34", "90.80", "2798.15", "52584995704.67", "12.04", "428916937500.00", "349715855610.97", "349715855610.97", "23.75"], "$100-200K_0": ["32049054.39", "3589.57", "0.01", "30306100.16", "94.56", "4433.13", "142077756253.97", "32.54", "811621436250.00", "771999583579.09", "771999583579.09", "15.11"], "$10-20K_0": ["14612748.64", "50725.99", "0.35", "9584989.36", "65.59", "922.81", "13484750506.67", "3.09", "212625463430.00", "86035261880.97", "86035261880.97", "86.31"], "=$0K_0": ["1225391.76", "0.00", "0.00", "361628.17", "29.51", "349.10", "427782191.30", "0.10", "22154353630.00", "0.00", "0.00", "inf"], "$0-10K_0": ["12211721.88", "309941.94", "2.54", "6316267.30", "51.72", "531.88", "6495183456.05", "1.49", "152150784250.00", "17933835711.34", "17933835711.34", "257.05"], "$40-50K_0": ["14502946.28", "6783.51", "0.05", "12014157.93", "82.84", "1896.91", "27510711600.96", "6.30", "275561049520.00", "180137390529.14", "180137390529.14", "38.67"], "$50-75K_0": ["27277915.64", "1062.53", "0.00", "23918986.99", "87.69", "2284.19", "62307961972.93", "14.27", "567813664980.00", "407922563968.84", "407922563968.84", "30.94"]}, "dist1_xbin": {"$200-500K_0": ["10728818.51", "2415212209521.65", "4409200.83", "108555172597.69", "6085448.72", "195107916913.41", "0.00", "2108024550215.03", "391050668645.15", "2280279071747.81", "85045.28", "280570304.98", "391331238950.13", "13343454868.52", "1321157436.81", "777584408.43", "378531357110.00", "235866779015.65", "614398136125.65", "0.00", "386738913901.22", "386738913901.22", "2941281180182.53", "2326883044056.87"], ">$1000K_0": ["295092.74", "586057151782.50", "37827.95", "874346123.49", "256467.66", "12761615136.06", "0.00", "570732122342.53", "161234039131.56", "575859635154.60", "57729.77", "716149203.54", "161950188335.10", "5115930.81", "5412630072.86", "0.00", "167357702477.16", "16277662682.79", "183635365159.95", "0.00", "4831360495.62", "4831360495.62", "603046636658.98", "419411271499.03"], "ALL_0": ["169894839.66", "10616441220861.59", "123395131.17", "2410147980196.81", "28372089.99", "766191191172.27", "0.00", "7976275510936.35", "1311865772367.50", "10077571048458.18", "446327.07", "1755195797.55", "1313620968165.06", "98415627126.58", "8006195556.30", "93980263003.41", "1129231273591.36", "1192635665901.18", "2321866939492.54", "0.00", "2676084867327.52", "2676084867327.52", "13884223006167.28", "11562356066674.74"], "<$0K_0": ["90427.26", "-12500573891.09", "4827.02", "1529553369.45", "60.49", "7771020.73", "0.00", "671006879.11", "165106340.72", "-12507740011.82", "0.00", "0.00", "165106340.72", "657085.00", "1895178.32", "166794.96", "166177639.08", "47267847.00", "213445486.08", "0.00", "966957561.71", "966957561.71", "-23645944843.36", "-23859390329.44"], "$30-40K_0": ["18210151.42", "398471452173.45", "15092555.25", "272022049768.79", "743521.87", "14361692635.50", "0.00", "183386266963.70", "19320959797.14", "386511497614.34", "35345.58", "65673860.54", "19386633657.68", "4918413546.51", "0.00", "18977770877.33", "-4509550766.16", "57203104842.76", "52693554076.61", "0.00", "203743833567.54", "203743833567.54", "635639572228.99", "582946018152.38"], "$20-30K_0": ["19009874.38", "275044739593.48", "14817237.15", "268337111765.75", "524648.87", "9757703762.21", "0.00", "93297554285.40", "9272107286.95", "266701736840.28", "38186.05", "42165175.23", "9314272462.18", "2359370985.55", "0.00", "20666614123.32", "-13711712646.69", "39804223216.44", "26092510569.76", "0.00", "179711646467.28", "179711646467.28", "476323277989.36", "450230767419.61"], "$500-1000K_0": ["887906.39", "526392905220.63", "248860.54", "5853333027.41", "630559.82", "24264339740.15", "0.00", "494007211889.15", "120555952493.50", "508474535926.26", "24080.10", "122005634.21", "120677958127.71", "57888392.98", "1270512868.30", "92212383.17", "121798370219.87", "26309885505.81", "148108255725.68", "0.00", "44501274119.49", "44501274119.49", "590556856033.85", "442448600308.17"], "$75-100K_0": ["18792790.37", "1204481691454.43", "13952174.50", "303691365338.37", "3854573.26", "90616548446.69", "0.00", "843484056152.30", "107488113383.30", "1139807932064.14", "30806.89", "122443532.69", "107610556915.99", "16851799199.95", "0.00", "4922852859.34", "85835904856.71", "154775326332.31", "240611231189.01", "0.00", "357122533330.37", "357122533330.37", "1628108707131.59", "1387497475942.58"], "$100-200K_0": ["32049054.39", "3448496318108.69", "18976087.34", "446835605843.17", "12025061.57", "332321275445.84", "0.00", "2694747065238.25", "390548110812.66", "3224261387223.14", "66247.70", "166608496.07", "390714719308.73", "36651444390.22", "0.00", "3503597655.50", "350559677263.01", "420618091365.57", "771177768628.58", "0.00", "782899369466.79", "782899369466.79", "4423921816012.03", "3652744047383.45"], "$10-20K_0": ["14612748.64", "126801567494.12", "11114994.52", "194950791723.05", "157484.48", "3116150080.75", "0.00", "15624330578.77", "1436723419.43", "123956364411.71", "29011.08", "13471757.25", "1450195176.67", "398654631.81", "0.00", "14129782611.27", "-13078242066.40", "18060299351.38", "4982057284.98", "0.00", "90785755891.25", "90785755891.25", "224910377303.77", "219928320018.79"], "=$0K_0": ["1225391.76", "-24992171.15", "0.00", "20187061459.74", "0.00", "0.00", "0.00", "0.00", "0.00", "-24992171.15", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$0-10K_0": ["12211721.88", "38602115116.95", "10334338.80", "116448682268.25", "23050.27", "192831248.14", "0.00", "1631337733.72", "94393402.86", "38414391154.21", "3236.15", "537960.70", "94931363.56", "41342912.61", "0.00", "4086471452.22", "-4032883001.27", "5113061948.31", "1080178947.04", "0.00", "18234033476.71", "18234033476.71", "57129863759.24", "56049684812.20"], "$40-50K_0": ["14502946.28", "429231911679.24", "12220090.77", "227560075430.94", "855496.58", "17133593463.41", "0.00", "230720451739.53", "24733184715.00", "415529343827.79", "21129.50", "60596302.54", "24793781017.55", "6183722401.28", "0.00", "12544408172.02", "6065650444.24", "60259310614.30", "66324961058.54", "0.00", "186628339249.99", "186628339249.99", "650303735364.92", "583978774306.38"], "$50-75K_0": ["27277915.64", "1180174724778.69", "22186936.50", "443302831480.71", "3215716.40", "66549753279.38", "0.00", "739949556918.87", "85966412939.21", "1130307884676.85", "55508.97", "164973569.80", "86131386509.02", "17603762781.35", "0.00", "14278801665.85", "54248822061.83", "158300653178.84", "212549475240.67", "0.00", "419920849799.55", "419920849799.55", "1676646928345.39", "1464097453104.72"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_0\nind_tax,791193156.0767974\npayroll_tax,-173157344484.9181\ncombined_tax,-172366151328.8413\n", "aggr_1": ",0_0\nind_tax,1196382059681.4229\npayroll_tax,1136354175708.7659\ncombined_tax,2332736235390.1885\n", "aggr_2": ",0_0\nind_tax,1197173252837.4995\npayroll_tax,963196831223.8478\ncombined_tax,2160370084061.3474\n", "dist1_xbin": ",s006_0,c00100_0,num_returns_StandardDed_0,standard_0,num_returns_ItemDed_0,c04470_0,c04600_0,c04800_0,taxbc_0,c62100_0,num_returns_AMT_0,c09600_0,c05800_0,c07100_0,othertaxes_0,refund_0,iitax_0,payrolltax_0,combined_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,expanded_income_0,aftertax_income_0\n<$0K,58769.725985135956,-6713814134.910015,58769.725985135956,679923306.2952509,0.0,0.0,569432076.0434431,0.0,0.0,-6713814134.910015,0.0,0.0,0.0,0.0,0.0,838674.2515569197,-838674.2515569197,16356022.011896214,15517347.760339294,0.0,678939677.6919354,678939677.6919354,-5959072947.455756,-5974590295.216095\n=$0K,1087421.064513073,0.0,1087421.064513073,9158748549.300144,0.0,0.0,8243313239.079056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,12189851.019133944,38621441181.97702,12155190.117629856,64849657572.270676,34660.90150408828,131223849.12398219,42919209411.690254,2130243170.642231,141266348.08038363,38497777221.52388,0.0,0.0,141266348.08038363,45301199.59406921,0.0,3825696717.1113224,-3729731568.625008,5132247954.498673,1402516385.8736653,0.0,17870245700.779324,17870245700.779324,56495205433.716705,55092689047.84303\n$10-20K,14074882.395646738,121646608505.46582,13418112.78461587,98160379132.75931,656769.6110308678,6985517222.767134,78034735450.9231,20226802809.00493,1861872045.4046326,117123333140.90338,0.0,0.0,1861872045.4046326,353965203.8609874,0.0,13970125058.849855,-12462218217.306211,17209709904.365288,4747491687.059075,0.0,89646609445.68039,89646609445.68039,217544445865.12622,212796954178.06714\n$20-30K,18090928.802910924,256588186102.9267,14888489.385126255,119342157368.50377,3202439.4177846713,32592091185.84819,112126880102.72086,86917204932.1978,9125472547.39387,236487289783.9843,73054.97865100429,137708030.77516332,9263180578.169033,1211105572.1039922,0.0,18065276959.252655,-10013201953.187616,36783739635.10543,26770537681.917816,0.0,176547751730.11053,176547751730.11053,453552536679.3307,426781998997.41296\n$30-40K,18345878.16611094,409603975095.9365,13037207.12067483,113741425507.71053,5308671.045436112,61978277730.67657,123641403303.82684,181524675723.3424,21210758061.841972,370805188225.4393,92095.69628408333,83109340.49935123,21293867402.341324,2610153670.4593515,0.0,14294350406.789616,4389363325.092361,58285294817.85594,62674658142.948296,0.0,197450132278.0296,197450132278.0296,640869167736.5704,578194509593.6221\n$40-50K,15985018.749765407,481071430095.54755,10590003.95697522,99302065952.00308,5395014.7927901875,71505588581.39789,118701367704.48402,243103990611.81464,29647447229.093315,438247040176.0448,66533.50060497272,145344050.1459002,29792791279.239216,3260243072.652046,0.0,9658283094.867634,16874265111.719534,66691374362.043045,83565639473.76257,0.0,199499916906.4923,199499916906.4923,718849456816.8278,635283817343.0652\n$50-75K,27227522.85378083,1165320241049.397,15707567.77293802,166578706927.55283,11519955.08084281,181319856203.0479,231594405767.03394,671132554128.7274,89032695301.62503,1054361968625.4548,73253.15059446881,142455558.4876135,89175150860.11264,7393058573.905022,0.0,13115506877.193913,68666585409.01372,156213757043.1628,224880342452.1765,0.0,433884731243.10876,433884731243.10876,1673487255923.9204,1448606913471.7437\n$75-100K,18431318.725809492,1186892722626.277,7874181.205194203,87861364960.9941,10557137.52061529,206008870024.58203,165319447673.73364,767087609271.3315,113769683379.25555,1061973525852.1962,74679.39307906917,305173245.5508001,114074856624.80637,7166530837.685467,0.0,3111391775.909317,103796934011.21156,148232635417.33636,252029569428.5479,0.0,348634420039.3462,348634420039.3462,1595446019269.359,1343416449840.8108\n$100-200K,31769349.533311613,3419273352398.4854,8930065.140307013,106343679021.79713,22839284.393004596,560724304477.4589,315524756899.94867,2484770907463.8647,408110609265.103,3101125858496.938,69598.38355030736,112070454.526836,408222679719.6299,8286349608.187839,0.0,1763372125.9626288,398172957985.4794,416294477974.2683,814467435959.7476,0.0,773793716613.0459,773793716613.0459,4383651545470.6104,3569184109510.8623\n$200-500K,9414153.542551141,2068915746804.642,1409073.3173582181,16332741133.823555,8005080.225192923,274798194101.38684,94759725611.81943,1693474079710.3955,355273558617.91144,1929931951798.9353,2763823.371035412,9010024365.28857,364283582983.2,176187928.9196429,1096311340.0909233,515787981.2760132,364687918413.09534,196974041704.09393,561661960117.1892,0.0,377395789344.5918,377395789344.5918,2578549527024.581,2016887566907.3916\n$500-1000K,714774.7704695155,437278803393.2708,70319.27948488036,952527142.9542037,644455.4909846351,36882482935.694565,352613899.4722428,399220065569.90186,105385952589.18018,420461706608.18713,349930.2974122359,4215985709.1391087,109601938298.31927,16137922.277473383,1310121853.2205226,108842262.9118396,110787079966.3505,20988616766.75875,131775696733.10925,0.0,23726437284.118427,23726437284.118427,477038645012.7465,345262948279.6372\n>$1000K,241935.19001126,497693950365.8806,4748.848207829595,48160496.70294092,237186.34180343043,23412402563.80372,17780390.389960278,474215606914.9839,148992303061.89114,489100017498.1817,86574.01058053896,1386554826.282868,150378857888.174,3702956.954173499,4837790941.611025,0.0,155212945872.83087,13531924107.26548,168744869980.0963,0.0,2152635618.5268173,2152635618.5268173,514144014633.515,345399144653.4187\nALL,167631804.54,10076192643484.896,99231149.71901043,883351537072.6675,68400654.82098961,1456338808875.7878,1291805071531.1653,7023803740306.207,1282551618446.7805,9251401843292.879,3649542.781792092,15538425580.69621,1298090044027.4768,30522736546.600063,7244224134.922471,78429471934.37636,1196382059681.4229,1136354175708.7659,2332736235390.1885,0.0,2641281325881.5225,2641281325881.5225,13303668746918.848,10970932511528.656\n", "dist2_xbin": ",s006_0,c00100_0,num_returns_StandardDed_0,standard_0,num_returns_ItemDed_0,c04470_0,c04600_0,c04800_0,taxbc_0,c62100_0,num_returns_AMT_0,c09600_0,c05800_0,c07100_0,othertaxes_0,refund_0,iitax_0,payrolltax_0,combined_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,expanded_income_0,aftertax_income_0\n<$0K,58769.725985135956,-6713814134.910015,58769.725985135956,679923306.2952509,0.0,0.0,569432076.0434431,0.0,0.0,-6713814134.910015,0.0,0.0,0.0,0.0,0.0,838674.2515569197,-838674.2515569197,13790371.50022622,12951697.2486693,0.0,678939677.6919354,678939677.6919354,-5960355772.711591,-5973307469.96026\n=$0K,1087421.064513073,0.0,1087421.064513073,9158748549.300144,0.0,0.0,8243313239.079056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,12189851.019133944,38627115320.353195,12155190.117629856,64849657572.270676,34660.90150408828,131223849.12398219,42919209411.690254,2130243170.642231,141266348.08038363,38503451359.900055,0.0,0.0,141266348.08038363,45301199.59406921,0.0,3822878749.1012583,-3726913600.614944,4328041563.416063,601127962.8011198,0.0,17870245700.779324,17870245700.779324,56098776376.55157,55497648413.75044\n$10-20K,14074882.395646738,121669992216.63255,13418112.78461587,98160379132.75931,656769.6110308678,6985334426.6417885,78034735450.9231,20238690703.24859,1863060834.8289986,117146916212.55023,0.0,0.0,1863060834.8289986,354154076.99905086,0.0,13969179833.399094,-12460273075.569145,14513659206.402943,2053386130.833798,0.0,89646609445.68039,89646609445.68039,216219804227.31177,214166418096.47797\n$20-30K,18090928.802910924,256768727843.54803,14886143.08224971,119312603522.7738,3204785.7206612164,32635161864.034943,112126880102.72086,87002573027.13577,9135846073.345444,236637149642.87076,73054.97865100429,137708030.77516332,9273554104.120607,1212179102.2403002,0.0,18058516675.780045,-9997141673.89974,31040854048.561646,21043712374.661903,0.0,176547751730.11053,176547751730.11053,450861635626.6802,429817923252.0182\n$30-40K,18345878.16611094,410030378820.0411,13028715.1716851,113633577755.54097,5317162.994425841,62094560141.35219,123641403303.82684,181855317055.94055,21252610568.412025,371156830018.02844,92095.69628408333,83109340.49935123,21335719908.911377,2613271004.9272842,0.0,14268280407.46714,4454168496.516954,49206325990.960175,53660494487.47713,0.0,197450132278.0296,197450132278.0296,636754672022.1389,583094177534.6619\n$40-50K,15985018.749765407,481347041304.9606,10590003.95697522,99302065952.00308,5395014.7927901875,71505059647.46434,118701367704.48402,243316362969.59393,29674481633.895767,438522785808.1157,66533.50060497272,145344050.1459002,29819825684.041664,3263367777.6393,0.0,9638794119.601088,16917663786.801277,56268357006.6241,73186020793.42538,0.0,199499916906.4923,199499916906.4923,713893482003.294,640707461209.8685\n$50-75K,27227522.85378083,1165808666549.753,15693293.768763099,166488067001.04208,11534229.08501773,181522322131.78363,231594405767.03394,671587245026.9773,89115810927.64938,1054682607078.7432,73253.15059446881,142455558.4876135,89258266486.137,7397517834.891665,0.0,13101641551.747993,68759107099.49733,131781701276.7583,200540808376.25565,0.0,433884731243.10876,433884731243.10876,1661751089316.0186,1461210280939.763\n$75-100K,18431318.725809492,1187324928231.7412,7874181.205194203,87861364960.9941,10557137.52061529,206006667878.72485,165319447673.73364,767479938876.1992,113837745711.59973,1062408210820.2908,74679.39307906917,305173245.5508001,114142918957.15053,7167514448.485055,0.0,3104655062.249566,103870749446.41591,125039108214.82756,228909857661.24347,0.0,348634420039.3462,348634420039.3462,1584239807024.4243,1355329949363.1807\n$100-200K,31769349.533311613,3420318797762.835,8921722.730079297,106237730411.90515,22847626.803232312,560878830914.3651,315524756899.94867,2485811947816.186,408347178733.6878,3102059918349.279,69598.38355030736,113231774.92263544,408460410508.6105,8282455468.757664,0.0,1758616718.4807496,398419338321.3721,351386434457.47754,749805772778.8496,0.0,773793716613.0459,773793716613.0459,4352230779294.307,3602425006515.4575\n$200-500K,9414153.542551141,2069508291577.7441,1409073.3173582181,16332741133.823555,8005080.225192923,274787277758.13797,94746298569.22348,1694080291195.051,355448099391.8756,1930528176921.6636,2763823.371035412,9020507855.476591,364468607247.3522,176167819.55242288,1098342808.485716,515340693.0425128,364875441543.2429,168121678464.8591,532997120008.10205,0.0,377395789344.5918,377395789344.5918,2564710501515.4966,2031713381507.3945\n$500-1000K,714774.7704695155,437394415951.5528,70319.27948488036,952527142.9542037,644455.4909846351,36878974328.794754,351653013.1786504,399340099273.6239,105429283500.33578,420577464096.90894,349930.2974122359,4214440284.7664704,109643723785.10226,16137922.277473383,1310163718.0224683,108832080.87498844,110828917499.97226,18713130706.480164,129542048206.45242,0.0,23726437284.118427,23726437284.118427,476013991507.7527,346471943301.3003\n>$1000K,241935.19001126,497746109592.2785,4748.848207829595,48160496.70294092,237186.34180343043,23410967068.925297,17780390.389960278,474269201636.2603,149013389944.84796,489152176724.5795,86574.01058053896,1385501873.695193,150398891818.54318,3702956.954173499,4837844806.427277,0.0,155233033668.0163,12783749915.979927,168016783583.99625,0.0,2152635618.5268173,2152635618.5268173,513817847449.6581,345801063865.66174\nALL,167631804.54,10079830651036.531,99197695.05274148,883017546938.3654,68434109.48725852,1456836380009.3486,1291790683602.276,7027111910750.859,1283258773668.5588,9254661872898.02,3649542.781792092,15547472014.319717,1298806245682.8787,30531769612.31846,7246351332.935461,78347574565.99599,1197173252837.4998,963196831223.8479,2160370084061.3477,0.0,2641281325881.5225,2641281325881.5225,13220632030590.922,11060261946529.574\n", "diff_itax_xbin": ",count_0,tax_cut_0,perc_cut_0,tax_inc_0,perc_inc_0,mean_0,tot_change_0,share_of_change_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,pc_aftertaxinc_0\n<$0K,58769.725985135956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,678939677.6919354,678939677.6919354,-0.021471351045809772\n=$0K,1087421.064513073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,12189851.019133944,89494.97900933426,0.7341761508722084,276504.11855995073,2.2683141748486735,0.23117329372121048,2817968.010064048,0.35616688395501256,0.0,17870245700.779324,17870245700.779324,0.7350510075043504\n$10-20K,14074882.395646738,58033.942341955444,0.41232275134252583,134417.481799632,0.9550167313739429,0.13819950194883154,1945141.7370667562,0.24584916112165542,0.0,89646609445.68039,89646609445.68039,0.6435542856806364\n$20-30K,18090928.802910924,91676.19373932036,0.5067522775534288,569570.9783647511,3.148378861969233,0.8877531641875454,16060279.287875775,2.0298809670589315,0.0,176547751730.11053,176547751730.11053,0.7113524613824307\n$30-40K,18345878.16611094,25906.928842866946,0.14121389343314733,1360070.2590575838,7.413492266453326,3.532410432350058,64805171.424593434,8.190815469882944,0.0,197450132278.0296,197450132278.0296,0.8474082440671271\n$40-50K,15985018.749765407,28249.923339721423,0.17672749580062902,961061.1414497998,6.012261583765137,2.714959285385885,43398675.08174306,5.485218716620263,0.0,199499916906.4923,199499916906.4923,0.8537355617661557\n$50-75K,27227522.85378083,2762.8278795865226,0.010147187808540853,1313405.5635222374,4.823815851980296,3.398094309955627,92521690.48361942,11.693944743202351,0.0,433884731243.10876,433884731243.10876,0.8700336406523013\n$75-100K,18431318.725809492,8619.983283753663,0.04676813098393793,1085574.6578077716,5.889837151411388,4.004891690195205,73815435.20433371,9.329635201896108,0.0,348634420039.3462,348634420039.3462,0.8868061369787128\n$100-200K,31769349.533311613,22544.622563350975,0.07096343769869103,2684768.645815578,8.450814024380561,7.755284244467066,246380335.89265868,31.14035226421293,0.0,773793716613.0459,773793716613.0459,0.9313304101073783\n$200-500K,9414153.542551141,112509.72232671377,1.1951124635707266,726735.2247268273,7.719602420356205,19.919276788939143,187523130.14764816,23.701308423533202,0.0,377395789344.5918,377395789344.5918,0.7350838412245375\n$500-1000K,714774.7704695155,14041.425082674075,1.9644544915107536,104632.80112145985,14.63856944093445,58.53247113671831,41837533.62176137,5.287903882942637,0.0,23726437284.118427,23726437284.118427,0.3501664536224469\n>$1000K,241935.19001126,13986.836817779837,5.78123290668417,47415.69772510364,19.59851219779018,83.02965428261243,20087795.185433067,2.538924285573982,0.0,2152635618.5268173,2152635618.5268173,0.11636369645511291\nALL,167631804.54,467827.38522705727,0.2790803251869935,9264156.569950696,5.526490987418859,4.719827232355566,791193156.0767974,100.0,0.0,2641281325881.5225,2641281325881.5225,0.8142373941964154\n", "diff_ptax_xbin": ",count_0,tax_cut_0,perc_cut_0,tax_inc_0,perc_inc_0,mean_0,tot_change_0,share_of_change_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,pc_aftertaxinc_0\n<$0K,58769.725985135956,4002.146911670239,6.809878461373909,0.0,0.0,-43.655989009016274,-2565650.5116699934,0.0014816873747411044,0.0,678939677.6919354,678939677.6919354,-0.021471351045809772\n=$0K,1087421.064513073,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,12189851.019133944,8977022.627444975,73.64341543923781,0.0,0.0,-65.9734388730656,-804206391.0826097,0.46443677770344627,0.0,17870245700.779324,17870245700.779324,0.7350510075043504\n$10-20K,14074882.395646738,9624946.292859223,68.3838487761443,0.0,0.0,-191.55049556905809,-2696050697.962344,1.5569947125154535,0.0,89646609445.68039,89646609445.68039,0.6435542856806364\n$20-30K,18090928.802910924,12037156.062895846,66.5369710645205,0.0,0.0,-317.44559105333104,-5742885586.543789,3.3165706043984704,0.0,176547751730.11053,176547751730.11053,0.7113524613824307\n$30-40K,18345878.16611094,13351472.092508923,72.7764131627788,0.0,0.0,-494.87785456172475,-9078968826.895771,5.243190148187185,0.0,197450132278.0296,197450132278.0296,0.8474082440671271\n$40-50K,15985018.749765407,11925129.694841921,74.60191246267341,0.0,0.0,-652.0491166500451,-10423017355.418941,6.019390853113239,0.0,199499916906.4923,199499916906.4923,0.8537355617661557\n$50-75K,27227522.85378083,21644088.22833997,79.49341680686335,0.0,0.0,-897.3293640266595,-24432055766.404488,14.109742696205707,0.0,433884731243.10876,433884731243.10876,0.8700336406523013\n$75-100K,18431318.725809492,14632068.454639878,79.3869862070721,0.0,0.0,-1258.3758952652008,-23193527202.50878,13.394480766323442,0.0,348634420039.3462,348634420039.3462,0.8868061369787128\n$100-200K,31769349.533311613,25984252.62383268,81.79031993269804,0.0,0.0,-2043.102690809949,-64908043516.79076,37.485007471019635,0.0,773793716613.0459,773793716613.0459,0.9313304101073783\n$200-500K,9414153.542551141,7885796.926287759,83.76533153665547,0.0,0.0,-3064.785708967321,-28852363239.234818,16.662511962781828,0.0,377395789344.5918,377395789344.5918,0.7350838412245375\n$500-1000K,714774.7704695155,629324.6164698596,88.04516366134104,0.0,0.0,-3183.5008093303118,-2275486060.27859,1.3141146666619063,0.0,23726437284.118427,23726437284.118427,0.3501664536224469\n>$1000K,241935.19001126,227193.71178606348,93.90684826605404,416.19416507242795,0.17202713051088503,-3092.4570801408927,-748174191.2855532,0.4320776537149534,0.0,2152635618.5268173,2152635618.5268173,0.11636369645511291\nALL,167631804.54,126922453.47881876,75.71501948995171,416.19416507242795,0.00024827875963902567,-1032.9623603353837,-173157344484.9181,100.0,0.0,2641281325881.5225,2641281325881.5225,0.8142373941964154\n", "diff_comb_xbin": ",count_0,tax_cut_0,perc_cut_0,tax_inc_0,perc_inc_0,mean_0,tot_change_0,share_of_change_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,pc_aftertaxinc_0\n<$0K,58769.725985135956,4002.146911670239,6.809878461373909,0.0,0.0,-43.655989009016274,-2565650.5116699934,0.0014884885993510571,0.0,678939677.6919354,678939677.6919354,-0.021471351045809772\n=$0K,1087421.064513073,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,12189851.019133944,8977022.627444975,73.64341543923781,0.0,0.0,-65.74226557934439,-801388423.0725456,0.46493375694375827,0.0,17870245700.779324,17870245700.779324,0.7350510075043504\n$10-20K,14074882.395646738,9624946.292859223,68.3838487761443,0.0,0.0,-191.41229606710922,-2694105556.225277,1.5630131179789728,0.0,89646609445.68039,89646609445.68039,0.6435542856806364\n$20-30K,18090928.802910924,12037156.062895846,66.5369710645205,0.0,0.0,-316.5578378891435,-5726825307.255914,3.3224767526022196,0.0,176547751730.11053,176547751730.11053,0.7113524613824307\n$30-40K,18345878.16611094,13351472.092508923,72.7764131627788,0.0,0.0,-491.3454441293746,-9014163655.471176,5.229659991812368,0.0,197450132278.0296,197450132278.0296,0.8474082440671271\n$40-50K,15985018.749765407,11925129.694841921,74.60191246267341,0.0,0.0,-649.3341573646593,-10379618680.3372,6.021842804005581,0.0,199499916906.4923,199499916906.4923,0.8537355617661557\n$50-75K,27227522.85378083,21644088.22833997,79.49341680686335,0.0,0.0,-893.9312697167038,-24339534075.920868,14.120831664614789,0.0,433884731243.10876,433884731243.10876,0.8700336406523013\n$75-100K,18431318.725809492,14632068.454639878,79.3869862070721,0.0,0.0,-1254.3710035750057,-23119711767.304447,13.41313917440583,0.0,348634420039.3462,348634420039.3462,0.8868061369787128\n$100-200K,31769349.533311613,25984252.62383268,81.79031993269804,0.0,0.0,-2035.3474065654816,-64661663180.89809,37.514130635507506,0.0,773793716613.0459,773793716613.0459,0.9313304101073783\n$200-500K,9414153.542551141,7885796.926287759,83.76533153665547,0.0,0.0,-3044.8664321783826,-28664840109.087173,16.63020255897006,0.0,377395789344.5918,377395789344.5918,0.7350838412245375\n$500-1000K,714774.7704695155,629324.6164698596,88.04516366134104,0.0,0.0,-3124.968338193592,-2233648526.656828,1.295874224397723,0.0,23726437284.118427,23726437284.118427,0.3501664536224469\n>$1000K,241935.19001126,227193.71178606348,93.90684826605404,416.19416507242795,0.17202713051088503,-3009.427425858265,-728086396.1001165,0.4224068301618386,0.0,2152635618.5268173,2152635618.5268173,0.11636369645511291\nALL,167631804.54,126922453.47881876,75.71501948995171,416.19416507242795,0.00024827875963902567,-1028.2425331030283,-172366151328.8413,100.0,0.0,2641281325881.5225,2641281325881.5225,0.8142373941964154\n", "dist1_xdec": ",s006_0,c00100_0,num_returns_StandardDed_0,standard_0,num_returns_ItemDed_0,c04470_0,c04600_0,c04800_0,taxbc_0,c62100_0,num_returns_AMT_0,c09600_0,c05800_0,c07100_0,othertaxes_0,refund_0,iitax_0,payrolltax_0,combined_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,expanded_income_0,aftertax_income_0\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,16763145.021253515,58531306757.756424,16622041.304099262,98659813881.28453,141103.71715425342,1386355350.2788994,70955039561.52429,2959048967.417962,216261186.40016463,57670465412.98485,0.0,0.0,216261186.40016463,57492873.376837134,0.0,7387693800.009493,-7228925486.986166,8908402027.511335,1679476540.525169,0.0,30612079790.00582,30612079790.00582,90160151363.47348,88480674822.94832\n10-20,16753393.902953561,165308051921.8363,15459764.179031644,116525216069.52466,1293629.7239219155,13139934523.69375,94792947678.05797,39715972132.74974,3688624463.348895,155945235078.68326,5912.074507030435,5449107.094609145,3694073570.4435043,497284608.71576166,0.0,15625400819.105879,-12428611857.378136,23692930486.052643,11264318628.67451,0.0,134505313572.80316,134505313572.80316,310590854749.2241,299326536120.5496\n20-30,16756243.079543069,272762534160.87296,13169573.407066314,108837856385.57332,3586669.6724767555,36770444443.675766,106641380447.17603,101801135936.7424,11367801064.124325,250632483836.36963,85663.21365172784,160433276.47619966,11528234340.600525,1503312392.13721,0.0,16287132510.36068,-6262210561.897366,39236062607.79896,32973852045.901596,0.0,174258550453.58807,174258550453.58807,469755407182.9841,436781555137.08246\n30-40,16758567.547113657,414601347324.902,11466832.75898946,100883617525.59592,5291734.788124198,63683905300.38453,116159754020.85654,191570898832.20874,22534936805.43534,375651227391.0586,73575.38677632935,54934987.70370576,22589871793.139046,2654823169.509409,0.0,12671120210.799774,7263928412.8298645,59011544786.34274,66275473199.17261,0.0,174541559471.45193,174541559471.45193,622971666905.2559,556696193706.0833\n40-50,16773613.727108352,535753367020.0162,10893186.849359846,105918814905.7084,5880426.877748508,79747159667.61404,128354833388.20876,275962526957.3134,33753188279.658634,487013007481.1942,97042.71643537746,148272413.33023214,33901460692.988865,3831423798.204918,0.0,10561477994.172024,19508558900.611923,73277412692.71783,92785971593.32974,0.0,217584771794.86017,217584771794.86017,792941866954.7192,700155895361.3894\n50-60,16771931.416035704,692356048185.9435,9611589.040696558,99639190337.99998,7160342.375339147,114626276576.08911,140883220711.26825,392846430190.78906,51725231403.48241,621955802006.9663,40424.09892504352,129236942.73800075,51854468346.22041,4171452695.560383,0.0,8470339496.071688,39212676154.58833,93300332833.47482,132513008988.06317,0.0,264342720388.14972,264342720388.14972,1005926074420.6064,873413065432.5432\n60-70,16758906.325193971,933440872358.5312,8353395.702478197,93079677523.77975,8405510.622715771,148426275220.2187,149205772588.39413,584313198366.0847,83944416252.20984,845664851671.3022,75972.638700109,314139985.79127336,84258556238.00113,6069285455.968882,0.0,3748140255.679149,74441130526.35309,119304499720.55276,193745630246.90585,0.0,313450357002.8894,313450357002.8894,1294482108593.2847,1100736478346.379\n70-80,16767047.255098533,1281465122360.3386,6354482.287743045,72385151725.5135,10412564.967355486,226465605582.09583,152856784820.1096,862151695506.0457,128591524176.23694,1142496788267.2441,6820.224732089112,25128170.58131082,128616652346.81827,6060114158.602749,0.0,1746054720.6670182,120810483467.5485,157164000562.80872,277974484030.3572,0.0,352787595643.9553,352787595643.9553,1690545178474.342,1412570694443.9849\n80-90,16655316.987026913,1803681089281.6025,4458488.264287611,54307200240.441574,12196828.722739303,299966565996.884,169916708967.85107,1301961938798.6826,209120618821.37387,1631100697128.8271,25846.716332498756,13180152.530921899,209133798973.90482,5095728739.379084,0.0,922458544.0009573,203115611690.52478,222215683952.52454,425331295643.0493,0.0,375360839252.89984,375360839252.89984,2285301591515.388,1859970295872.3389\n90-100,16873639.27867274,3918292904113.0977,2841795.9252584646,33114998477.245872,14031843.353414275,472126286214.853,162038629347.71878,3270520894618.173,737609015994.51,3683271285018.248,3238285.711731887,14687650544.449959,752296666538.9601,581818655.144834,7244224134.922472,1009653583.5096889,757949418435.228,340243306038.9815,1098192724474.2095,0.0,603837538510.9187,603837538510.9187,4740993846759.57,3642801122285.3604\nALL,167631804.54,10076192643484.896,99231149.71901041,883351537072.6675,68400654.82098961,1456338808875.7878,1291805071531.1658,7023803740306.207,1282551618446.7803,9251401843292.879,3649542.7817920926,15538425580.696213,1298090044027.4768,30522736546.600067,7244224134.922472,78429471934.37636,1196382059681.4229,1136354175708.7659,2332736235390.1885,0.0,2641281325881.5225,2641281325881.5225,13303668746918.85,10970932511528.662\n90-95,8483119.255172864,1230602807951.4788,1717071.8872204218,19867376803.687286,6766047.367952442,185369601048.45868,88121561638.29776,947826580868.9023,173806187327.3886,1134828048925.8958,64224.251580961965,201158540.85469472,174007345868.24335,409721586.2622674,819682.4181919676,422179463.5893431,173176264500.8099,143478353045.06558,316654617545.8755,0.0,278229680228.864,278229680228.864,1585309157123.4404,1268654539577.565\n95-99,6713825.91788883,1470152595114.7163,991332.8156184223,11529359662.912079,5722493.1022704085,198280546605.91174,70825533985.477,1198121860498.9653,249208885245.5006,1368678131586.6157,2143593.1594969323,5875439825.014242,255084325070.51486,144975317.4199479,655915934.2394805,464748190.70547444,255130517496.6289,141532000948.69153,396662518445.32043,0.0,281643303572.3564,281643303572.3564,1852735849533.195,1456073331087.8745\nTop 1%,1676694.1056110463,1217537501046.902,133391.22241962032,1718262010.6465073,1543302.883191426,88476138560.4826,3091533723.944,1124572453250.3052,314593943421.62085,1179765104505.7363,1030468.3006539928,8611052178.581022,323204995600.2019,27121751.46261865,6587488518.264799,122725929.2148714,329642636437.78925,55232952045.2244,384875588483.01355,0.0,43964554709.69826,43964554709.69826,1302948840102.9348,918073251619.9211\n", "dist2_xdec": ",s006_0,c00100_0,num_returns_StandardDed_0,standard_0,num_returns_ItemDed_0,c04470_0,c04600_0,c04800_0,taxbc_0,c62100_0,num_returns_AMT_0,c09600_0,c05800_0,c07100_0,othertaxes_0,refund_0,iitax_0,payrolltax_0,combined_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,expanded_income_0,aftertax_income_0\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,16763145.021253515,58540452052.248184,16622041.304099262,98659813881.28453,141103.71715425342,1386355350.2788994,70955039561.52429,2961093512.659735,216465640.92434195,57679610707.47661,0.0,0.0,216465640.92434195,57492873.376837134,0.0,7384537679.207122,-7225564911.6596155,7512379022.179175,286814110.5195588,0.0,30612079790.00582,30612079790.00582,89471285155.29915,89184471044.77962\n10-20,16753393.902953561,165369255921.36526,15459764.179031644,116525216069.52466,1293629.7239219155,13139886393.79209,94792947678.05797,39743914495.47081,3691601376.665872,156006432319.3589,5912.074507030435,5449107.094609145,3697050483.7604814,497484579.7271122,0.0,15624894433.380646,-12425328529.347279,19985583658.066326,7560255128.719051,0.0,134505313572.80316,134505313572.80316,308798385334.75995,301238130206.0409\n20-30,16756243.079543069,273018786815.36646,13158735.155200038,108700454787.6738,3597507.92434303,36932959558.69065,106641380447.17603,101966131208.67676,11389014782.383898,250779898932.51053,85663.21365172784,160433276.47619966,11549448058.8601,1504640457.576333,0.0,16276198598.96442,-6231390997.6806555,33119868765.73725,26888477768.056595,0.0,174258550453.58807,174258550453.58807,466953562916.4467,440065085148.39014\n30-40,16758567.547113657,414979749610.2571,11466832.75898946,100883617525.59592,5291734.788124198,63680502680.833084,116159754020.85654,191868141755.98218,22572121331.853012,376033229540.84973,73575.38677632935,54934987.70370576,22627056319.556717,2659185055.848198,0.0,12645075619.210876,7322795644.497644,49811178434.73857,57133974079.236206,0.0,174541559471.45193,174541559471.45193,618746690641.4951,561612716562.2589\n40-50,16773613.727108352,535998698736.3756,10893186.849359846,105918814905.7084,5880426.877748508,79746701198.95474,128354833388.20876,276149152260.1645,33776817965.25721,487258473620.2117,97042.71643537746,148272413.33023214,33925090378.587437,3833090868.153914,0.0,10545816902.310822,19546182608.122704,61816914886.044945,81363097494.16765,0.0,217584771794.86017,217584771794.86017,787438009845.2457,706074912351.078\n50-60,16771931.416035704,692701695556.1763,9597315.03652164,99548550411.48924,7174616.3795140665,114828989611.52377,140883220711.26825,393170934914.3993,51787289697.46372,622133467700.0999,40424.09892504352,129236942.73800075,51916526640.20172,4174009578.059676,0.0,8458834347.831399,39283682714.310646,78716192766.73294,117999875481.04358,0.0,264342720388.14972,264342720388.14972,998974982506.6675,880975107025.6239\n60-70,16758906.325193971,933787119569.3612,8353395.702478197,93079677523.77975,8405510.622715771,148425577439.47937,149205772588.39413,584638093882.7233,84003124628.75923,846011849208.4778,75972.638700109,314139985.79127336,84317264614.5505,6071285816.719779,0.0,3742838059.702318,74503140738.12842,100636914049.73917,175140054787.86755,0.0,313450357002.8894,313450357002.8894,1285460256999.2466,1110320202211.379\n70-80,16767047.255098533,1281811712765.0393,6346139.877515329,72279203115.62152,10420907.377583202,226622443737.47153,152856784820.1096,862463584184.9617,128644131517.39972,1142731130043.758,6820.224732089112,25128170.58131082,128669259687.98102,6061295120.45176,0.0,1741820844.2539072,120866143723.27536,132560630194.75858,253426773918.03394,0.0,352787595643.9553,352787595643.9553,1678575148467.96,1425148374549.9258\n80-90,16655316.987026913,1804303736602.896,4458488.264287611,54307200240.441574,12196828.722739303,299964604552.46643,169916708967.85107,1302582798905.5625,209266343233.53906,1631724443565.8906,25846.716332498756,13247139.233987989,209279590372.77304,5090812354.745362,0.0,922325864.5068455,203266452153.52084,187504618875.3866,390771071028.9075,0.0,375360839252.89984,375360839252.89984,2268561068159.0474,1877789997130.1396\n90-100,16873639.27867274,3919319443407.445,2841795.9252584646,33114998477.245872,14031843.353414275,472108359485.8583,162024241418.8292,3271568065630.258,737911863494.3127,3684303337259.386,3238285.711731887,14696629991.3704,752608493485.6832,582472907.6594859,7246351332.935461,1005232216.6276401,758267139694.3315,291532550570.4642,1049799690264.7958,0.0,603837538510.9187,603837538510.9187,4717652640564.755,3667852950299.959\nALL,167631804.54,10079830651036.531,99197695.0527415,883017546938.3654,68434109.48725852,1456836380009.3489,1291790683602.2761,7027111910750.857,1283258773668.5588,9254661872898.02,3649542.7817920926,15547472014.319721,1298806245682.8784,30531769612.318455,7246351332.935461,78347574565.996,1197173252837.4995,963196831223.8477,2160370084061.3474,0.0,2641281325881.5225,2641281325881.5225,13220632030590.924,11060261946529.574\n90-95,8483119.255172864,1230945143668.669,1717071.8872204218,19867376803.687286,6766047.367952442,185367387168.3673,88121561638.29776,948162865265.3945,173887436659.24146,1135172112650.082,64224.251580961965,202625401.015197,174090062060.25665,410391976.4984859,915494.5522257161,418215566.9776459,173262370011.33273,121373491202.15991,294635861213.4927,0.0,278229680228.864,278229680228.864,1574596398162.0835,1279960536948.5908\n95-99,6713825.91788883,1470523256930.762,991332.8156184223,11529359662.912079,5722493.1022704085,198274994800.16852,70820969443.13495,1198499833616.7397,249314768377.7521,1369051820623.4731,2143593.1594969323,5886634269.284819,255201402647.03693,144907641.3195768,657568389.5095114,464569520.502303,255249493874.72455,120666535459.03043,375916029333.755,0.0,281643303572.3564,281643303572.3564,1842672302536.5059,1466756273202.7507\nTop 1%,1676694.1056110463,1217851042808.0142,133391.22241962032,1718262010.6465073,1543302.883191426,88465977517.32245,3081710337.396499,1124905366748.1235,314709658457.3193,1180079403985.831,1030468.3006539928,8607370321.070385,323317028778.38965,27173289.84142313,6587867448.873724,122447129.14769128,329755275808.2743,49492523909.27386,379247799717.5481,0.0,43964554709.69826,43964554709.69826,1300383939866.1653,921136140148.6171\n", "diff_itax_xdec": ",count_0,tax_cut_0,perc_cut_0,tax_inc_0,perc_inc_0,mean_0,tot_change_0,share_of_change_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,pc_aftertaxinc_0\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,16763145.021253515,96734.70628618635,0.5770677648110731,328497.621262882,1.9596419457469898,0.2004740352892498,3360575.3265495896,0.42474777502036354,0.0,30612079790.00582,30612079790.00582,0.7954236597309094\n10-20,16753393.902953561,98726.35085990334,0.5892916470047197,226767.92331988842,1.3535640875721908,0.19597987427972213,3283328.030859502,0.4149843822133371,0.0,134505313572.80316,134505313572.80316,0.638631679725643\n20-30,16756243.079543069,69323.45719802185,0.4137171851049099,804389.5128236478,4.80053618824431,1.8392884413533235,30819564.216710184,3.89532745322669,0.0,174258550453.58807,174258550453.58807,0.7517556482615539\n30-40,16758567.547113657,327.5295893654242,0.0019544008665694996,1254781.7370814548,7.487404478657647,3.5126648803536518,58867231.667780586,7.440311030959754,0.0,174541559471.45193,174541559471.45193,0.8831608535788682\n40-50,16773613.727108352,28507.31527964698,0.16995333112730165,816507.7767921996,4.8678107775465005,2.24302932706624,37623707.51078489,4.755312558231093,0.0,217584771794.86017,217584771794.86017,0.8453855818258083\n50-60,16771931.416035704,2505.435939660967,0.014938267260415283,882071.9221478383,5.259214936357814,4.233654309748739,71006559.72230983,8.974617535167043,0.0,264342720388.14972,264342720388.14972,0.8658035805012565\n60-70,16758906.325193971,0.0,0.0,841885.695722546,5.0235121516069565,3.7001347565319267,62010211.77531296,7.8375566445488705,0.0,313450357002.8894,313450357002.8894,0.8706646916433192\n70-80,16767047.255098533,8805.914222363126,0.052519171016741896,1258777.9289096822,7.5074514299285005,3.319621808183885,55660255.726874836,7.034976895259209,0.0,352787595643.9553,352787595643.9553,0.8904106644299192\n80-90,16655316.987026913,11463.535627789846,0.06882808436920759,1405679.9123096108,8.439826833704318,9.056595146977035,150840462.9960721,19.06493526107179,0.0,375360839252.89984,375360839252.89984,0.9580637549613691\n90-100,16873639.27867274,151433.14022411936,0.897453938200052,1444796.539580945,8.562447707455027,18.829444784037992,317721259.10354304,40.157230464301854,0.0,603837538510.9187,603837538510.9187,0.687707815322125\nALL,167631804.54,467827.38522705727,0.2790803251869935,9264156.569950696,5.526490987418859,4.719827232355566,791193156.0767975,100.0,0.0,2641281325881.5225,2641281325881.5225,0.8142373941963488\n90-95,8483119.255172864,10895.155996951667,0.1284333706650179,682364.8905068841,8.043796980583403,10.150218089923174,86105510.5228312,10.88299486181012,0.0,278229680228.864,278229680228.864,0.8911801454468904\n95-99,6713825.91788883,99656.00555295068,1.4843400286477435,486880.34386499133,7.251905989515013,17.721099645826346,118976378.0956395,15.037589390382822,0.0,281643303572.3564,281643303572.3564,0.7336816001495494\nTop 1%,1676694.1056110463,40881.978674217,2.438249084159461,275551.3052090695,16.434202535032405,67.17943965337825,112639370.48507231,14.236646212108909,0.0,43964554709.69826,43964554709.69826,0.3336213666275123\n", "diff_ptax_xdec": ",count_0,tax_cut_0,perc_cut_0,tax_inc_0,perc_inc_0,mean_0,tot_change_0,share_of_change_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,pc_aftertaxinc_0\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,16763145.021253515,11667457.865994545,69.60184291910441,0.0,0.0,-83.27930132216729,-1396023005.3321598,0.8062164556085304,0.0,30612079790.00582,30612079790.00582,0.7954236597309094\n10-20,16753393.902953561,10847771.067157686,64.749692689105,0.0,0.0,-221.2893011088771,-3707346827.9863167,2.1410277681344465,0.0,134505313572.80316,134505313572.80316,0.638631679725643\n20-30,16756243.079543069,11414979.200747438,68.12373839744222,0.0,0.0,-365.0098541199067,-6116193842.061712,3.5321596437362954,0.0,174258550453.58807,174258550453.58807,0.7517556482615539\n30-40,16758567.547113657,12594742.104993574,75.15404923234492,0.0,0.0,-548.9947947960965,-9200366351.604183,5.313298363966035,0.0,174541559471.45193,174541559471.45193,0.8831608535788682\n40-50,16773613.727108352,12660857.09556769,75.48079562072002,0.0,0.0,-683.2456018795295,-11460497806.672884,6.6185456012644535,0.0,217584771794.86017,217584771794.86017,0.8453855818258083\n50-60,16771931.416035704,13428375.709253956,80.06457560645065,0.0,0.0,-869.556385903054,-14584140066.741898,8.422478474779432,0.0,264342720388.14972,264342720388.14972,0.8658035805012565\n60-70,16758906.325193971,13155457.212602634,78.49830387097393,0.0,0.0,-1113.8904477764331,-18667585670.81361,10.780706834205088,0.0,313450357002.8894,313450357002.8894,0.8706646916433192\n70-80,16767047.255098533,13025282.396918174,77.68381754251595,0.0,0.0,-1467.3645272019326,-24603370368.05012,14.208678494831654,0.0,352787595643.9553,352787595643.9553,0.8904106644299192\n80-90,16655316.987026913,13875763.593914766,83.31131496760354,0.0,0.0,-2084.083125177078,-34711065077.137924,20.04596754494652,0.0,375360839252.89984,375360839252.89984,0.9580637549613691\n90-100,16873639.27867274,14251767.231668305,84.46172752834462,416.19416507242795,0.00246653468287942,-2886.796064799415,-48710755468.5173,28.13092081852756,0.0,603837538510.9187,603837538510.9187,0.687707815322125\nALL,167631804.54,126922453.47881874,75.7150194899517,416.19416507242795,0.00024827875963902567,-1032.9623603353837,-173157344484.9181,100.0,0.0,2641281325881.5225,2641281325881.5225,0.8142373941963488\n90-95,8483119.255172864,7205281.750865866,84.93670233943966,0.0,0.0,-2605.7469166694177,-22104861842.905655,12.765766250724049,0.0,278229680228.864,278229680228.864,0.8911801454468904\n95-99,6713825.91788883,5548141.823415874,82.63755854367598,0.0,0.0,-3107.8353452784,-20865465489.661102,12.050003164306135,0.0,281643303572.3564,281643303572.3564,0.7336816001495494\nTop 1%,1676694.1056110463,1498343.6573865633,89.36297040541656,416.19416507242795,0.024822307401191235,-3423.6585652327617,-5740428135.950543,3.315151403497373,0.0,43964554709.69826,43964554709.69826,0.3336213666275123\n", "diff_comb_xdec": ",count_0,tax_cut_0,perc_cut_0,tax_inc_0,perc_inc_0,mean_0,tot_change_0,share_of_change_0,ubi_0,benefit_cost_total_0,benefit_value_total_0,pc_aftertaxinc_0\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,16763145.021253515,11667457.865994545,69.60184291910441,0.0,0.0,-83.07882728687804,-1392662430.0056102,0.8079674688266837,0.0,30612079790.00582,30612079790.00582,0.7954236597309094\n10-20,16753393.902953561,10847771.067157686,64.749692689105,0.0,0.0,-221.09332123459743,-3704063499.9554577,2.1489506329400023,0.0,134505313572.80316,134505313572.80316,0.638631679725643\n20-30,16756243.079543069,11414979.200747438,68.12373839744222,0.0,0.0,-363.1705656785534,-6085374277.845001,3.530492634969428,0.0,174258550453.58807,174258550453.58807,0.7517556482615539\n30-40,16758567.547113657,12594742.104993574,75.15404923234492,0.0,0.0,-545.4821299157427,-9141499119.936401,5.303534974506792,0.0,174541559471.45193,174541559471.45193,0.8831608535788682\n40-50,16773613.727108352,12660857.09556769,75.48079562072002,0.0,0.0,-681.0025725524633,-11422874099.1621,6.627098192480648,0.0,217584771794.86017,217584771794.86017,0.8453855818258083\n50-60,16771931.416035704,13428375.709253956,80.06457560645065,0.0,0.0,-865.3227315933052,-14513133507.019587,8.419944052316474,0.0,264342720388.14972,264342720388.14972,0.8658035805012565\n60-70,16758906.325193971,13155457.212602634,78.49830387097393,0.0,0.0,-1110.1903130199014,-18605575459.0383,10.794216448879489,0.0,313450357002.8894,313450357002.8894,0.8706646916433192\n70-80,16767047.255098533,13025282.396918174,77.68381754251595,0.0,0.0,-1464.0449053937486,-24547710112.323246,14.241607138684067,0.0,352787595643.9553,352787595643.9553,0.8904106644299192\n80-90,16655316.987026913,13875763.593914766,83.31131496760354,0.0,0.0,-2075.0265300301016,-34560224614.14186,20.050470668227447,0.0,375360839252.89984,375360839252.89984,0.9580637549613691\n90-100,16873639.27867274,14251767.231668305,84.46172752834462,416.19416507242795,0.00246653468287942,-2867.9666200153765,-48393034209.41376,28.07571778816898,0.0,603837538510.9187,603837538510.9187,0.687707815322125\nALL,167631804.54,126922453.47881874,75.7150194899517,416.19416507242795,0.00024827875963902567,-1028.2425331030283,-172366151328.8413,100.0,0.0,2641281325881.5225,2641281325881.5225,0.8142373941963488\n90-95,8483119.255172864,7205281.750865866,84.93670233943966,0.0,0.0,-2595.596698579495,-22018756332.382828,12.774408526634266,0.0,278229680228.864,278229680228.864,0.8911801454468904\n95-99,6713825.91788883,5548141.823415874,82.63755854367598,0.0,0.0,-3090.114245632573,-20746489111.56546,12.036289579840515,0.0,281643303572.3564,281643303572.3564,0.7336816001495494\nTop 1%,1676694.1056110463,1498343.6573865633,89.36297040541656,416.19416507242795,0.024822307401191235,-3356.479125579381,-5627788765.465467,3.265019681694194,0.0,43964554709.69826,43964554709.69826,0.3336213666275123\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_0
ind_tax791,193,156.08
payroll_tax-173,157,344,484.92
combined_tax-172,366,151,328.84
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_0
ind_tax1,196,382,059,681.42
payroll_tax1,136,354,175,708.77
combined_tax2,332,736,235,390.19
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_0
ind_tax1,197,173,252,837.50
payroll_tax963,196,831,223.85
combined_tax2,160,370,084,061.35
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_0c00100_0num_returns_StandardDed_0standard_0num_returns_ItemDed_0c04470_0c04600_0c04800_0taxbc_0c62100_0num_returns_AMT_0c09600_0c05800_0c07100_0othertaxes_0refund_0iitax_0payrolltax_0combined_0ubi_0benefit_cost_total_0benefit_value_total_0expanded_income_0aftertax_income_0
<$0K58,769.73-6,713,814,134.9158,769.73679,923,306.300.000.00569,432,076.040.000.00-6,713,814,134.910.000.000.000.000.00838,674.25-838,674.2516,356,022.0115,517,347.760.00678,939,677.69678,939,677.69-5,959,072,947.46-5,974,590,295.22
=$0K1,087,421.060.001,087,421.069,158,748,549.300.000.008,243,313,239.080.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K12,189,851.0238,621,441,181.9812,155,190.1264,849,657,572.2734,660.90131,223,849.1242,919,209,411.692,130,243,170.64141,266,348.0838,497,777,221.520.000.00141,266,348.0845,301,199.590.003,825,696,717.11-3,729,731,568.635,132,247,954.501,402,516,385.870.0017,870,245,700.7817,870,245,700.7856,495,205,433.7255,092,689,047.84
$10-20K14,074,882.40121,646,608,505.4713,418,112.7898,160,379,132.76656,769.616,985,517,222.7778,034,735,450.9220,226,802,809.001,861,872,045.40117,123,333,140.900.000.001,861,872,045.40353,965,203.860.0013,970,125,058.85-12,462,218,217.3117,209,709,904.374,747,491,687.060.0089,646,609,445.6889,646,609,445.68217,544,445,865.13212,796,954,178.07
$20-30K18,090,928.80256,588,186,102.9314,888,489.39119,342,157,368.503,202,439.4232,592,091,185.85112,126,880,102.7286,917,204,932.209,125,472,547.39236,487,289,783.9873,054.98137,708,030.789,263,180,578.171,211,105,572.100.0018,065,276,959.25-10,013,201,953.1936,783,739,635.1126,770,537,681.920.00176,547,751,730.11176,547,751,730.11453,552,536,679.33426,781,998,997.41
$30-40K18,345,878.17409,603,975,095.9413,037,207.12113,741,425,507.715,308,671.0561,978,277,730.68123,641,403,303.83181,524,675,723.3421,210,758,061.84370,805,188,225.4492,095.7083,109,340.5021,293,867,402.342,610,153,670.460.0014,294,350,406.794,389,363,325.0958,285,294,817.8662,674,658,142.950.00197,450,132,278.03197,450,132,278.03640,869,167,736.57578,194,509,593.62
$40-50K15,985,018.75481,071,430,095.5510,590,003.9699,302,065,952.005,395,014.7971,505,588,581.40118,701,367,704.48243,103,990,611.8129,647,447,229.09438,247,040,176.0466,533.50145,344,050.1529,792,791,279.243,260,243,072.650.009,658,283,094.8716,874,265,111.7266,691,374,362.0483,565,639,473.760.00199,499,916,906.49199,499,916,906.49718,849,456,816.83635,283,817,343.07
$50-75K27,227,522.851,165,320,241,049.4015,707,567.77166,578,706,927.5511,519,955.08181,319,856,203.05231,594,405,767.03671,132,554,128.7389,032,695,301.631,054,361,968,625.4573,253.15142,455,558.4989,175,150,860.117,393,058,573.910.0013,115,506,877.1968,666,585,409.01156,213,757,043.16224,880,342,452.180.00433,884,731,243.11433,884,731,243.111,673,487,255,923.921,448,606,913,471.74
$75-100K18,431,318.731,186,892,722,626.287,874,181.2187,861,364,960.9910,557,137.52206,008,870,024.58165,319,447,673.73767,087,609,271.33113,769,683,379.261,061,973,525,852.2074,679.39305,173,245.55114,074,856,624.817,166,530,837.690.003,111,391,775.91103,796,934,011.21148,232,635,417.34252,029,569,428.550.00348,634,420,039.35348,634,420,039.351,595,446,019,269.361,343,416,449,840.81
$100-200K31,769,349.533,419,273,352,398.498,930,065.14106,343,679,021.8022,839,284.39560,724,304,477.46315,524,756,899.952,484,770,907,463.86408,110,609,265.103,101,125,858,496.9469,598.38112,070,454.53408,222,679,719.638,286,349,608.190.001,763,372,125.96398,172,957,985.48416,294,477,974.27814,467,435,959.750.00773,793,716,613.05773,793,716,613.054,383,651,545,470.613,569,184,109,510.86
$200-500K9,414,153.542,068,915,746,804.641,409,073.3216,332,741,133.828,005,080.23274,798,194,101.3994,759,725,611.821,693,474,079,710.40355,273,558,617.911,929,931,951,798.942,763,823.379,010,024,365.29364,283,582,983.20176,187,928.921,096,311,340.09515,787,981.28364,687,918,413.10196,974,041,704.09561,661,960,117.190.00377,395,789,344.59377,395,789,344.592,578,549,527,024.582,016,887,566,907.39
$500-1000K714,774.77437,278,803,393.2770,319.28952,527,142.95644,455.4936,882,482,935.69352,613,899.47399,220,065,569.90105,385,952,589.18420,461,706,608.19349,930.304,215,985,709.14109,601,938,298.3216,137,922.281,310,121,853.22108,842,262.91110,787,079,966.3520,988,616,766.76131,775,696,733.110.0023,726,437,284.1223,726,437,284.12477,038,645,012.75345,262,948,279.64
>$1000K241,935.19497,693,950,365.884,748.8548,160,496.70237,186.3423,412,402,563.8017,780,390.39474,215,606,914.98148,992,303,061.89489,100,017,498.1886,574.011,386,554,826.28150,378,857,888.173,702,956.954,837,790,941.610.00155,212,945,872.8313,531,924,107.27168,744,869,980.100.002,152,635,618.532,152,635,618.53514,144,014,633.52345,399,144,653.42
ALL167,631,804.5410,076,192,643,484.9099,231,149.72883,351,537,072.6768,400,654.821,456,338,808,875.791,291,805,071,531.177,023,803,740,306.211,282,551,618,446.789,251,401,843,292.883,649,542.7815,538,425,580.701,298,090,044,027.4830,522,736,546.607,244,224,134.9278,429,471,934.381,196,382,059,681.421,136,354,175,708.772,332,736,235,390.190.002,641,281,325,881.522,641,281,325,881.5213,303,668,746,918.8510,970,932,511,528.66
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_0c00100_0num_returns_StandardDed_0standard_0num_returns_ItemDed_0c04470_0c04600_0c04800_0taxbc_0c62100_0num_returns_AMT_0c09600_0c05800_0c07100_0othertaxes_0refund_0iitax_0payrolltax_0combined_0ubi_0benefit_cost_total_0benefit_value_total_0expanded_income_0aftertax_income_0
<$0K58,769.73-6,713,814,134.9158,769.73679,923,306.300.000.00569,432,076.040.000.00-6,713,814,134.910.000.000.000.000.00838,674.25-838,674.2513,790,371.5012,951,697.250.00678,939,677.69678,939,677.69-5,960,355,772.71-5,973,307,469.96
=$0K1,087,421.060.001,087,421.069,158,748,549.300.000.008,243,313,239.080.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K12,189,851.0238,627,115,320.3512,155,190.1264,849,657,572.2734,660.90131,223,849.1242,919,209,411.692,130,243,170.64141,266,348.0838,503,451,359.900.000.00141,266,348.0845,301,199.590.003,822,878,749.10-3,726,913,600.614,328,041,563.42601,127,962.800.0017,870,245,700.7817,870,245,700.7856,098,776,376.5555,497,648,413.75
$10-20K14,074,882.40121,669,992,216.6313,418,112.7898,160,379,132.76656,769.616,985,334,426.6478,034,735,450.9220,238,690,703.251,863,060,834.83117,146,916,212.550.000.001,863,060,834.83354,154,077.000.0013,969,179,833.40-12,460,273,075.5714,513,659,206.402,053,386,130.830.0089,646,609,445.6889,646,609,445.68216,219,804,227.31214,166,418,096.48
$20-30K18,090,928.80256,768,727,843.5514,886,143.08119,312,603,522.773,204,785.7232,635,161,864.03112,126,880,102.7287,002,573,027.149,135,846,073.35236,637,149,642.8773,054.98137,708,030.789,273,554,104.121,212,179,102.240.0018,058,516,675.78-9,997,141,673.9031,040,854,048.5621,043,712,374.660.00176,547,751,730.11176,547,751,730.11450,861,635,626.68429,817,923,252.02
$30-40K18,345,878.17410,030,378,820.0413,028,715.17113,633,577,755.545,317,162.9962,094,560,141.35123,641,403,303.83181,855,317,055.9421,252,610,568.41371,156,830,018.0392,095.7083,109,340.5021,335,719,908.912,613,271,004.930.0014,268,280,407.474,454,168,496.5249,206,325,990.9653,660,494,487.480.00197,450,132,278.03197,450,132,278.03636,754,672,022.14583,094,177,534.66
$40-50K15,985,018.75481,347,041,304.9610,590,003.9699,302,065,952.005,395,014.7971,505,059,647.46118,701,367,704.48243,316,362,969.5929,674,481,633.90438,522,785,808.1266,533.50145,344,050.1529,819,825,684.043,263,367,777.640.009,638,794,119.6016,917,663,786.8056,268,357,006.6273,186,020,793.430.00199,499,916,906.49199,499,916,906.49713,893,482,003.29640,707,461,209.87
$50-75K27,227,522.851,165,808,666,549.7515,693,293.77166,488,067,001.0411,534,229.09181,522,322,131.78231,594,405,767.03671,587,245,026.9889,115,810,927.651,054,682,607,078.7473,253.15142,455,558.4989,258,266,486.147,397,517,834.890.0013,101,641,551.7568,759,107,099.50131,781,701,276.76200,540,808,376.260.00433,884,731,243.11433,884,731,243.111,661,751,089,316.021,461,210,280,939.76
$75-100K18,431,318.731,187,324,928,231.747,874,181.2187,861,364,960.9910,557,137.52206,006,667,878.72165,319,447,673.73767,479,938,876.20113,837,745,711.601,062,408,210,820.2974,679.39305,173,245.55114,142,918,957.157,167,514,448.490.003,104,655,062.25103,870,749,446.42125,039,108,214.83228,909,857,661.240.00348,634,420,039.35348,634,420,039.351,584,239,807,024.421,355,329,949,363.18
$100-200K31,769,349.533,420,318,797,762.838,921,722.73106,237,730,411.9122,847,626.80560,878,830,914.37315,524,756,899.952,485,811,947,816.19408,347,178,733.693,102,059,918,349.2869,598.38113,231,774.92408,460,410,508.618,282,455,468.760.001,758,616,718.48398,419,338,321.37351,386,434,457.48749,805,772,778.850.00773,793,716,613.05773,793,716,613.054,352,230,779,294.313,602,425,006,515.46
$200-500K9,414,153.542,069,508,291,577.741,409,073.3216,332,741,133.828,005,080.23274,787,277,758.1494,746,298,569.221,694,080,291,195.05355,448,099,391.881,930,528,176,921.662,763,823.379,020,507,855.48364,468,607,247.35176,167,819.551,098,342,808.49515,340,693.04364,875,441,543.24168,121,678,464.86532,997,120,008.100.00377,395,789,344.59377,395,789,344.592,564,710,501,515.502,031,713,381,507.39
$500-1000K714,774.77437,394,415,951.5570,319.28952,527,142.95644,455.4936,878,974,328.79351,653,013.18399,340,099,273.62105,429,283,500.34420,577,464,096.91349,930.304,214,440,284.77109,643,723,785.1016,137,922.281,310,163,718.02108,832,080.87110,828,917,499.9718,713,130,706.48129,542,048,206.450.0023,726,437,284.1223,726,437,284.12476,013,991,507.75346,471,943,301.30
>$1000K241,935.19497,746,109,592.284,748.8548,160,496.70237,186.3423,410,967,068.9317,780,390.39474,269,201,636.26149,013,389,944.85489,152,176,724.5886,574.011,385,501,873.70150,398,891,818.543,702,956.954,837,844,806.430.00155,233,033,668.0212,783,749,915.98168,016,783,584.000.002,152,635,618.532,152,635,618.53513,817,847,449.66345,801,063,865.66
ALL167,631,804.5410,079,830,651,036.5399,197,695.05883,017,546,938.3768,434,109.491,456,836,380,009.351,291,790,683,602.287,027,111,910,750.861,283,258,773,668.569,254,661,872,898.023,649,542.7815,547,472,014.321,298,806,245,682.8830,531,769,612.327,246,351,332.9478,347,574,566.001,197,173,252,837.50963,196,831,223.852,160,370,084,061.350.002,641,281,325,881.522,641,281,325,881.5213,220,632,030,590.9211,060,261,946,529.57
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_0tax_cut_0perc_cut_0tax_inc_0perc_inc_0mean_0tot_change_0share_of_change_0ubi_0benefit_cost_total_0benefit_value_total_0pc_aftertaxinc_0
<$0K58,769.730.000.000.000.000.000.000.000.00678,939,677.69678,939,677.69-0.02
=$0K1,087,421.060.000.000.000.000.000.000.000.000.000.00nan
$0-10K12,189,851.0289,494.980.73276,504.122.270.232,817,968.010.360.0017,870,245,700.7817,870,245,700.780.74
$10-20K14,074,882.4058,033.940.41134,417.480.960.141,945,141.740.250.0089,646,609,445.6889,646,609,445.680.64
$20-30K18,090,928.8091,676.190.51569,570.983.150.8916,060,279.292.030.00176,547,751,730.11176,547,751,730.110.71
$30-40K18,345,878.1725,906.930.141,360,070.267.413.5364,805,171.428.190.00197,450,132,278.03197,450,132,278.030.85
$40-50K15,985,018.7528,249.920.18961,061.146.012.7143,398,675.085.490.00199,499,916,906.49199,499,916,906.490.85
$50-75K27,227,522.852,762.830.011,313,405.564.823.4092,521,690.4811.690.00433,884,731,243.11433,884,731,243.110.87
$75-100K18,431,318.738,619.980.051,085,574.665.894.0073,815,435.209.330.00348,634,420,039.35348,634,420,039.350.89
$100-200K31,769,349.5322,544.620.072,684,768.658.457.76246,380,335.8931.140.00773,793,716,613.05773,793,716,613.050.93
$200-500K9,414,153.54112,509.721.20726,735.227.7219.92187,523,130.1523.700.00377,395,789,344.59377,395,789,344.590.74
$500-1000K714,774.7714,041.431.96104,632.8014.6458.5341,837,533.625.290.0023,726,437,284.1223,726,437,284.120.35
>$1000K241,935.1913,986.845.7847,415.7019.6083.0320,087,795.192.540.002,152,635,618.532,152,635,618.530.12
ALL167,631,804.54467,827.390.289,264,156.575.534.72791,193,156.08100.000.002,641,281,325,881.522,641,281,325,881.520.81
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_0tax_cut_0perc_cut_0tax_inc_0perc_inc_0mean_0tot_change_0share_of_change_0ubi_0benefit_cost_total_0benefit_value_total_0pc_aftertaxinc_0
<$0K58,769.734,002.156.810.000.00-43.66-2,565,650.510.000.00678,939,677.69678,939,677.69-0.02
=$0K1,087,421.060.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K12,189,851.028,977,022.6373.640.000.00-65.97-804,206,391.080.460.0017,870,245,700.7817,870,245,700.780.74
$10-20K14,074,882.409,624,946.2968.380.000.00-191.55-2,696,050,697.961.560.0089,646,609,445.6889,646,609,445.680.64
$20-30K18,090,928.8012,037,156.0666.540.000.00-317.45-5,742,885,586.543.320.00176,547,751,730.11176,547,751,730.110.71
$30-40K18,345,878.1713,351,472.0972.780.000.00-494.88-9,078,968,826.905.240.00197,450,132,278.03197,450,132,278.030.85
$40-50K15,985,018.7511,925,129.6974.600.000.00-652.05-10,423,017,355.426.020.00199,499,916,906.49199,499,916,906.490.85
$50-75K27,227,522.8521,644,088.2379.490.000.00-897.33-24,432,055,766.4014.110.00433,884,731,243.11433,884,731,243.110.87
$75-100K18,431,318.7314,632,068.4579.390.000.00-1,258.38-23,193,527,202.5113.390.00348,634,420,039.35348,634,420,039.350.89
$100-200K31,769,349.5325,984,252.6281.790.000.00-2,043.10-64,908,043,516.7937.490.00773,793,716,613.05773,793,716,613.050.93
$200-500K9,414,153.547,885,796.9383.770.000.00-3,064.79-28,852,363,239.2316.660.00377,395,789,344.59377,395,789,344.590.74
$500-1000K714,774.77629,324.6288.050.000.00-3,183.50-2,275,486,060.281.310.0023,726,437,284.1223,726,437,284.120.35
>$1000K241,935.19227,193.7193.91416.190.17-3,092.46-748,174,191.290.430.002,152,635,618.532,152,635,618.530.12
ALL167,631,804.54126,922,453.4875.72416.190.00-1,032.96-173,157,344,484.92100.000.002,641,281,325,881.522,641,281,325,881.520.81
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_0tax_cut_0perc_cut_0tax_inc_0perc_inc_0mean_0tot_change_0share_of_change_0ubi_0benefit_cost_total_0benefit_value_total_0pc_aftertaxinc_0
<$0K58,769.734,002.156.810.000.00-43.66-2,565,650.510.000.00678,939,677.69678,939,677.69-0.02
=$0K1,087,421.060.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K12,189,851.028,977,022.6373.640.000.00-65.74-801,388,423.070.460.0017,870,245,700.7817,870,245,700.780.74
$10-20K14,074,882.409,624,946.2968.380.000.00-191.41-2,694,105,556.231.560.0089,646,609,445.6889,646,609,445.680.64
$20-30K18,090,928.8012,037,156.0666.540.000.00-316.56-5,726,825,307.263.320.00176,547,751,730.11176,547,751,730.110.71
$30-40K18,345,878.1713,351,472.0972.780.000.00-491.35-9,014,163,655.475.230.00197,450,132,278.03197,450,132,278.030.85
$40-50K15,985,018.7511,925,129.6974.600.000.00-649.33-10,379,618,680.346.020.00199,499,916,906.49199,499,916,906.490.85
$50-75K27,227,522.8521,644,088.2379.490.000.00-893.93-24,339,534,075.9214.120.00433,884,731,243.11433,884,731,243.110.87
$75-100K18,431,318.7314,632,068.4579.390.000.00-1,254.37-23,119,711,767.3013.410.00348,634,420,039.35348,634,420,039.350.89
$100-200K31,769,349.5325,984,252.6281.790.000.00-2,035.35-64,661,663,180.9037.510.00773,793,716,613.05773,793,716,613.050.93
$200-500K9,414,153.547,885,796.9383.770.000.00-3,044.87-28,664,840,109.0916.630.00377,395,789,344.59377,395,789,344.590.74
$500-1000K714,774.77629,324.6288.050.000.00-3,124.97-2,233,648,526.661.300.0023,726,437,284.1223,726,437,284.120.35
>$1000K241,935.19227,193.7193.91416.190.17-3,009.43-728,086,396.100.420.002,152,635,618.532,152,635,618.530.12
ALL167,631,804.54126,922,453.4875.72416.190.00-1,028.24-172,366,151,328.84100.000.002,641,281,325,881.522,641,281,325,881.520.81
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_0c00100_0num_returns_StandardDed_0standard_0num_returns_ItemDed_0c04470_0c04600_0c04800_0taxbc_0c62100_0num_returns_AMT_0c09600_0c05800_0c07100_0othertaxes_0refund_0iitax_0payrolltax_0combined_0ubi_0benefit_cost_total_0benefit_value_total_0expanded_income_0aftertax_income_0
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p16,763,145.0258,531,306,757.7616,622,041.3098,659,813,881.28141,103.721,386,355,350.2870,955,039,561.522,959,048,967.42216,261,186.4057,670,465,412.980.000.00216,261,186.4057,492,873.380.007,387,693,800.01-7,228,925,486.998,908,402,027.511,679,476,540.530.0030,612,079,790.0130,612,079,790.0190,160,151,363.4788,480,674,822.95
10-2016,753,393.90165,308,051,921.8415,459,764.18116,525,216,069.521,293,629.7213,139,934,523.6994,792,947,678.0639,715,972,132.753,688,624,463.35155,945,235,078.685,912.075,449,107.093,694,073,570.44497,284,608.720.0015,625,400,819.11-12,428,611,857.3823,692,930,486.0511,264,318,628.670.00134,505,313,572.80134,505,313,572.80310,590,854,749.22299,326,536,120.55
20-3016,756,243.08272,762,534,160.8713,169,573.41108,837,856,385.573,586,669.6736,770,444,443.68106,641,380,447.18101,801,135,936.7411,367,801,064.12250,632,483,836.3785,663.21160,433,276.4811,528,234,340.601,503,312,392.140.0016,287,132,510.36-6,262,210,561.9039,236,062,607.8032,973,852,045.900.00174,258,550,453.59174,258,550,453.59469,755,407,182.98436,781,555,137.08
30-4016,758,567.55414,601,347,324.9011,466,832.76100,883,617,525.605,291,734.7963,683,905,300.38116,159,754,020.86191,570,898,832.2122,534,936,805.44375,651,227,391.0673,575.3954,934,987.7022,589,871,793.142,654,823,169.510.0012,671,120,210.807,263,928,412.8359,011,544,786.3466,275,473,199.170.00174,541,559,471.45174,541,559,471.45622,971,666,905.26556,696,193,706.08
40-5016,773,613.73535,753,367,020.0210,893,186.85105,918,814,905.715,880,426.8879,747,159,667.61128,354,833,388.21275,962,526,957.3133,753,188,279.66487,013,007,481.1997,042.72148,272,413.3333,901,460,692.993,831,423,798.200.0010,561,477,994.1719,508,558,900.6173,277,412,692.7292,785,971,593.330.00217,584,771,794.86217,584,771,794.86792,941,866,954.72700,155,895,361.39
50-6016,771,931.42692,356,048,185.949,611,589.0499,639,190,338.007,160,342.38114,626,276,576.09140,883,220,711.27392,846,430,190.7951,725,231,403.48621,955,802,006.9740,424.10129,236,942.7451,854,468,346.224,171,452,695.560.008,470,339,496.0739,212,676,154.5993,300,332,833.47132,513,008,988.060.00264,342,720,388.15264,342,720,388.151,005,926,074,420.61873,413,065,432.54
60-7016,758,906.33933,440,872,358.538,353,395.7093,079,677,523.788,405,510.62148,426,275,220.22149,205,772,588.39584,313,198,366.0883,944,416,252.21845,664,851,671.3075,972.64314,139,985.7984,258,556,238.006,069,285,455.970.003,748,140,255.6874,441,130,526.35119,304,499,720.55193,745,630,246.910.00313,450,357,002.89313,450,357,002.891,294,482,108,593.281,100,736,478,346.38
70-8016,767,047.261,281,465,122,360.346,354,482.2972,385,151,725.5110,412,564.97226,465,605,582.10152,856,784,820.11862,151,695,506.05128,591,524,176.241,142,496,788,267.246,820.2225,128,170.58128,616,652,346.826,060,114,158.600.001,746,054,720.67120,810,483,467.55157,164,000,562.81277,974,484,030.360.00352,787,595,643.96352,787,595,643.961,690,545,178,474.341,412,570,694,443.98
80-9016,655,316.991,803,681,089,281.604,458,488.2654,307,200,240.4412,196,828.72299,966,565,996.88169,916,708,967.851,301,961,938,798.68209,120,618,821.371,631,100,697,128.8325,846.7213,180,152.53209,133,798,973.905,095,728,739.380.00922,458,544.00203,115,611,690.52222,215,683,952.52425,331,295,643.050.00375,360,839,252.90375,360,839,252.902,285,301,591,515.391,859,970,295,872.34
90-10016,873,639.283,918,292,904,113.102,841,795.9333,114,998,477.2514,031,843.35472,126,286,214.85162,038,629,347.723,270,520,894,618.17737,609,015,994.513,683,271,285,018.253,238,285.7114,687,650,544.45752,296,666,538.96581,818,655.147,244,224,134.921,009,653,583.51757,949,418,435.23340,243,306,038.981,098,192,724,474.210.00603,837,538,510.92603,837,538,510.924,740,993,846,759.573,642,801,122,285.36
ALL167,631,804.5410,076,192,643,484.9099,231,149.72883,351,537,072.6768,400,654.821,456,338,808,875.791,291,805,071,531.177,023,803,740,306.211,282,551,618,446.789,251,401,843,292.883,649,542.7815,538,425,580.701,298,090,044,027.4830,522,736,546.607,244,224,134.9278,429,471,934.381,196,382,059,681.421,136,354,175,708.772,332,736,235,390.190.002,641,281,325,881.522,641,281,325,881.5213,303,668,746,918.8510,970,932,511,528.66
90-958,483,119.261,230,602,807,951.481,717,071.8919,867,376,803.696,766,047.37185,369,601,048.4688,121,561,638.30947,826,580,868.90173,806,187,327.391,134,828,048,925.9064,224.25201,158,540.85174,007,345,868.24409,721,586.26819,682.42422,179,463.59173,176,264,500.81143,478,353,045.07316,654,617,545.880.00278,229,680,228.86278,229,680,228.861,585,309,157,123.441,268,654,539,577.56
95-996,713,825.921,470,152,595,114.72991,332.8211,529,359,662.915,722,493.10198,280,546,605.9170,825,533,985.481,198,121,860,498.97249,208,885,245.501,368,678,131,586.622,143,593.165,875,439,825.01255,084,325,070.51144,975,317.42655,915,934.24464,748,190.71255,130,517,496.63141,532,000,948.69396,662,518,445.320.00281,643,303,572.36281,643,303,572.361,852,735,849,533.201,456,073,331,087.87
Top 1%1,676,694.111,217,537,501,046.90133,391.221,718,262,010.651,543,302.8888,476,138,560.483,091,533,723.941,124,572,453,250.31314,593,943,421.621,179,765,104,505.741,030,468.308,611,052,178.58323,204,995,600.2027,121,751.466,587,488,518.26122,725,929.21329,642,636,437.7955,232,952,045.22384,875,588,483.010.0043,964,554,709.7043,964,554,709.701,302,948,840,102.93918,073,251,619.92
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_0c00100_0num_returns_StandardDed_0standard_0num_returns_ItemDed_0c04470_0c04600_0c04800_0taxbc_0c62100_0num_returns_AMT_0c09600_0c05800_0c07100_0othertaxes_0refund_0iitax_0payrolltax_0combined_0ubi_0benefit_cost_total_0benefit_value_total_0expanded_income_0aftertax_income_0
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p16,763,145.0258,540,452,052.2516,622,041.3098,659,813,881.28141,103.721,386,355,350.2870,955,039,561.522,961,093,512.66216,465,640.9257,679,610,707.480.000.00216,465,640.9257,492,873.380.007,384,537,679.21-7,225,564,911.667,512,379,022.18286,814,110.520.0030,612,079,790.0130,612,079,790.0189,471,285,155.3089,184,471,044.78
10-2016,753,393.90165,369,255,921.3715,459,764.18116,525,216,069.521,293,629.7213,139,886,393.7994,792,947,678.0639,743,914,495.473,691,601,376.67156,006,432,319.365,912.075,449,107.093,697,050,483.76497,484,579.730.0015,624,894,433.38-12,425,328,529.3519,985,583,658.077,560,255,128.720.00134,505,313,572.80134,505,313,572.80308,798,385,334.76301,238,130,206.04
20-3016,756,243.08273,018,786,815.3713,158,735.16108,700,454,787.673,597,507.9236,932,959,558.69106,641,380,447.18101,966,131,208.6811,389,014,782.38250,779,898,932.5185,663.21160,433,276.4811,549,448,058.861,504,640,457.580.0016,276,198,598.96-6,231,390,997.6833,119,868,765.7426,888,477,768.060.00174,258,550,453.59174,258,550,453.59466,953,562,916.45440,065,085,148.39
30-4016,758,567.55414,979,749,610.2611,466,832.76100,883,617,525.605,291,734.7963,680,502,680.83116,159,754,020.86191,868,141,755.9822,572,121,331.85376,033,229,540.8573,575.3954,934,987.7022,627,056,319.562,659,185,055.850.0012,645,075,619.217,322,795,644.5049,811,178,434.7457,133,974,079.240.00174,541,559,471.45174,541,559,471.45618,746,690,641.50561,612,716,562.26
40-5016,773,613.73535,998,698,736.3810,893,186.85105,918,814,905.715,880,426.8879,746,701,198.95128,354,833,388.21276,149,152,260.1633,776,817,965.26487,258,473,620.2197,042.72148,272,413.3333,925,090,378.593,833,090,868.150.0010,545,816,902.3119,546,182,608.1261,816,914,886.0481,363,097,494.170.00217,584,771,794.86217,584,771,794.86787,438,009,845.25706,074,912,351.08
50-6016,771,931.42692,701,695,556.189,597,315.0499,548,550,411.497,174,616.38114,828,989,611.52140,883,220,711.27393,170,934,914.4051,787,289,697.46622,133,467,700.1040,424.10129,236,942.7451,916,526,640.204,174,009,578.060.008,458,834,347.8339,283,682,714.3178,716,192,766.73117,999,875,481.040.00264,342,720,388.15264,342,720,388.15998,974,982,506.67880,975,107,025.62
60-7016,758,906.33933,787,119,569.368,353,395.7093,079,677,523.788,405,510.62148,425,577,439.48149,205,772,588.39584,638,093,882.7284,003,124,628.76846,011,849,208.4875,972.64314,139,985.7984,317,264,614.556,071,285,816.720.003,742,838,059.7074,503,140,738.13100,636,914,049.74175,140,054,787.870.00313,450,357,002.89313,450,357,002.891,285,460,256,999.251,110,320,202,211.38
70-8016,767,047.261,281,811,712,765.046,346,139.8872,279,203,115.6210,420,907.38226,622,443,737.47152,856,784,820.11862,463,584,184.96128,644,131,517.401,142,731,130,043.766,820.2225,128,170.58128,669,259,687.986,061,295,120.450.001,741,820,844.25120,866,143,723.28132,560,630,194.76253,426,773,918.030.00352,787,595,643.96352,787,595,643.961,678,575,148,467.961,425,148,374,549.93
80-9016,655,316.991,804,303,736,602.904,458,488.2654,307,200,240.4412,196,828.72299,964,604,552.47169,916,708,967.851,302,582,798,905.56209,266,343,233.541,631,724,443,565.8925,846.7213,247,139.23209,279,590,372.775,090,812,354.750.00922,325,864.51203,266,452,153.52187,504,618,875.39390,771,071,028.910.00375,360,839,252.90375,360,839,252.902,268,561,068,159.051,877,789,997,130.14
90-10016,873,639.283,919,319,443,407.442,841,795.9333,114,998,477.2514,031,843.35472,108,359,485.86162,024,241,418.833,271,568,065,630.26737,911,863,494.313,684,303,337,259.393,238,285.7114,696,629,991.37752,608,493,485.68582,472,907.667,246,351,332.941,005,232,216.63758,267,139,694.33291,532,550,570.461,049,799,690,264.800.00603,837,538,510.92603,837,538,510.924,717,652,640,564.753,667,852,950,299.96
ALL167,631,804.5410,079,830,651,036.5399,197,695.05883,017,546,938.3768,434,109.491,456,836,380,009.351,291,790,683,602.287,027,111,910,750.861,283,258,773,668.569,254,661,872,898.023,649,542.7815,547,472,014.321,298,806,245,682.8830,531,769,612.327,246,351,332.9478,347,574,566.001,197,173,252,837.50963,196,831,223.852,160,370,084,061.350.002,641,281,325,881.522,641,281,325,881.5213,220,632,030,590.9211,060,261,946,529.57
90-958,483,119.261,230,945,143,668.671,717,071.8919,867,376,803.696,766,047.37185,367,387,168.3788,121,561,638.30948,162,865,265.39173,887,436,659.241,135,172,112,650.0864,224.25202,625,401.02174,090,062,060.26410,391,976.50915,494.55418,215,566.98173,262,370,011.33121,373,491,202.16294,635,861,213.490.00278,229,680,228.86278,229,680,228.861,574,596,398,162.081,279,960,536,948.59
95-996,713,825.921,470,523,256,930.76991,332.8211,529,359,662.915,722,493.10198,274,994,800.1770,820,969,443.131,198,499,833,616.74249,314,768,377.751,369,051,820,623.472,143,593.165,886,634,269.28255,201,402,647.04144,907,641.32657,568,389.51464,569,520.50255,249,493,874.72120,666,535,459.03375,916,029,333.760.00281,643,303,572.36281,643,303,572.361,842,672,302,536.511,466,756,273,202.75
Top 1%1,676,694.111,217,851,042,808.01133,391.221,718,262,010.651,543,302.8888,465,977,517.323,081,710,337.401,124,905,366,748.12314,709,658,457.321,180,079,403,985.831,030,468.308,607,370,321.07323,317,028,778.3927,173,289.846,587,867,448.87122,447,129.15329,755,275,808.2749,492,523,909.27379,247,799,717.550.0043,964,554,709.7043,964,554,709.701,300,383,939,866.17921,136,140,148.62
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_0tax_cut_0perc_cut_0tax_inc_0perc_inc_0mean_0tot_change_0share_of_change_0ubi_0benefit_cost_total_0benefit_value_total_0pc_aftertaxinc_0
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p16,763,145.0296,734.710.58328,497.621.960.203,360,575.330.420.0030,612,079,790.0130,612,079,790.010.80
10-2016,753,393.9098,726.350.59226,767.921.350.203,283,328.030.410.00134,505,313,572.80134,505,313,572.800.64
20-3016,756,243.0869,323.460.41804,389.514.801.8430,819,564.223.900.00174,258,550,453.59174,258,550,453.590.75
30-4016,758,567.55327.530.001,254,781.747.493.5158,867,231.677.440.00174,541,559,471.45174,541,559,471.450.88
40-5016,773,613.7328,507.320.17816,507.784.872.2437,623,707.514.760.00217,584,771,794.86217,584,771,794.860.85
50-6016,771,931.422,505.440.01882,071.925.264.2371,006,559.728.970.00264,342,720,388.15264,342,720,388.150.87
60-7016,758,906.330.000.00841,885.705.023.7062,010,211.787.840.00313,450,357,002.89313,450,357,002.890.87
70-8016,767,047.268,805.910.051,258,777.937.513.3255,660,255.737.030.00352,787,595,643.96352,787,595,643.960.89
80-9016,655,316.9911,463.540.071,405,679.918.449.06150,840,463.0019.060.00375,360,839,252.90375,360,839,252.900.96
90-10016,873,639.28151,433.140.901,444,796.548.5618.83317,721,259.1040.160.00603,837,538,510.92603,837,538,510.920.69
ALL167,631,804.54467,827.390.289,264,156.575.534.72791,193,156.08100.000.002,641,281,325,881.522,641,281,325,881.520.81
90-958,483,119.2610,895.160.13682,364.898.0410.1586,105,510.5210.880.00278,229,680,228.86278,229,680,228.860.89
95-996,713,825.9299,656.011.48486,880.347.2517.72118,976,378.1015.040.00281,643,303,572.36281,643,303,572.360.73
Top 1%1,676,694.1140,881.982.44275,551.3116.4367.18112,639,370.4914.240.0043,964,554,709.7043,964,554,709.700.33
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_0tax_cut_0perc_cut_0tax_inc_0perc_inc_0mean_0tot_change_0share_of_change_0ubi_0benefit_cost_total_0benefit_value_total_0pc_aftertaxinc_0
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p16,763,145.0211,667,457.8769.600.000.00-83.28-1,396,023,005.330.810.0030,612,079,790.0130,612,079,790.010.80
10-2016,753,393.9010,847,771.0764.750.000.00-221.29-3,707,346,827.992.140.00134,505,313,572.80134,505,313,572.800.64
20-3016,756,243.0811,414,979.2068.120.000.00-365.01-6,116,193,842.063.530.00174,258,550,453.59174,258,550,453.590.75
30-4016,758,567.5512,594,742.1075.150.000.00-548.99-9,200,366,351.605.310.00174,541,559,471.45174,541,559,471.450.88
40-5016,773,613.7312,660,857.1075.480.000.00-683.25-11,460,497,806.676.620.00217,584,771,794.86217,584,771,794.860.85
50-6016,771,931.4213,428,375.7180.060.000.00-869.56-14,584,140,066.748.420.00264,342,720,388.15264,342,720,388.150.87
60-7016,758,906.3313,155,457.2178.500.000.00-1,113.89-18,667,585,670.8110.780.00313,450,357,002.89313,450,357,002.890.87
70-8016,767,047.2613,025,282.4077.680.000.00-1,467.36-24,603,370,368.0514.210.00352,787,595,643.96352,787,595,643.960.89
80-9016,655,316.9913,875,763.5983.310.000.00-2,084.08-34,711,065,077.1420.050.00375,360,839,252.90375,360,839,252.900.96
90-10016,873,639.2814,251,767.2384.46416.190.00-2,886.80-48,710,755,468.5228.130.00603,837,538,510.92603,837,538,510.920.69
ALL167,631,804.54126,922,453.4875.72416.190.00-1,032.96-173,157,344,484.92100.000.002,641,281,325,881.522,641,281,325,881.520.81
90-958,483,119.267,205,281.7584.940.000.00-2,605.75-22,104,861,842.9112.770.00278,229,680,228.86278,229,680,228.860.89
95-996,713,825.925,548,141.8282.640.000.00-3,107.84-20,865,465,489.6612.050.00281,643,303,572.36281,643,303,572.360.73
Top 1%1,676,694.111,498,343.6689.36416.190.02-3,423.66-5,740,428,135.953.320.0043,964,554,709.7043,964,554,709.700.33
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_0tax_cut_0perc_cut_0tax_inc_0perc_inc_0mean_0tot_change_0share_of_change_0ubi_0benefit_cost_total_0benefit_value_total_0pc_aftertaxinc_0
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p16,763,145.0211,667,457.8769.600.000.00-83.08-1,392,662,430.010.810.0030,612,079,790.0130,612,079,790.010.80
10-2016,753,393.9010,847,771.0764.750.000.00-221.09-3,704,063,499.962.150.00134,505,313,572.80134,505,313,572.800.64
20-3016,756,243.0811,414,979.2068.120.000.00-363.17-6,085,374,277.853.530.00174,258,550,453.59174,258,550,453.590.75
30-4016,758,567.5512,594,742.1075.150.000.00-545.48-9,141,499,119.945.300.00174,541,559,471.45174,541,559,471.450.88
40-5016,773,613.7312,660,857.1075.480.000.00-681.00-11,422,874,099.166.630.00217,584,771,794.86217,584,771,794.860.85
50-6016,771,931.4213,428,375.7180.060.000.00-865.32-14,513,133,507.028.420.00264,342,720,388.15264,342,720,388.150.87
60-7016,758,906.3313,155,457.2178.500.000.00-1,110.19-18,605,575,459.0410.790.00313,450,357,002.89313,450,357,002.890.87
70-8016,767,047.2613,025,282.4077.680.000.00-1,464.04-24,547,710,112.3214.240.00352,787,595,643.96352,787,595,643.960.89
80-9016,655,316.9913,875,763.5983.310.000.00-2,075.03-34,560,224,614.1420.050.00375,360,839,252.90375,360,839,252.900.96
90-10016,873,639.2814,251,767.2384.46416.190.00-2,867.97-48,393,034,209.4128.080.00603,837,538,510.92603,837,538,510.920.69
ALL167,631,804.54126,922,453.4875.72416.190.00-1,028.24-172,366,151,328.84100.000.002,641,281,325,881.522,641,281,325,881.520.81
90-958,483,119.267,205,281.7584.940.000.00-2,595.60-22,018,756,332.3812.770.00278,229,680,228.86278,229,680,228.860.89
95-996,713,825.925,548,141.8282.640.000.00-3,090.11-20,746,489,111.5712.040.00281,643,303,572.36281,643,303,572.360.73
Top 1%1,676,694.111,498,343.6689.36416.190.02-3,356.48-5,627,788,765.473.270.0043,964,554,709.7043,964,554,709.700.33
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_1.json b/webapp/apps/taxbrain/tests/response_year_1.json index 4f615483..0736ec02 100644 --- a/webapp/apps/taxbrain/tests/response_year_1.json +++ b/webapp/apps/taxbrain/tests/response_year_1.json @@ -1 +1 @@ -{"aggr_1": {"payroll_tax_1": "1247594361392.96", "combined_tax_1": "2450147423184.30", "ind_tax_1": "1202553061791.34"}, "aggr_2": {"payroll_tax_1": "1847004536084.94", "combined_tax_1": "3503968089547.24", "ind_tax_1": "1656963553462.30"}, "diff_ptax_xdec": {"ALL_1": ["172188405.32", "285.24", "0.00", "130773953.12", "75.95", "3481.13", "599410174691.98", "100.00", "3528216766643.18", "2745126151361.65", "2745126151361.65", "22.34"], "0-10p_1": ["15887647.51", "0.00", "0.00", "11687376.37", "73.56", "288.48", "4583201858.65", "0.76", "207495117079.09", "31944696759.57", "31944696759.57", "193.03"], "40-50_1": ["17218719.65", "0.00", "0.00", "13165551.46", "76.46", "2254.23", "38814931407.45", "6.48", "339281619588.73", "228563536242.59", "228563536242.59", "36.69"], "0-10n_1": ["91191.68", "0.00", "0.00", "19827.58", "21.74", "253.77", "23141639.25", "0.00", "1845384744.59", "938548600.66", "938548600.66", "-7.10"], "20-30_1": ["17217818.08", "0.00", "0.00", "12076317.93", "70.14", "1217.01", "20954272630.93", "3.50", "288106713145.15", "165397843880.85", "165397843880.85", "53.02"], "Top 1%_1": ["1722638.50", "285.24", "0.02", "1509649.12", "87.64", "11100.59", "19122303092.87", "3.19", "46793407058.26", "77029246926.12", "77029246926.12", "1.93"], "30-40_1": ["17220019.73", "0.00", "0.00", "12586088.66", "73.09", "1667.57", "28715529752.85", "4.79", "310035294495.04", "201248795328.12", "201248795328.12", "43.12"], "50-60_1": ["17219120.76", "0.00", "0.00", "13537124.18", "78.62", "2950.22", "50800276661.06", "8.48", "365080883439.54", "264892500668.24", "264892500668.24", "30.71"], "90-100_1": ["17218906.94", "285.24", "0.00", "14807014.32", "85.99", "10043.60", "172939888085.18", "28.85", "471022404723.91", "599091959011.85", "599091959011.85", "6.58"], "10-20_1": ["17218855.19", "0.00", "0.00", "11202634.46", "65.06", "735.06", "12656882210.15", "2.11", "261932951509.61", "130408544972.11", "130408544972.11", "72.85"], "90-95_1": ["8609346.91", "0.00", "0.00", "7311662.54", "84.93", "9064.48", "78039230699.02", "13.02", "233154513383.95", "260118939312.61", "260118939312.61", "10.26"], "0-10z_1": ["1239654.72", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "22825860853.49", "0.00", "0.00", "inf"], "80-90_1": ["17219583.75", "0.00", "0.00", "14206232.80", "82.50", "6879.03", "118454114467.19", "19.76", "448898816321.63", "437677372563.24", "437677372563.24", "14.58"], "60-70_1": ["17218361.02", "0.00", "0.00", "13628816.69", "79.15", "3786.32", "65194294703.56", "10.88", "390930932996.67", "316966489318.17", "316966489318.17", "25.38"], "95-99_1": ["6886921.53", "0.00", "0.00", "5985702.66", "86.91", "11003.23", "75778354293.29", "12.64", "191074484281.70", "261943772773.13", "261943772773.13", "6.56"], "70-80_1": ["17218526.29", "0.00", "0.00", "13856968.67", "80.48", "5010.51", "86273641275.71", "14.39", "420760787745.76", "367995864016.25", "367995864016.25", "19.89"]}, "diff_comb_xbin": {"$200-500K_1": ["11634440.40", "0.00", "0.00", "11252433.29", "96.72", "16519.43", "192194298075.03", "18.24", "319952951337.01", "425246660865.10", "425246660865.10", "7.23"], "ALL_1": ["172188405.32", "129.46", "0.00", "146012024.74", "84.80", "6120.16", "1053820666362.95", "100.00", "3528216766643.18", "2745126151361.65", "2745126151361.65", "22.34"], ">$1000K_1": ["325250.12", "129.46", "0.04", "324835.33", "99.87", "20538.85", "6680263298.67", "0.63", "8840823790.39", "5517833337.36", "5517833337.36", "0.79"], "$30-40K_1": ["18260480.93", "0.00", "0.00", "14341300.03", "78.54", "3282.26", "59935641042.69", "5.69", "320939901672.48", "197236691182.92", "197236691182.92", "45.45"], "$20-30K_1": ["18504198.61", "0.00", "0.00", "13061537.70", "70.59", "2420.25", "44784785395.71", "4.25", "298980550643.32", "173559483260.67", "173559483260.67", "58.17"], "<$0K_1": ["91191.68", "0.00", "0.00", "22930.18", "25.15", "420.79", "38372909.43", "0.00", "1845384744.59", "938548600.66", "938548600.66", "-7.10"], "$500-1000K_1": ["974665.71", "0.00", "0.00", "963720.82", "98.88", "19120.82", "18636403545.06", "1.77", "26300705437.05", "47442487521.97", "47442487521.97", "2.47"], "$75-100K_1": ["19245765.21", "0.00", "0.00", "17577135.35", "91.33", "6867.07", "132161961884.05", "12.54", "443788255118.56", "363631809280.83", "363631809280.83", "24.04"], "$100-200K_1": ["33529470.61", "0.00", "0.00", "31760008.40", "94.72", "10969.59", "367804600475.72", "34.90", "862313601240.36", "823460907721.46", "823460907721.46", "15.34"], "=$0K_1": ["1239654.72", "0.00", "0.00", "366930.04", "29.60", "358.65", "444603447.72", "0.04", "22825860853.49", "0.00", "0.00", "inf"], "$10-20K_1": ["14183203.05", "0.00", "0.00", "10346462.43", "72.95", "1572.30", "22300185673.60", "2.12", "209668114897.20", "81401923597.45", "81401923597.45", "87.43"], "$40-50K_1": ["14667120.67", "0.00", "0.00", "12152488.46", "82.86", "3911.26", "57366906533.38", "5.44", "281413980480.54", "189521639740.85", "189521639740.85", "38.99"], "$0-10K_1": ["11952318.34", "0.00", "0.00", "9571827.09", "80.08", "749.24", "8955196832.86", "0.85", "151100293010.91", "17802727357.49", "17802727357.49", "259.73"], "$50-75K_1": ["27580645.27", "0.00", "0.00", "24270415.62", "88.00", "5167.30", "142517447249.03", "13.52", "580246343417.29", "419365438894.88", "419365438894.88", "31.24"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"ALL_1": ["172188405.32", "14633014220369.44", "152452695.50", "3212010973897.22", "19595425.99", "583367288150.90", "0.00", "10900424599069.11", "1809295567900.35", "14211300641696.38", "7596781.48", "10376026021.74", "1819671593922.10", "143260991855.15", "9056300109.24", "28503348713.88", "1656963553462.30", "1847004536084.94", "3503968089547.24", "3528216766643.18", "2745126151361.65", "2745126151361.65", "18294078717804.08", "14790110628256.83"], "0-10p_1": ["15887647.51", "275619967178.32", "15489895.95", "198633572877.80", "389676.43", "4368656723.05", "0.00", "88790388525.57", "8897063478.91", "271533928319.91", "4119490.34", "3848554959.43", "12745618438.34", "4375676024.82", "0.00", "6425145023.15", "1944797390.37", "13818117563.48", "15762914953.85", "207495117079.09", "31944696759.57", "31944696759.57", "311182777243.70", "295419862289.85"], "40-50_1": ["17218719.65", "902949208188.94", "16375402.10", "341534335999.24", "836137.78", "18464196689.71", "0.00", "547376221524.11", "63605470103.64", "888154904095.99", "239749.43", "535828857.20", "64141298960.84", "15079767789.86", "0.00", "1971386393.71", "47090144777.27", "117533756627.08", "164623901404.35", "339281619588.73", "228563536242.59", "228563536242.59", "1194266229537.91", "1029642328133.55"], "0-10n_1": ["91191.68", "-11051028809.90", "16431.29", "1882149913.93", "61.31", "8199314.18", "0.00", "775027653.14", "189508709.39", "-11058602823.39", "0.00", "0.00", "189508709.39", "1090335.77", "2042026.19", "240917.78", "190219482.03", "72508221.35", "262727703.38", "1845384744.59", "938548600.66", "938548600.66", "-22725478049.63", "-22988205753.01"], "20-30_1": ["17217818.08", "581827214801.25", "16807936.69", "309451815410.41", "398359.80", "8659465298.94", "0.00", "278047391459.06", "30055656290.36", "574300716295.49", "590219.68", "990412845.21", "31046069135.58", "9619887816.24", "0.00", "5317501025.03", "16108680294.31", "63598857024.25", "79707537318.56", "288106713145.15", "165397843880.85", "165397843880.85", "781621951279.27", "701914413960.71"], "Top 1%_1": ["1722638.50", "1435676164930.77", "583010.86", "16047286620.75", "1139497.26", "48984297750.67", "0.00", "1365114951191.19", "358483676893.37", "1398366916711.21", "94294.32", "959211270.38", "359442888163.76", "197679856.73", "7514767552.06", "28827015.99", "366731148843.10", "79731889744.41", "446463038587.50", "46793407058.26", "77029246926.12", "77029246926.12", "1568758608589.19", "1122295570001.69"], "30-40_1": ["17220019.73", "717833591160.50", "16680975.33", "325058423905.34", "530143.81", "11293919664.81", "0.00", "389698695083.02", "43100767015.72", "708392606926.86", "331558.95", "638160613.45", "43738927629.17", "11894429702.44", "0.00", "3107468748.55", "28737029178.18", "87148643830.49", "115885673008.67", "310035294495.04", "201248795328.12", "201248795328.12", "967384778235.51", "851499105226.85"], "50-60_1": ["17219120.76", "1127543393512.87", "16062268.92", "356914171272.98", "1150186.45", "27807184784.51", "0.00", "745828591765.25", "93989342522.34", "1105915293494.35", "143068.80", "383474737.67", "94372817260.01", "16742300709.18", "0.00", "1283058507.66", "76347458043.17", "153606117602.67", "229953575645.84", "365080883439.54", "264892500668.24", "264892500668.24", "1466961274161.53", "1237007698515.69"], "90-100_1": ["17218906.94", "4957744548694.74", "9710630.47", "270657790102.11", "7505942.33", "262504157149.15", "0.00", "4407033127554.51", "921926521099.57", "4770825277741.96", "230326.58", "1295757000.00", "923222278099.57", "19984845911.27", "9054255451.95", "207593921.00", "912084093719.24", "557155069021.09", "1469239162740.33", "471022404723.91", "599091959011.85", "599091959011.85", "5872683825313.75", "4403444662573.42"], "10-20_1": ["17218855.19", "439900664824.80", "16894090.06", "292374469357.11", "317928.34", "5320336162.24", "0.00", "164333668128.02", "17104419392.81", "435145511817.10", "1399775.14", "1599716077.18", "18704135469.98", "6170983727.39", "0.00", "8662993724.87", "3870158017.72", "38251551367.78", "42121709385.50", "261932951509.61", "130408544972.11", "130408544972.11", "588109803949.69", "545988094564.19"], "90-95_1": ["8609346.91", "1629429718021.42", "5532846.95", "154068998379.04", "3074955.46", "99881806748.25", "0.00", "1370874248829.21", "239160366581.82", "1560300761306.02", "53084.33", "95564850.63", "239255931432.45", "10925597235.28", "58768624.02", "90237571.15", "228298865250.04", "238269339430.54", "466568204680.58", "233154513383.95", "260118939312.61", "260118939312.61", "2012773467662.65", "1546205262982.07"], "0-10z_1": ["1239654.72", "22800054363.38", "1228134.21", "24806677441.17", "11197.23", "16122170.82", "0.00", "2245668933.11", "231401851.83", "22785972791.88", "315319.78", "433234746.76", "664636598.59", "220033150.87", "0.00", "0.00", "444603447.72", "0.00", "444603447.72", "22825860853.49", "0.00", "0.00", "22825860853.49", "22381257405.77"], "80-90_1": ["17219583.75", "2404599436757.13", "12942125.80", "346750158317.22", "4272927.59", "132754064729.98", "0.00", "1918568990076.69", "303532729290.57", "2312973266648.62", "81751.31", "179448504.15", "303712177794.72", "21178945518.49", "2631.10", "274075364.68", "282259159542.64", "358241227039.90", "640500386582.55", "448898816321.63", "437677372563.24", "437677372563.24", "3010590107322.79", "2370089720740.24"], "60-70_1": ["17218361.02", "1409957329190.29", "15553981.07", "370410104458.77", "1658782.64", "42755391835.92", "0.00", "998084508319.45", "132292917534.61", "1378114877578.14", "90672.62", "282782304.10", "132575699838.71", "18266671242.21", "0.00", "802774698.62", "113506253897.88", "197023146403.32", "310529400301.20", "390930932996.67", "316966489318.17", "316966489318.17", "1816530082116.85", "1506000681815.65"], "95-99_1": ["6886921.53", "1892638665742.54", "3594772.66", "100541505102.33", "3291489.61", "113638052650.22", "0.00", "1671043927534.10", "324282477624.37", "1812157599724.73", "82947.93", "240980878.98", "324523458503.36", "8861568819.26", "1480719275.87", "88529333.86", "317054079626.11", "239153839846.14", "556207919472.25", "191074484281.70", "261943772773.13", "261943772773.13", "2291151749061.90", "1734943829589.65"], "70-80_1": ["17218526.29", "1803289840507.10", "14690823.61", "373537304841.14", "2524082.28", "69415593627.60", "0.00", "1359642320047.18", "194369770610.62", "1754216888809.47", "54848.85", "188655376.59", "194558425987.21", "19726359926.61", "0.00", "451110388.82", "174380955671.78", "260555541383.53", "434936497055.31", "420760787745.76", "367995864016.25", "367995864016.25", "2284647505839.24", "1849711008783.93"]}, "aggr_d": {"payroll_tax_1": "599410174691.98", "combined_tax_1": "1053820666362.95", "ind_tax_1": "454410491670.96"}, "dropq_version": "0.17.0", "dist1_xdec": {"ALL_1": ["172188405.32", "11116854361778.68", "124321713.56", "2476029176239.10", "29489229.98", "810935099563.21", "0.00", "8379625754288.32", "1388310202033.80", "10546894865561.75", "450626.56", "1805152116.36", "1390115354150.17", "100676452260.00", "8577578643.16", "95463418741.98", "1202553061791.34", "1247594361392.96", "2450147423184.30", "0.00", "2806477574042.92", "2806477574042.92", "14539331530896.76", "12089184107712.46"], "0-10p_1": ["15887647.51", "68139257715.68", "13425480.69", "166750530165.30", "29631.15", "262389904.43", "0.00", "2107012546.06", "123132071.36", "67888407002.54", "6999.90", "1787973.42", "124920044.78", "55818538.62", "0.00", "7897177191.98", "-7828075685.82", "9234915704.83", "1406840019.01", "0.00", "32756932164.19", "32756932164.19", "102222696008.10", "100815855989.09"], "40-50_1": ["17218719.65", "564714961410.26", "14431203.59", "277728562744.18", "1222556.75", "24252654376.91", "0.00", "316257080011.86", "34061155003.08", "545753202874.63", "29419.29", "96036992.74", "34157191995.82", "8154896848.70", "0.00", "13643334275.41", "12358960871.70", "78718825219.63", "91077786091.33", "0.00", "236336435685.16", "236336435685.16", "844364756277.09", "753286970185.76"], "0-10n_1": ["91191.68", "-12893976241.82", "4892.19", "1574730901.21", "61.31", "8199314.18", "0.00", "705023385.28", "173785202.13", "-12901550255.31", "0.00", "0.00", "173785202.13", "665955.00", "2042026.19", "173061.47", "174988211.85", "49366582.10", "224354793.95", "0.00", "998744951.55", "998744951.55", "-24519799950.29", "-24744154744.24"], "20-30_1": ["17217634.34", "294521217566.57", "13714290.40", "250992051056.39", "576603.53", "11252203857.59", "0.00", "111730343501.39", "11357036201.82", "284956462836.24", "33157.27", "45036781.73", "11402072983.56", "2997925097.85", "0.00", "19787355851.80", "-11383207966.09", "42643958568.12", "31260750602.03", "0.00", "171519973137.91", "171519973137.91", "489963620233.22", "458702869631.18"], "Top 1%_1": ["1722638.50", "1390223788923.91", "453106.41", "11142801897.28", "1247309.81", "51828563263.11", "0.00", "1322083937118.55", "344375373049.07", "1351124858909.07", "95458.26", "898230420.95", "345273603470.02", "220842854.88", "7442112934.32", "142467390.31", "352352406159.14", "60609586651.53", "412961992810.68", "0.00", "77370738459.20", "77370738459.20", "1514048507952.60", "1101086515141.93"], "30-40_1": ["17220019.73", "408900640826.12", "14297295.66", "264879506333.21", "722297.21", "13997106087.49", "0.00", "197235679272.17", "20870132309.67", "397435258809.54", "29813.00", "64570227.68", "20934702537.35", "5160578683.82", "0.00", "17074748866.80", "-1300625013.27", "58433114077.64", "57132489064.37", "0.00", "209257129700.08", "209257129700.08", "652095451236.16", "594962962171.79"], "50-60_1": ["17219120.76", "763448827108.19", "13928040.21", "284634676766.90", "2071822.28", "42455163874.69", "0.00", "480546264454.80", "55819839581.32", "731876756070.83", "35672.78", "120113295.81", "55939952877.13", "11320920445.71", "0.00", "8601003505.56", "36018028925.87", "102805840941.61", "138823869867.47", "0.00", "272688308661.21", "272688308661.21", "1085218163880.09", "946394294012.62"], "90-100_1": ["17218906.94", "4490677221953.03", "7152020.08", "179137520259.70", "9693629.28", "320683703687.08", "0.00", "3984456773753.12", "819164276324.00", "4266898831271.07", "185616.18", "1168821585.75", "820333097909.75", "19833736049.30", "8575536616.97", "1106797895.06", "807968100582.36", "384215180935.90", "1192183281518.27", "0.00", "603652001567.92", "603652001567.92", "5323651364706.76", "4131468083188.49"], "10-20_1": ["17219038.93", "178175654926.53", "12817549.44", "238840590740.21", "277816.92", "5430328354.70", "0.00", "37756665600.09", "3592527285.72", "173331581044.55", "41949.80", "29567426.66", "3622094712.38", "931110338.51", "0.00", "17373332668.91", "-14682348295.04", "25595294982.82", "10912946687.78", "0.00", "137139905894.27", "137139905894.27", "326784869915.36", "315871923227.58"], "90-95_1": ["8609346.91", "1397384073344.20", "4056873.61", "101404881884.97", "4348148.96", "133660164404.50", "0.00", "1164405138564.28", "192684270529.12", "1306710580138.59", "30076.30", "56588560.55", "192740859089.67", "10697125372.25", "19230422.54", "470158073.99", "181592806065.98", "160230108731.52", "341822914797.50", "0.00", "262552412932.51", "262552412932.51", "1744134876342.56", "1402311961545.06"], "0-10z_1": ["1239654.72", "-25806490.10", "0.00", "20794386761.57", "0.00", "0.00", "0.00", "0.00", "0.00", "-25806490.10", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "80-90_1": ["17219583.75", "1957492351627.05", "9662368.95", "235038954172.72", "7000860.84", "199668384727.45", "0.00", "1534486803031.24", "223242174133.65", "1823708531012.02", "36040.59", "85375801.47", "223327549935.12", "20019035379.55", "0.00", "1599420959.47", "201709093596.10", "239787112572.72", "441496206168.81", "0.00", "443362671001.97", "443362671001.97", "2509921391010.11", "2068425184841.30"], "60-70_1": ["17218361.02", "1020093188762.90", "13065375.72", "283392212438.67", "3201412.62", "74361009649.60", "0.00", "697392320606.80", "87962075480.75", "966412892600.70", "30811.64", "100695616.96", "88062771097.71", "14563734280.16", "0.00", "5374502693.42", "68124534124.12", "131828851699.76", "199953385823.88", "0.00", "324042344353.32", "324042344353.32", "1401099944949.94", "1201146559126.06"], "95-99_1": ["6886921.53", "1703069359684.92", "2642040.06", "66589836477.45", "4098170.51", "135194976019.47", "0.00", "1497967698070.29", "282104632745.82", "1609063392223.41", "60081.62", "214002604.25", "282318635350.06", "8915767822.17", "1114193260.10", "494172430.76", "274022888357.24", "163375485552.85", "437398373910.09", "0.00", "263728850176.22", "263728850176.22", "2065467980411.60", "1628069606501.51"], "70-80_1": ["17218526.29", "1383610822614.27", "11823196.63", "272265453899.05", "4692538.09", "118563955729.08", "0.00", "1016951788125.53", "131944068440.30", "1301560298785.04", "21146.11", "93146414.15", "132037214854.45", "17638030642.77", "0.00", "3005571772.12", "111393612439.56", "174281900107.83", "285675512547.38", "0.00", "374723126925.34", "374723126925.34", "1828529072630.22", "1542853560082.83"]}, "diff_comb_xdec": {"ALL_1": ["172188405.32", "129.46", "0.00", "146012024.74", "84.80", "6120.16", "1053820666362.95", "100.00", "3528216766643.18", "2745126151361.65", "2745126151361.65", "22.34"], "0-10p_1": ["15887647.51", "0.00", "0.00", "12792706.99", "80.52", "903.60", "14356074934.84", "1.36", "207495117079.09", "31944696759.57", "31944696759.57", "193.03"], "40-50_1": ["17218719.65", "0.00", "0.00", "14617050.55", "84.89", "4271.29", "73546115313.03", "6.98", "339281619588.73", "228563536242.59", "228563536242.59", "36.69"], "0-10n_1": ["91191.68", "0.00", "0.00", "22930.18", "25.15", "420.79", "38372909.43", "0.00", "1845384744.59", "938548600.66", "938548600.66", "-7.10"], "20-30_1": ["17217818.08", "0.00", "0.00", "12848525.97", "74.62", "2813.69", "48445656939.31", "4.60", "288106713145.15", "165397843880.85", "165397843880.85", "53.02"], "Top 1%_1": ["1722638.50", "129.46", "0.01", "1699940.64", "98.68", "19447.52", "33501045776.82", "3.18", "46793407058.26", "77029246926.12", "77029246926.12", "1.93"], "30-40_1": ["17220019.73", "0.00", "0.00", "13645513.51", "79.24", "3411.91", "58753183944.29", "5.58", "310035294495.04", "201248795328.12", "201248795328.12", "43.12"], "50-60_1": ["17219120.76", "0.00", "0.00", "15217880.08", "88.38", "5292.36", "91129705778.36", "8.65", "365080883439.54", "264892500668.24", "264892500668.24", "30.71"], "90-100_1": ["17218906.94", "129.46", "0.00", "16681866.32", "96.88", "16090.21", "277055881222.06", "26.29", "471022404723.91", "599091959011.85", "599091959011.85", "6.58"], "10-20_1": ["17218855.19", "0.00", "0.00", "11787204.65", "68.46", "1812.54", "31209892474.93", "2.96", "261932951509.61", "130408544972.11", "130408544972.11", "72.85"], "90-95_1": ["8609346.91", "0.00", "0.00", "8305357.08", "96.47", "14489.52", "124745289883.08", "11.84", "233154513383.95", "260118939312.61", "260118939312.61", "10.26"], "0-10z_1": ["1239654.72", "0.00", "0.00", "366930.04", "29.60", "358.65", "444603447.72", "0.04", "22825860853.49", "0.00", "0.00", "inf"], "80-90_1": ["17219583.75", "0.00", "0.00", "16367454.55", "95.05", "11556.85", "199004180413.73", "18.88", "448898816321.63", "437677372563.24", "437677372563.24", "14.58"], "60-70_1": ["17218361.02", "0.00", "0.00", "15619490.73", "90.71", "6421.98", "110576014477.31", "10.49", "390930932996.67", "316966489318.17", "316966489318.17", "25.38"], "95-99_1": ["6886921.53", "0.00", "0.00", "6676568.60", "96.95", "17251.47", "118809545562.16", "11.27", "191074484281.70", "261943772773.13", "261943772773.13", "6.56"], "70-80_1": ["17218526.29", "0.00", "0.00", "16044471.17", "93.18", "8668.63", "149260984507.93", "14.16", "420760787745.76", "367995864016.25", "367995864016.25", "19.89"]}, "diff_ptax_xbin": {"$200-500K_1": ["11634440.40", "0.00", "0.00", "10029187.44", "86.20", "10460.38", "121700697684.81", "20.30", "319952951337.01", "425246660865.10", "425246660865.10", "7.23"], "ALL_1": ["172188405.32", "285.24", "0.00", "130773953.12", "75.95", "3481.13", "599410174691.98", "100.00", "3528216766643.18", "2745126151361.65", "2745126151361.65", "22.34"], ">$1000K_1": ["325250.12", "285.24", "0.09", "295407.78", "90.82", "11218.74", "3648898071.52", "0.61", "8840823790.39", "5517833337.36", "5517833337.36", "0.79"], "$30-40K_1": ["18260480.93", "0.00", "0.00", "13335677.96", "73.03", "1549.33", "28291601280.64", "4.72", "320939901672.48", "197236691182.92", "197236691182.92", "45.45"], "$20-30K_1": ["18504198.61", "0.00", "0.00", "12326690.55", "66.62", "1016.29", "18805687148.81", "3.14", "298980550643.32", "173559483260.67", "173559483260.67", "58.17"], "<$0K_1": ["91191.68", "0.00", "0.00", "19827.58", "21.74", "253.77", "23141639.25", "0.00", "1845384744.59", "938548600.66", "938548600.66", "-7.10"], "$500-1000K_1": ["974665.71", "0.00", "0.00", "853510.25", "87.57", "10848.13", "10573304681.05", "1.76", "26300705437.05", "47442487521.97", "47442487521.97", "2.47"], "$75-100K_1": ["19245765.21", "0.00", "0.00", "15342966.67", "79.72", "4077.32", "78471077196.33", "13.09", "443788255118.56", "363631809280.83", "363631809280.83", "24.04"], "$100-200K_1": ["33529470.61", "0.00", "0.00", "27513047.00", "82.06", "6502.29", "218018232994.43", "36.37", "862313601240.36", "823460907721.46", "823460907721.46", "15.34"], "=$0K_1": ["1239654.72", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "22825860853.49", "0.00", "0.00", "inf"], "$10-20K_1": ["14183203.05", "0.00", "0.00", "9833819.54", "69.33", "626.57", "8886749811.08", "1.48", "209668114897.20", "81401923597.45", "81401923597.45", "87.43"], "$40-50K_1": ["14667120.67", "0.00", "0.00", "11013568.11", "75.09", "2018.05", "29598970385.38", "4.94", "281413980480.54", "189521639740.85", "189521639740.85", "38.99"], "$0-10K_1": ["11952318.34", "0.00", "0.00", "8637635.97", "72.27", "207.84", "2484149494.94", "0.41", "151100293010.91", "17802727357.49", "17802727357.49", "259.73"], "$50-75K_1": ["27580645.27", "0.00", "0.00", "21572614.27", "78.22", "2860.98", "78907664303.76", "13.16", "580246343417.29", "419365438894.88", "419365438894.88", "31.24"]}, "dist2_xbin": {"$200-500K_1": ["11634440.40", "2939036116855.14", "6458864.95", "180600945343.48", "5174236.60", "176901813335.98", "0.00", "2570822607885.94", "491195490507.41", "2814312117087.60", "115011.02", "322519806.80", "491518010314.21", "14341284619.13", "1847933182.46", "143859177.30", "478880799700.24", "381467451239.37", "860348250939.60", "319952951337.01", "425246660865.10", "425246660865.10", "3578102679464.73", "2717754428525.13"], "ALL_1": ["172188405.32", "14633014220369.44", "152452695.50", "3212010973897.22", "19595425.99", "583367288150.90", "0.00", "10900424599069.11", "1809295567900.35", "14211300641696.38", "7596781.48", "10376026021.74", "1819671593922.10", "143260991855.15", "9056300109.24", "28503348713.88", "1656963553462.30", "1847004536084.94", "3503968089547.24", "3528216766643.18", "2745126151361.65", "2745126151361.65", "18294078717804.07", "14790110628256.83"], ">$1000K_1": ["325250.12", "655665888027.17", "50794.17", "1367821638.40", "274416.14", "14380509315.88", "0.00", "638026828474.80", "182942228608.55", "644085664743.28", "59838.18", "797513067.73", "183739741676.28", "6308177.36", "5783149622.85", "9747.07", "189516573374.70", "22537987806.82", "212054561181.52", "8840823790.39", "5517833337.36", "5517833337.36", "678602346104.10", "466547784922.58"], "$30-40K_1": ["18260480.93", "719921491764.69", "17736464.39", "339205314856.57", "515553.17", "11266209588.11", "0.00", "379394670419.61", "41733070697.44", "710337686237.85", "399256.72", "772325320.27", "42505396017.71", "11988506830.31", "0.00", "3890482254.43", "26626406932.97", "85895144912.05", "112521551845.02", "320939901672.48", "197236691182.92", "197236691182.92", "964862489182.63", "852340937337.61"], "$20-30K_1": ["18504198.61", "562357261980.77", "18132915.50", "327028072851.76", "359974.72", "7014643380.43", "0.00", "248229724779.17", "26562304865.13", "556276599400.36", "782937.70", "1215281064.67", "27777585929.80", "8797371554.31", "0.00", "6818629646.99", "12161584728.50", "57003360652.24", "69164945380.74", "298980550643.32", "173559483260.67", "173559483260.67", "765635503945.59", "696470558564.85"], "<$0K_1": ["91191.68", "-11051028809.90", "16431.29", "1882149913.93", "61.31", "8199314.18", "0.00", "775027653.14", "189508709.39", "-11058602823.39", "0.00", "0.00", "189508709.39", "1090335.77", "2042026.19", "240917.78", "190219482.03", "72508221.35", "262727703.38", "1845384744.59", "938548600.66", "938548600.66", "-22725478049.63", "-22988205753.01"], "$500-1000K_1": ["974665.71", "603981768166.42", "343064.82", "9374920117.25", "631510.32", "25621768809.13", "0.00", "566319695717.36", "140298203272.41", "584829087457.06", "24690.47", "126556079.95", "140424759352.36", "103948481.72", "1421173069.55", "20525192.74", "141721458747.45", "40531309470.66", "182252768218.10", "26300705437.05", "47442487521.97", "47442487521.97", "679328305551.16", "497075537333.06"], "$75-100K_1": ["19245765.21", "1672953646094.13", "17194775.76", "416431845485.16", "2043836.80", "53013175902.49", "0.00", "1204518432297.75", "162139797185.05", "1634055444200.78", "74792.94", "266720719.59", "162406517904.65", "20548523637.16", "0.00", "780017736.22", "141077976531.26", "237089316895.06", "378167293426.32", "443788255118.56", "363631809280.83", "363631809280.83", "2143107005787.07", "1764939712360.75"], "$100-200K_1": ["33529470.61", "4469684613023.19", "25942540.18", "686381853643.68", "7579792.07", "230904213690.29", "0.00", "3542560257946.36", "554631717820.69", "4309649197523.08", "157161.36", "374388609.52", "555006106430.21", "40767921646.16", "2002208.18", "604363452.13", "513635823540.10", "659766471404.58", "1173402294944.69", "862313601240.36", "823460907721.46", "823460907721.46", "5599929989365.97", "4426527694421.29"], "=$0K_1": ["1239654.72", "22800054363.38", "1228134.21", "24806677441.17", "11197.23", "16122170.82", "0.00", "2245668933.11", "231401851.83", "22785972791.88", "315319.78", "433234746.76", "664636598.59", "220033150.87", "0.00", "0.00", "444603447.72", "0.00", "444603447.72", "22825860853.49", "0.00", "0.00", "22825860853.49", "22381257405.77"], "$10-20K_1": ["14183203.05", "335793536158.33", "13868844.64", "232965677818.15", "308176.12", "4623650275.32", "0.00", "114260193074.92", "11633772834.49", "331579520143.54", "2156000.49", "1941123589.19", "13574896423.69", "4573343144.26", "0.00", "8582827377.39", "418725902.04", "26825867481.64", "27244593383.68", "209668114897.20", "81401923597.45", "81401923597.45", "428428081462.55", "401183488078.87"], "$40-50K_1": ["14667120.67", "708030415067.70", "14055668.94", "286196443297.19", "605783.16", "13335534838.11", "0.00", "413168652294.32", "46732025142.51", "697172270981.47", "241067.51", "474416164.33", "47206441306.84", "12115376885.60", "0.00", "1987584187.99", "33103480233.25", "89709014706.98", "122812494940.24", "281413980480.54", "189521639740.85", "189521639740.85", "946432022523.69", "823619527583.45"], "$0-10K_1": ["11952318.34", "188901746840.50", "11658665.15", "136779505758.72", "286312.68", "3065866886.05", "0.00", "62142684199.37", "6232082170.89", "186012786672.42", "3017719.40", "2982910497.45", "9214992668.34", "3188740834.35", "0.00", "3491532733.74", "2534719100.26", "7488951174.25", "10023670274.50", "151100293010.91", "17802727357.49", "17802727357.49", "208227255115.23", "198203584840.73"], "$50-75K_1": ["27580645.27", "1764938710837.92", "25765531.50", "568989745731.78", "1804575.67", "43215580644.09", "0.00", "1157960155393.25", "144773964234.56", "1731262897280.44", "252985.91", "669036355.47", "145443000590.02", "26608542558.15", "0.00", "2183276290.09", "116651181741.78", "238617152119.95", "355268333861.73", "580246343417.29", "419365438894.88", "419365438894.88", "2301322656497.49", "1946054322635.76"]}, "diff_itax_xdec": {"ALL_1": ["172188405.32", "406665.00", "0.24", "140363704.19", "81.52", "2639.03", "454410491670.96", "100.00", "3528216766643.18", "2745126151361.65", "2745126151361.65", "22.34"], "0-10p_1": ["15887647.51", "334878.56", "2.11", "8897731.22", "56.00", "615.12", "9772873076.19", "2.15", "207495117079.09", "31944696759.57", "31944696759.57", "193.03"], "40-50_1": ["17218719.65", "3814.58", "0.02", "14468994.90", "84.03", "2017.06", "34731183905.57", "7.64", "339281619588.73", "228563536242.59", "228563536242.59", "36.69"], "0-10n_1": ["91191.68", "811.05", "0.89", "4953.50", "5.43", "167.02", "15231270.18", "0.00", "1845384744.59", "938548600.66", "938548600.66", "-7.10"], "20-30_1": ["17217818.08", "9513.26", "0.06", "12502665.78", "72.61", "1596.68", "27491384308.38", "6.05", "288106713145.15", "165397843880.85", "165397843880.85", "53.02"], "Top 1%_1": ["1722638.50", "12.74", "0.00", "1698819.25", "98.62", "8346.93", "14378742683.95", "3.16", "46793407058.26", "77029246926.12", "77029246926.12", "1.93"], "30-40_1": ["17220019.73", "8390.10", "0.05", "13388792.01", "77.75", "1744.34", "30037654191.45", "6.61", "310035294495.04", "201248795328.12", "201248795328.12", "43.12"], "50-60_1": ["17219120.76", "352.86", "0.00", "15111597.52", "87.76", "2342.13", "40329429117.30", "8.88", "365080883439.54", "264892500668.24", "264892500668.24", "30.71"], "90-100_1": ["17218906.94", "876.90", "0.01", "16646914.77", "96.68", "6046.61", "104115993136.88", "22.91", "471022404723.91", "599091959011.85", "599091959011.85", "6.58"], "10-20_1": ["17218855.19", "35905.58", "0.21", "11184330.40", "64.95", "1077.48", "18553010264.78", "4.08", "261932951509.61", "130408544972.11", "130408544972.11", "72.85"], "90-95_1": ["8609346.91", "804.98", "0.01", "8283229.10", "96.21", "5425.04", "46706059184.06", "10.28", "233154513383.95", "260118939312.61", "260118939312.61", "10.26"], "0-10z_1": ["1239654.72", "0.00", "0.00", "366930.04", "29.60", "358.65", "444603447.72", "0.10", "22825860853.49", "0.00", "0.00", "inf"], "80-90_1": ["17219583.75", "1082.81", "0.01", "16321611.83", "94.79", "4677.82", "80550065946.55", "17.73", "448898816321.63", "437677372563.24", "437677372563.24", "14.58"], "60-70_1": ["17218361.02", "7505.00", "0.04", "15498983.04", "90.01", "2635.66", "45381719773.75", "9.99", "390930932996.67", "316966489318.17", "316966489318.17", "25.38"], "95-99_1": ["6886921.53", "59.18", "0.00", "6664866.42", "96.78", "6248.25", "43031191268.87", "9.47", "191074484281.70", "261943772773.13", "261943772773.13", "6.56"], "70-80_1": ["17218526.29", "3534.30", "0.02", "15970199.18", "92.75", "3658.11", "62987343232.22", "13.86", "420760787745.76", "367995864016.25", "367995864016.25", "19.89"]}, "diff_itax_xbin": {"$200-500K_1": ["11634440.40", "181.06", "0.00", "11228969.25", "96.51", "6059.05", "70493600390.22", "15.51", "319952951337.01", "425246660865.10", "425246660865.10", "7.23"], "ALL_1": ["172188405.32", "406665.00", "0.24", "140363704.19", "81.52", "2639.03", "454410491670.96", "100.00", "3528216766643.18", "2745126151361.65", "2745126151361.65", "22.34"], ">$1000K_1": ["325250.12", "0.00", "0.00", "324924.98", "99.90", "9320.10", "3031365227.15", "0.67", "8840823790.39", "5517833337.36", "5517833337.36", "0.79"], "$30-40K_1": ["18260480.93", "9710.98", "0.05", "14049861.57", "76.94", "1732.92", "31644039762.06", "6.96", "320939901672.48", "197236691182.92", "197236691182.92", "45.45"], "$20-30K_1": ["18504198.61", "14830.42", "0.08", "12630607.02", "68.26", "1403.96", "25979098246.90", "5.72", "298980550643.32", "173559483260.67", "173559483260.67", "58.17"], "<$0K_1": ["91191.68", "811.05", "0.89", "4953.50", "5.43", "167.02", "15231270.18", "0.00", "1845384744.59", "938548600.66", "938548600.66", "-7.10"], "$500-1000K_1": ["974665.71", "0.00", "0.00", "963186.25", "98.82", "8272.68", "8063098864.01", "1.77", "26300705437.05", "47442487521.97", "47442487521.97", "2.47"], "$75-100K_1": ["19245765.21", "8579.88", "0.04", "17442749.60", "90.63", "2789.75", "53690884687.72", "11.82", "443788255118.56", "363631809280.83", "363631809280.83", "24.04"], "$100-200K_1": ["33529470.61", "3582.96", "0.01", "31662030.82", "94.43", "4467.30", "149786367481.29", "32.96", "862313601240.36", "823460907721.46", "823460907721.46", "15.34"], "=$0K_1": ["1239654.72", "0.00", "0.00", "366930.04", "29.60", "358.65", "444603447.72", "0.10", "22825860853.49", "0.00", "0.00", "inf"], "$10-20K_1": ["14183203.05", "49996.73", "0.35", "9465841.39", "66.74", "945.73", "13413435862.52", "2.95", "209668114897.20", "81401923597.45", "81401923597.45", "87.43"], "$40-50K_1": ["14667120.67", "5311.95", "0.04", "11999084.91", "81.81", "1893.21", "27767936147.99", "6.11", "281413980480.54", "189521639740.85", "189521639740.85", "38.99"], "$0-10K_1": ["11952318.34", "312293.04", "2.61", "6134004.06", "51.32", "541.41", "6471047337.91", "1.42", "151100293010.91", "17802727357.49", "17802727357.49", "259.73"], "$50-75K_1": ["27580645.27", "1366.93", "0.00", "24090560.80", "87.35", "2306.32", "63609782945.27", "14.00", "580246343417.29", "419365438894.88", "419365438894.88", "31.24"]}, "dist1_xbin": {"$200-500K_1": ["11634440.40", "2621427843932.43", "4756208.34", "119613923310.90", "6627115.98", "215652803892.72", "0.00", "2283014912036.01", "421829795780.02", "2472225878682.35", "87358.07", "293761058.21", "422123556838.23", "14359714637.39", "1425564624.46", "802207515.29", "408387199310.01", "259766753554.56", "668153952864.57", "0.00", "428181251762.96", "428181251762.96", "3202560640501.94", "2534406687637.37"], "ALL_1": ["172188405.32", "11116854361778.68", "124321713.56", "2476029176239.10", "29489229.98", "810935099563.21", "0.00", "8379625754288.32", "1388310202033.80", "10546894865561.75", "450626.56", "1805152116.36", "1390115354150.17", "100676452260.00", "8577578643.16", "95463418741.98", "1202553061791.34", "1247594361392.96", "2450147423184.30", "0.00", "2806477574042.92", "2806477574042.92", "14539331530896.76", "12089184107712.46"], ">$1000K_1": ["325250.12", "647131348532.11", "41550.43", "981722170.63", "282820.23", "14578909850.12", "0.00", "629693474109.28", "180001248439.42", "635431317359.59", "56586.07", "724751793.76", "180726000233.17", "6397822.02", "5765630366.82", "24630.42", "186485208147.55", "18889089735.30", "205374297882.85", "0.00", "5554737622.47", "5554737622.47", "668260207014.60", "462885909131.75"], "$30-40K_1": ["18260480.93", "400122075466.24", "15055796.74", "275768584731.68", "732635.26", "14249311476.15", "0.00", "182693161289.92", "19221223868.69", "388269424821.74", "38039.11", "70834892.83", "19292058761.52", "4876200465.10", "0.00", "19433491125.51", "-5017632829.09", "57603543631.41", "52585910802.32", "0.00", "204907970706.93", "204907970706.93", "638585342556.77", "585999431754.44"], "$20-30K_1": ["18504198.61", "263971346136.84", "14262779.66", "265633432554.38", "483974.25", "9167919041.44", "0.00", "87997862514.19", "8715057348.84", "256135876285.51", "36076.61", "40090367.07", "8755147715.91", "2247402118.28", "0.00", "20325259116.03", "-13817513518.40", "38197673503.43", "24380159985.03", "0.00", "180411808105.12", "180411808105.12", "464699069371.71", "440318909386.68"], "<$0K_1": ["91191.68", "-12893976241.82", "4892.19", "1574730901.21", "61.31", "8199314.18", "0.00", "705023385.28", "173785202.13", "-12901550255.31", "0.00", "0.00", "173785202.13", "665955.00", "2042026.19", "173061.47", "174988211.85", "49366582.10", "224354793.95", "0.00", "998744951.55", "998744951.55", "-24519799950.29", "-24744154744.24"], "$500-1000K_1": ["974665.71", "578450464172.90", "273337.53", "6554789973.95", "692477.44", "27234763183.73", "0.00", "542218457891.71", "132308001610.34", "558277007575.58", "25215.87", "124666405.27", "132432668015.61", "64590784.30", "1384341625.69", "94058973.55", "133658359883.44", "29958004789.61", "163616364673.05", "0.00", "47636724972.42", "47636724972.42", "648690157713.07", "485073793040.03"], "$75-100K_1": ["19245765.21", "1230343579011.59", "14288100.21", "314703104055.31", "3948048.19", "93728390087.79", "0.00", "858013713098.82", "109388670319.85", "1163269740674.21", "28471.30", "114990881.39", "109503661201.25", "17000735003.65", "0.00", "5115834354.06", "87387091843.54", "158618239698.73", "246005331542.27", "0.00", "371250232348.67", "371250232348.67", "1668830993459.60", "1422825661917.33"], "$100-200K_1": ["33529470.61", "3610493710682.03", "19844542.02", "475340573498.14", "12554889.76", "351384235159.36", "0.00", "2812145962439.09", "405542191749.75", "3373180874748.56", "68969.25", "179019447.18", "405721211196.93", "38144399920.80", "0.00", "3727355217.32", "363849456058.81", "441748238410.16", "805597694468.97", "0.00", "835323708986.19", "835323708986.19", "4643550492442.39", "3837952797973.42"], "=$0K_1": ["1239654.72", "-25806490.10", "0.00", "20794386761.57", "0.00", "0.00", "0.00", "0.00", "0.00", "-25806490.10", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$10-20K_1": ["14183203.05", "126210858926.77", "10944736.41", "191688924411.60", "154905.41", "3124744222.48", "0.00", "14957385840.07", "1371039037.01", "123358860911.99", "27373.66", "13600717.43", "1384639754.44", "376568756.97", "0.00", "14002780957.96", "-12994709960.49", "17939117670.56", "4944407710.08", "0.00", "85986245361.98", "85986245361.98", "218986351089.99", "214041943379.91"], "$40-50K_1": ["14667120.67", "427556997521.35", "12341502.64", "233817971825.82", "804530.48", "16136595513.20", "0.00", "227399711152.38", "24353230439.28", "414684885658.55", "22666.38", "65216198.82", "24418446638.10", "6079438720.56", "0.00", "13003463832.29", "5335544085.26", "60110044321.60", "65445588406.86", "0.00", "196384903060.40", "196384903060.40", "657998970830.12", "592553382423.25"], "$0-10K_1": ["11952318.34", "37808157409.66", "10096132.51", "115145834979.48", "23433.86", "179707990.46", "0.00", "1671505070.67", "100067446.81", "37633701286.36", "3508.74", "851926.05", "100919372.86", "44139381.11", "0.00", "3993108229.41", "-3936328237.66", "5004801679.31", "1068473441.65", "0.00", "18077497376.42", "18077497376.42", "56166354707.60", "55097881265.95"], "$50-75K_1": ["27580645.27", "1186257762718.67", "22412134.88", "454411197064.45", "3184337.81", "65489519831.58", "0.00", "739114585460.90", "85305890791.66", "1137354654302.73", "56361.50", "177368428.35", "85483259220.01", "17476198694.83", "0.00", "14965661728.67", "53041398796.51", "159709487816.19", "212750886612.70", "0.00", "431763748787.80", "431763748787.80", "1695522751159.27", "1482771864546.57"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_1\nind_tax,691967297.3114662\npayroll_tax,-181877850165.0129\ncombined_tax,-181185882867.70145\n", "aggr_1": ",0_1\nind_tax,1137766875206.9512\npayroll_tax,1195188773057.9287\ncombined_tax,2332955648264.88\n", "aggr_2": ",0_1\nind_tax,1138458842504.2627\npayroll_tax,1013310922892.9158\ncombined_tax,2151769765397.1785\n", "dist1_xbin": ",s006_1,c00100_1,num_returns_StandardDed_1,standard_1,num_returns_ItemDed_1,c04470_1,c04600_1,c04800_1,taxbc_1,c62100_1,num_returns_AMT_1,c09600_1,c05800_1,c07100_1,othertaxes_1,refund_1,iitax_1,payrolltax_1,combined_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,expanded_income_1,aftertax_income_1\n<$0K,59563.077589398075,-6975250085.149803,59563.077589398075,1277155021.6096766,0.0,0.0,0.0,0.0,0.0,-6975250085.149803,0.0,0.0,0.0,0.0,0.0,1189428.709373095,-1189428.709373095,17173725.3750834,15984296.665710308,0.0,715565492.9116198,715565492.9116198,-6181361813.8559265,-6197346110.521637\n=$0K,1064081.8076371278,0.0,1064081.8076371278,16431829967.27918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11871381.19527686,37577578064.19455,11836252.1567759,108949203869.89828,35129.03850096073,134749034.5100839,0.0,2082543117.19751,134018830.04549849,37450722362.933334,0.0,0.0,134018830.04549849,44996423.59068724,0.0,3874852274.0273643,-3785829867.5725527,5007396619.615593,1221566752.0430398,0.0,16298782770.319178,16298782770.319178,54155951977.78327,52934385225.74023\n$10-20K,13722106.726369262,118439205181.59561,13666203.378525937,184390964071.02924,55903.347843324096,1007672680.2841468,0.0,14461468323.56644,1279284843.87494,117599284832.22755,18316.51398134514,995228.5566737879,1280280072.431614,376205812.31972355,0.0,14342934218.691998,-13438859958.580107,16672685618.005322,3233825659.4252143,0.0,87735743280.26855,87735743280.26855,212073729233.16733,208839903573.74213\n$20-30K,17803055.750663653,248503002555.14322,17351881.078289516,249040557799.28613,451174.67237413744,7220135667.60976,0.0,84310372327.81334,8331766965.855759,242469153023.06854,74040.8784769359,153210317.35187003,8484977283.20763,2000472895.400983,0.0,19700480811.99868,-13215976424.192036,35874658099.1807,22658681674.988667,0.0,179484343842.6678,179484343842.6678,447971540880.7448,425312859205.7561\n$30-40K,17424494.39087834,380223734102.1592,16683795.130361643,256377774555.33997,740699.2605166971,12871630690.170801,0.0,175509821586.87213,18296061537.99027,369983935927.8339,74486.84807535462,117764156.06577647,18413825694.056046,4726685323.612839,0.0,17090242734.726858,-3403102364.2836523,54213792268.194855,50810689903.91121,0.0,195910279294.81726,195910279294.81726,608003209539.2612,557192519635.35\n$40-50K,15773360.10535717,479407760525.3663,14723874.869442767,239214862173.84164,1049485.2359144026,17294845165.313377,0.0,262347036700.81903,28175104522.367607,466302699220.9249,9475.19977649239,8121212.70021738,28183225735.067825,7212810364.213406,0.0,12490040772.531311,8480374598.323107,67045663750.851074,75526038349.17416,0.0,187346949649.73682,187346949649.73682,704356860246.8125,628830821897.6383\n$50-75K,28512891.592446,1219421208746.2397,24941981.588299222,466897468699.91394,3570910.004146777,68987153835.39865,0.0,760613730886.8702,88259300953.22409,1168036927244.174,159987.62337693857,331490721.3567692,88590791674.58087,16225396361.12943,0.0,16734305140.440262,55631090173.01117,164464936044.57755,220096026217.5887,0.0,447562729863.8865,447562729863.8865,1746122583509.7075,1526026557292.1184\n$75-100K,18777001.08120911,1198612896633.107,14663253.110314097,297133383313.611,4113747.97089501,95583193461.94461,0.0,836798199692.8795,107639395093.50171,1130537250852.5854,74490.15645516483,416109897.11190826,108055504990.61362,15155675295.755615,0.0,4684846386.677955,88214983308.18005,148627349800.54388,236842333108.72394,0.0,377450666941.9225,377450666941.9225,1629610045285.7058,1392767712176.9817\n$100-200K,33239301.87849804,3563519612712.133,21110256.123489097,468120995057.0238,12129045.755008943,339159123221.66046,0.0,2786185723175.823,403993200407.619,3334267001084.181,125772.69021754379,85787933.35101843,404078988340.97,34435819654.334946,0.0,2273399651.0476265,367369769035.5874,435137783944.76337,802507552980.3508,0.0,832726236876.0109,832726236876.0109,4596043750785.296,3793536197804.945\n$200-500K,10566013.62383414,2328054504065.741,4519339.124567866,104929415147.03717,6046674.499266274,192254826076.1303,0.0,2029578426151.0344,375647638801.0585,2195470041237.5146,85332.04793126232,299192149.7786713,375946830950.83704,11625010971.530373,1245500188.3547277,784985462.821876,364782334704.8396,227774440211.59244,592556774916.432,0.0,420253273511.3701,420253273511.3701,2893866616889.5283,2301309841973.0957\n$500-1000K,804836.8348696971,494193348033.0613,197513.58305040933,4831904881.511795,607323.2518192878,24047355165.31579,0.0,463402156588.6047,113068251720.75752,476309348705.40515,7994.699811415456,43483560.11199604,113111735280.86952,28110153.878204837,1337619874.7824597,122568131.81967248,114298676869.95409,24035903102.82139,138334579972.77548,0.0,27417838381.796295,27417838381.796295,536203750114.29675,397869170141.5213\n>$1000K,276751.595371232,572389616191.1271,16316.267548081418,321825880.2326096,260435.32782315064,12880328017.417608,0.0,556525398962.4603,167146718556.28323,562109731121.54,29940.8372825615,436505817.60926765,167583224373.89252,4574565.632176513,5255954752.133055,0.0,172834604560.39337,16316989872.407469,189151594432.80084,0.0,2794448187.4296093,2794448187.4296093,588839325606.6052,399687731173.80444\nALL,169894839.66000003,10633367216724.717,140834311.29589108,2397917340437.6143,29060528.364108965,771441013015.7556,0.0,7971814877513.94,1311970742232.5781,10093560845527.238,659837.4953850145,1892660993.9941685,1313863403226.5723,91835757821.39838,7839074815.270243,92099845013.49297,1137766875206.9512,1195188773057.9287,2332955648264.88,0.0,2775696858093.137,2775696858093.137,14011066002255.055,11678110353990.172\n", "dist2_xbin": ",s006_1,c00100_1,num_returns_StandardDed_1,standard_1,num_returns_ItemDed_1,c04470_1,c04600_1,c04800_1,taxbc_1,c62100_1,num_returns_AMT_1,c09600_1,c05800_1,c07100_1,othertaxes_1,refund_1,iitax_1,payrolltax_1,combined_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,expanded_income_1,aftertax_income_1\n<$0K,59563.077589398075,-6975250085.149803,59563.077589398075,1277155021.6096766,0.0,0.0,0.0,0.0,0.0,-6975250085.149803,0.0,0.0,0.0,0.0,0.0,1110621.1147534226,-1110621.1147534226,14479807.669187969,13369186.554434547,0.0,715565492.9116198,715565492.9116198,-6182708772.708875,-6196077959.2633095\n=$0K,1064081.8076371278,0.0,1064081.8076371278,16431829967.27918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11871381.19527686,37580693798.29179,11836252.1567759,108949203869.89828,35129.03850096073,134749034.5100839,0.0,2082543117.19751,134018830.04549849,37453838097.03056,0.0,0.0,134018830.04549849,44996423.59068724,0.0,3872068666.8571625,-3783046260.4023514,4222390544.2572737,439344283.85492235,0.0,16298782770.319178,16298782770.319178,53766564674.20135,53327220390.34643\n$10-20K,13722106.726369262,118460633122.45856,13665429.217650343,184381674140.52216,56677.508718917394,1018033118.1289568,0.0,14464026040.66848,1279540615.585144,117614882459.1383,18316.51398134514,995228.5566737879,1280535844.1418176,376260870.59433866,0.0,14342524009.724579,-13438249036.177097,14060580316.720303,622331280.5432042,0.0,87735743280.26855,87735743280.26855,210789104523.38776,210166773242.84454\n$20-30K,17803055.750663653,248680472480.4173,17350327.463130634,249021241184.41205,452728.2875330205,7239662359.720148,0.0,84388742822.98888,8339609093.598131,242633373520.56616,74040.8784769359,153210317.35187003,8492819410.950002,2002649307.9139695,0.0,19694389245.52525,-13204219142.489218,30273912229.172443,17069693086.683226,0.0,179484343842.6678,179484343842.6678,445348637871.0148,428278944784.3315\n$30-40K,17424494.39087834,380613274504.5629,16683795.130361643,256377774555.33997,740699.2605166971,12870936924.27379,0.0,175794484997.95044,18326465260.41464,370374401351.4337,74486.84807535462,117764156.06577647,18444229416.480415,4734622842.495424,0.0,17067733145.925398,-3358126571.940406,45767946228.40274,42409819656.462326,0.0,195910279294.81726,195910279294.81726,604168356333.8934,561758536677.4312\n$40-50K,15773360.10535717,479764241993.923,14722771.193938075,239188373961.72903,1050588.9114190945,17322363214.890907,0.0,262667808863.75763,28208643166.148247,466639448028.0683,9475.19977649239,8121212.70021738,28216764378.848465,7222899709.319115,0.0,12470301591.241226,8523563078.288126,56579130360.14371,65102693438.43184,0.0,187346949649.73682,187346949649.73682,699459425742.1185,634356732303.6866\n$50-75K,28512891.592446,1219915873681.8594,24941981.588299222,466897468699.91394,3570910.004146777,68986931138.28618,0.0,761076092285.7644,88315519628.08989,1168531889109.277,159987.62337693857,331476282.8817575,88646995910.97165,16238269950.455925,0.0,16715530491.784935,55693195468.7308,138739635001.15155,194432830469.88232,0.0,447562729863.8865,447562729863.8865,1733746834809.9863,1539314004340.104\n$75-100K,18777001.08120911,1198986930970.4731,14663253.110314097,297133383313.611,4113747.97089501,95582467227.05432,0.0,837159725483.8329,107688236420.40327,1130912092488.163,74490.15645516483,416109897.11190826,108104346317.51518,15158426767.930857,0.0,4679287561.223055,88266631988.36127,125362230717.80057,213628862706.16183,0.0,377450666941.9225,377450666941.9225,1618303606117.2532,1404674743411.0913\n$100-200K,33239301.87849804,3564644279680.631,21109891.87087199,468112252994.21326,12129410.00762605,339167244818.31177,0.0,2787270643362.0396,404205233173.28973,3335386944098.548,125594.36854577251,88219178.79063582,404293452352.0803,34440115883.16835,0.0,2266940962.892913,367586395506.01904,367259833715.30536,734846229221.3245,0.0,832726236876.0109,832726236876.0109,4563220533694.845,3828374304473.5205\n$200-500K,10566013.62383414,2328693121894.803,4519339.124567866,104929415147.03717,6046674.499266274,192251927800.5973,0.0,2030275956241.5708,375829831594.49194,2196112016659.8042,85332.04793126232,284719031.2670507,376114550625.7589,11622378348.108532,1246812964.7926612,784657243.9141304,364954327998.52893,194203631859.1385,559157959857.6675,0.0,420253273511.3701,420253273511.3701,2877716311080.5977,2318558351222.93\n$500-1000K,804836.8348696971,494360159532.5748,197513.58305040933,4831904881.511795,607323.2518192878,24047097136.53626,0.0,463569491596.7523,113126488097.77243,476476495566.86395,7994.699811415456,43384162.58125559,113169872260.35368,27822332.718594484,1337773132.3917704,122559392.67572062,114357263667.35114,21394535512.93174,135751799180.28287,0.0,27417838381.796295,27417838381.796295,535046703638.87964,399294904458.5967\n>$1000K,276751.595371232,572464616523.8429,16316.267548081418,321825880.2326096,260435.32782315064,12880328017.417608,0.0,556600399295.176,167174507326.0646,562184731454.2559,29940.8372825615,436272013.5331108,167610779339.59772,4574565.632176513,5256011655.141499,0.0,172862216429.10703,15432616600.222435,188294833029.32947,0.0,2794448187.4296093,2794448187.4296093,588465732114.3389,400170899085.00934\nALL,169894839.66000003,10637189048098.688,140830515.5917348,2397853503617.31,29064324.068265237,771501740789.7273,0.0,7975349914107.697,1312628093205.9036,10097344862747.998,659659.1737132433,1880271480.8402565,1314508364686.7437,91873017001.92796,7840597752.32593,92017102932.87912,1138458842504.2625,1013310922892.9156,2151769765397.1782,0.0,2775696858093.137,2775696858093.137,13923849101827.809,11772079336430.63\n", "diff_itax_xbin": ",count_1,tax_cut_1,perc_cut_1,tax_inc_1,perc_inc_1,mean_1,tot_change_1,share_of_change_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,pc_aftertaxinc_1\n<$0K,59563.077589398075,0.0,0.0,283.19731175549884,0.47545782255869623,1.3230947393776027,78807.59461967257,0.01138891894542813,0.0,715565492.9116198,715565492.9116198,-0.02046281159243657\n=$0K,1064081.8076371278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,11871381.19527686,74141.1223851858,0.6245366159641434,280236.973501307,2.3606096787861715,0.23448048078086928,2783607.170201489,0.4022743821878247,0.0,16298782770.319178,16298782770.319178,0.742117175690149\n$10-20K,13722106.726369262,73492.67994238115,0.5355786936210969,98879.53241616412,0.7205856534124676,0.044521035668228015,610922.4030079175,0.08828775657195992,0.0,87735743280.26855,87735743280.26855,0.6353525578189689\n$20-30K,17803055.750663653,61932.208371502194,0.34787403487849844,493482.8950632926,2.7718999590556064,0.6604080708098955,11757281.7028168,1.6991094446945585,0.0,179484343842.6678,179484343842.6678,0.6973891135373389\n$30-40K,17424494.39087834,47046.48425336328,0.27000200521165163,1167191.7653166302,6.698568917601713,2.581182060972211,44975792.34324608,6.499699121330254,0.0,195910279294.81726,195910279294.81726,0.8194684747507619\n$40-50K,15773360.10535717,32614.00816922556,0.20676639569110408,1023733.799985533,6.490270894391349,2.738064665774781,43188479.965020046,6.241404779217504,0.0,187346949649.73682,187346949649.73682,0.8787594713269176\n$50-75K,28512891.592446,4927.500889353271,0.0172816596779638,1322010.045240088,4.636534463555888,2.178147927166902,62105295.719620846,8.975177867642234,0.0,447562729863.8865,447562729863.8865,0.8707218746942136\n$75-100K,18777001.08120911,0.0,0.0,928294.6517340245,4.94378547308604,2.7506352030255274,51648680.18122216,7.464034844116949,0.0,377450666941.9225,377450666941.9225,0.8549186723677105\n$100-200K,33239301.87849804,31585.102048244717,0.09502336169303424,2773190.8176008044,8.343107889984706,6.517178706806149,216626470.43164906,31.30588270187309,0.0,832726236876.0109,832726236876.0109,0.9183544021204915\n$200-500K,10566013.62383414,114029.2652431592,1.0792080088363623,864913.0421676615,8.185802829334289,16.277973870995982,171993293.68935972,24.855696845445376,0.0,420253273511.3701,420253273511.3701,0.7495083423901816\n$500-1000K,804836.8348696971,10524.617852296646,1.3076709956994672,131039.96171340744,16.28155621563006,72.79338476913658,58586797.3970439,8.466700323075093,0.0,27417838381.796295,27417838381.796295,0.35834249649657757\n>$1000K,276751.595371232,17882.12371226223,6.461434734739402,65392.773653000455,23.628688956709787,99.7713081892815,27611868.71365852,3.990343014899727,0.0,2794448187.4296093,2794448187.4296093,0.12088635039808615\nALL,169894839.66000003,468175.1128669741,0.27556758863536046,9148649.455703668,5.38488954344481,4.07291533219171,691967297.3114662,100.0,0.0,2775696858093.137,2775696858093.137,0.8046591408373827\n", "diff_ptax_xbin": ",count_1,tax_cut_1,perc_cut_1,tax_inc_1,perc_inc_1,mean_1,tot_change_1,share_of_change_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,pc_aftertaxinc_1\n<$0K,59563.077589398075,4056.0736473392712,6.809711337114037,0.0,0.0,-45.22798040198879,-2693917.7058954337,0.0014811686543750732,0.0,715565492.9116198,715565492.9116198,-0.02046281159243657\n=$0K,1064081.8076371278,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11871381.19527686,8765419.64116814,73.83656119690221,0.0,0.0,-66.12592607763628,-785006075.358319,0.43161169688673146,0.0,16298782770.319178,16298782770.319178,0.742117175690149\n$10-20K,13722106.726369262,9290388.05604739,67.7038026398264,0.0,0.0,-190.35745409744055,-2612105301.285017,1.4361865938678755,0.0,87735743280.26855,87735743280.26855,0.6353525578189689\n$20-30K,17803055.750663653,11831382.552533224,66.45703253550829,0.0,0.0,-314.5946374851674,-5600745870.008257,3.0793996437316857,0.0,179484343842.6678,179484343842.6678,0.6973891135373389\n$30-40K,17424494.39087834,12479581.82942182,71.62091220250751,0.0,0.0,-484.7111112855874,-8445846039.792124,4.643691374254443,0.0,195910279294.81726,195910279294.81726,0.8194684747507619\n$40-50K,15773360.10535717,12033373.696818795,76.28922193142508,0.0,0.0,-663.5576263267186,-10466533390.707363,5.754704809415417,0.0,187346949649.73682,187346949649.73682,0.8787594713269176\n$50-75K,28512891.592446,22698891.475177273,79.60922308276497,0.0,0.0,-902.2340284224794,-25725301043.425995,14.144273764004863,0.0,447562729863.8865,447562729863.8865,0.8707218746942136\n$75-100K,18777001.08120911,14532610.154177915,77.39579974099952,0.0,0.0,-1239.0220878256048,-23265119082.743347,12.791617594795369,0.0,377450666941.9225,377450666941.9225,0.8549186723677105\n$100-200K,33239301.87849804,27085178.48143115,81.48540116888589,0.0,0.0,-2042.0991535134233,-67877950229.457985,37.320624896255445,0.0,832726236876.0109,832726236876.0109,0.9183544021204915\n$200-500K,10566013.62383414,8964227.13156233,84.84020038873882,0.0,0.0,-3177.2444696386738,-33570808352.453903,18.457887159979077,0.0,420253273511.3701,420253273511.3701,0.7495083423901816\n$500-1000K,804836.8348696971,688998.5475463053,85.60723337890643,0.0,0.0,-3281.8671753726194,-2641367589.8896523,1.4522755725852323,0.0,27417838381.796295,27417838381.796295,0.35834249649657757\n>$1000K,276751.595371232,261811.6138242054,94.60166380360472,421.8184258040433,0.1524177034059081,-3195.5489578975803,-884373272.1850333,0.48624572556947704,0.0,2794448187.4296093,2794448187.4296093,0.12088635039808615\nALL,169894839.66000003,128635919.25335589,75.71502437083254,421.8184258040433,0.00024828207063157557,-1070.5319274499082,-181877850165.0129,99.99999999999999,0.0,2775696858093.137,2775696858093.137,0.8046591408373827\n", "diff_comb_xbin": ",count_1,tax_cut_1,perc_cut_1,tax_inc_1,perc_inc_1,mean_1,tot_change_1,share_of_change_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,pc_aftertaxinc_1\n<$0K,59563.077589398075,4056.0736473392712,6.809711337114037,0.0,0.0,-43.904885662611186,-2615110.1112757614,0.0014433299492683247,0.0,715565492.9116198,715565492.9116198,-0.02046281159243657\n=$0K,1064081.8076371278,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11871381.19527686,8765419.64116814,73.83656119690221,0.0,0.0,-65.8914455968554,-782222468.1881175,0.43172373907258643,0.0,16298782770.319178,16298782770.319178,0.742117175690149\n$10-20K,13722106.726369262,9290388.05604739,67.7038026398264,0.0,0.0,-190.31293306177236,-2611494378.8820095,1.4413343564900551,0.0,87735743280.26855,87735743280.26855,0.6353525578189689\n$20-30K,17803055.750663653,11831382.552533224,66.45703253550829,0.0,0.0,-313.93422941435745,-5588988588.305439,3.084671112255702,0.0,179484343842.6678,179484343842.6678,0.6973891135373389\n$30-40K,17424494.39087834,12479581.82942182,71.62091220250751,0.0,0.0,-482.1299292246152,-8400870247.448877,4.636603092075907,0.0,195910279294.81726,195910279294.81726,0.8194684747507619\n$40-50K,15773360.10535717,12033373.696818795,76.28922193142508,0.0,0.0,-660.8195616609437,-10423344910.742342,5.752846052776239,0.0,187346949649.73682,187346949649.73682,0.8787594713269176\n$50-75K,28512891.592446,22698891.475177273,79.60922308276497,0.0,0.0,-900.0558804953124,-25663195747.706375,14.164015066474668,0.0,447562729863.8865,447562729863.8865,0.8707218746942136\n$75-100K,18777001.08120911,14532610.154177915,77.39579974099952,0.0,0.0,-1236.2714526225793,-23213470402.562126,12.811964174665952,0.0,377450666941.9225,377450666941.9225,0.8549186723677105\n$100-200K,33239301.87849804,27085178.48143115,81.48540116888589,0.0,0.0,-2035.5819748066172,-67661323759.02634,37.34359580786511,0.0,832726236876.0109,832726236876.0109,0.9183544021204915\n$200-500K,10566013.62383414,8964227.13156233,84.84020038873882,0.0,0.0,-3160.966495767678,-33398815058.76455,18.433453274696763,0.0,420253273511.3701,420253273511.3701,0.7495083423901816\n$500-1000K,804836.8348696971,688998.5475463053,85.60723337890643,0.0,0.0,-3209.0737906034838,-2582780792.492609,1.4254867717141668,0.0,27417838381.796295,27417838381.796295,0.35834249649657757\n>$1000K,276751.595371232,261811.6138242054,94.60166380360472,421.8184258040433,0.1524177034059081,-3095.777649708309,-856761403.4713776,0.47286322196358355,0.0,2794448187.4296093,2794448187.4296093,0.12088635039808615\nALL,169894839.66000003,128635919.25335589,75.71502437083254,421.8184258040433,0.00024828207063157557,-1066.4590121177164,-181185882867.70145,100.0,0.0,2775696858093.137,2775696858093.137,0.8046591408373827\n", "dist1_xdec": ",s006_1,c00100_1,num_returns_StandardDed_1,standard_1,num_returns_ItemDed_1,c04470_1,c04600_1,c04800_1,taxbc_1,c62100_1,num_returns_AMT_1,c09600_1,c05800_1,c07100_1,othertaxes_1,refund_1,iitax_1,payrolltax_1,combined_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,expanded_income_1,aftertax_income_1\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,16978739.175471336,61659271169.64348,16943610.136970375,180535511887.89008,35129.03850096073,134749034.5100839,0.0,2395108105.961048,137804299.60648203,61532415468.382256,0.0,0.0,137804299.60648203,46166861.52344634,0.0,7992414031.913403,-7900776593.830368,9382731488.038157,1481954894.2077885,0.0,31892539310.023376,31892539310.023376,94924284751.08844,93442329856.88065\n10-20,16999246.829400994,173040236539.29852,16739277.983131085,229976536619.88086,259968.84626990854,4342275730.72847,0.0,37824367081.22478,3471883153.887864,169327981065.87146,24308.32065564869,4980038.11506692,3476863192.0029306,755449621.750789,0.0,17149171583.019981,-14427758012.76784,24873271511.862938,10445513499.0951,0.0,141233553823.06375,141233553823.06375,325803423842.17,315357910343.0749\n20-30,16969822.43020681,284620072006.438,16478442.010512918,244517793000.84363,491380.41969389276,7744633059.22893,0.0,111026834185.8729,11416646924.549715,278379142918.6293,86819.49549394073,189384656.36395818,11606031580.913673,3018301180.9232235,0.0,18894103655.37432,-10306373255.38387,40938597509.630005,30632224254.246136,0.0,183233784710.0862,183233784710.0862,491851289632.3032,461219065378.0571\n30-40,16983470.158599965,437906391311.3641,16113550.214427501,251280813636.54233,869919.9441724604,15125030050.749878,0.0,220439589499.84973,23204914340.170998,425976982642.808,55716.42438404622,77605007.49529517,23282519347.66629,5657370509.811621,0.0,15479113616.432964,2146035221.421707,62274100115.47186,64420135336.89356,0.0,179795096922.51755,179795096922.51755,653173579739.3582,588753444402.4646\n40-50,17010027.515850604,561194011369.7845,15520941.643490162,267664346998.0873,1489085.8723604393,25620164988.781242,0.0,319858238954.25354,34503365747.9603,541566075500.0396,107827.70728888722,159711589.3158124,34663077337.27611,8245983984.860853,0.0,12922330696.067102,13494762656.348154,76657266485.64014,90152029141.9883,0.0,230474548510.19507,230474548510.19507,832197581645.3185,742045552503.3301\n50-60,16983930.354231566,726162658656.3857,14907684.812481232,277898150215.1746,2076245.5417503319,41919052680.63074,0.0,451320068459.2981,52598591360.0554,694711777160.4728,40969.65221793686,167760353.98244533,52766351714.03784,9550511893.686544,0.0,10189619075.971718,33026220744.379578,97510443295.03809,130536664039.41766,0.0,279871508488.3452,279871508488.3452,1055690658912.0918,925153994872.6741\n60-70,16993462.45814079,983774274836.5154,13800742.613564622,274229040217.20038,3192719.8445761697,66054792316.166,0.0,675589719452.1018,85675861863.22174,937706485185.3577,95155.62010177171,428249887.87063706,86104111751.09238,13186251701.54219,0.0,4834535758.991152,68083324290.55904,125252108836.65607,193335433127.21512,0.0,327911548788.1592,327911548788.1592,1360840118806.7717,1167504685679.5564\n70-80,16988141.590892002,1351948396223.2817,12323811.397788977,261722342537.64957,4664330.193103024,125725409485.22157,0.0,988172948850.6821,128383932040.51398,1262298714131.6606,32959.73385939436,53638510.95180217,128437570551.46576,14447193790.34212,0.0,2300699371.656603,111689677389.46704,166189721533.62415,277879398923.0912,0.0,367639688270.3811,367639688270.3811,1777131962165.9937,1499252563242.9023\n80-90,16924809.937860772,1897028980117.1516,10208871.707454182,230801412549.83008,6715938.23040659,189821304387.90384,0.0,1486081739789.305,214803770928.9933,1769739948494.0837,68027.56733386588,22353764.239324987,214826124693.2326,19158845915.14902,0.0,1141130743.312029,194526148034.77158,233666439870.63483,428192587905.40643,0.0,399024460194.5353,399024460194.5353,2407118952747.0713,1978926364841.6646\n90-100,17063189.20934519,4156032924494.856,7797378.776070002,179291392774.5157,9265810.43327519,294953601281.8348,0.0,3679106263135.3916,757773971573.6184,3952321322959.9336,148052.97404952283,788977185.6598263,758562948759.2781,17769682361.80857,7839074815.270241,1196726480.7537024,747435614731.9861,358444092411.33246,1105879707143.3184,0.0,634620129075.8301,634620129075.8301,5012334150012.887,3906454442869.5674\nALL,169894839.66000003,10633367216724.719,140834311.29589108,2397917340437.6147,29060528.364108965,771441013015.7556,0.0,7971814877513.94,1311970742232.5781,10093560845527.238,659837.4953850147,1892660993.9941685,1313863403226.5723,91835757821.39836,7839074815.270241,92099845013.49297,1137766875206.9512,1195188773057.9287,2332955648264.88,0.0,2775696858093.1367,2775696858093.1367,14011066002255.055,11678110353990.174\n90-95,8553770.674540551,1295846477087.786,4576630.999417543,105237191968.6809,3977139.675123008,113927006963.24908,0.0,1079233825667.8142,177554892791.399,1220457497169.6328,34720.45359439759,47168607.433446735,177602061398.83243,9427034892.928654,11888387.943575712,522758522.02638483,167664156371.82098,149819900824.49557,317484057196.3165,0.0,284765334859.735,284765334859.735,1658965625514.9883,1341481568318.6719\n95-99,6804969.377803668,1543398456839.4414,2805802.509904163,63973871147.65026,3999166.8678995045,129805822046.45773,0.0,1350996365251.3665,252042271144.14136,1453362431480.7188,54135.34967273836,166235213.058722,252208506357.20007,7708453810.368513,838995483.3104254,534303712.6801709,244804744317.46185,149178800820.78766,393983545138.24945,0.0,303915408654.5954,303915408654.5954,1952255444735.5093,1558271899597.2598\nTop 1%,1704449.1570009706,1316787990567.6284,414945.26674829505,10080329658.184534,1289503.8902526759,51220772272.12798,0.0,1248876072216.2112,328176807638.078,1278501394309.582,59197.17078238688,575573365.1676576,328752381003.2456,634193658.5114053,6988190944.01624,139664246.0471466,334966714042.7033,59445390766.04924,394412104808.7525,0.0,45939385561.4998,45939385561.4998,1401113079762.3887,1006700974953.636\n", "dist2_xdec": ",s006_1,c00100_1,num_returns_StandardDed_1,standard_1,num_returns_ItemDed_1,c04470_1,c04600_1,c04800_1,taxbc_1,c62100_1,num_returns_AMT_1,c09600_1,c05800_1,c07100_1,othertaxes_1,refund_1,iitax_1,payrolltax_1,combined_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,expanded_income_1,aftertax_income_1\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,16978739.175471336,61670402190.38161,16943610.136970375,180535511887.89008,35129.03850096073,134749034.5100839,0.0,2395108105.961048,137804299.60648203,61543546489.12039,0.0,0.0,137804299.60648203,46166861.52344634,0.0,7989272300.021811,-7897634861.938775,7912602067.134644,14967205.19586885,0.0,31892539310.023376,31892539310.023376,94200351061.37482,94185383856.17894\n10-20,16999246.829400994,173112776002.6088,16738503.822255492,229967246689.37372,260743.00714550185,4352556105.30365,0.0,37855135683.28514,3474960014.0938997,169394758241.43735,24308.32065564869,4980038.11506692,3479940052.2089667,756235705.9956905,0.0,17148961014.998482,-14425256668.785204,20982475449.400803,6557218780.6156,0.0,141233553823.06375,141233553823.06375,323930565274.2492,317373346493.63354\n20-30,16969822.43020681,284889197702.8307,16476888.395354033,244498476385.96954,492934.03485277575,7764113202.884797,0.0,111193498712.49055,11434145653.335098,278635119976.6699,86819.49549394073,189384656.36395818,11623530309.699055,3021627889.758376,0.0,18884740423.4143,-10282838003.473618,34557272573.43859,24274434569.96497,0.0,183233784710.0862,183233784710.0862,488929752860.60034,464655318290.6353\n30-40,16983470.158599965,438291415350.89746,16112446.538922809,251254325424.42972,871023.6196771523,15152036266.35725,0.0,220742760094.29102,23236967367.71786,426342956466.22156,55716.42438404622,77605007.49529517,23314572375.213158,5665856027.686544,0.0,15455679403.234507,2193036944.2921057,52562906069.41562,54755943013.70773,0.0,179795096922.51755,179795096922.51755,648699486900.833,593943543887.1252\n40-50,17010027.515850604,561467596977.0488,15520941.643490162,267664346998.0873,1489085.8723604393,25620109668.578537,0.0,320105782871.80444,34529396133.07119,541839734867.57416,107827.70728888722,159711589.3158124,34689107722.38701,8257160944.251301,0.0,12899488905.109962,13532457873.025743,64670766183.4624,78203224056.48814,0.0,230474548510.19507,230474548510.19507,826458495280.7039,748255271224.2156\n50-60,16983930.354231566,726500338530.5057,14907684.812481232,277898150215.1746,2076245.5417503319,41918882863.22017,0.0,451635850568.57263,52635183461.71002,695049683457.8069,40969.65221793686,167760353.98244533,52802943815.69246,9556628742.808834,0.0,10181663213.375528,33064651859.5081,82264563825.40878,115329215684.9169,0.0,279871508488.3452,279871508488.3452,1048399841481.3525,933070625796.4355\n60-70,16993462.45814079,984124903245.1876,13800742.613564622,274229040217.20038,3192719.8445761697,66054344991.13361,0.0,675919731384.5642,85725586826.68376,938057664669.354,95155.62010177171,428235449.3956254,86153822276.0794,13190598743.110401,0.0,4827871954.207676,68135351578.761314,105651941192.22339,173787292770.9847,0.0,327911548788.1592,327911548788.1592,1351354482102.7417,1177567189331.757\n70-80,16988141.590892002,1352317822727.6606,12323625.466843642,261717880194.96152,4664516.124048359,125731308215.34793,0.0,988514061367.7651,128430100244.8795,1262664460845.9258,32959.73385939436,53638510.95180217,128483738755.8313,14449443141.075508,0.0,2297516049.2347345,111736779565.52106,140174120988.22308,251910900553.74414,0.0,367639688270.3811,367639688270.3811,1764479584006.9258,1512568683453.1816\n80-90,16924809.937860772,1897692281944.7764,10208871.707454182,230801412549.83008,6715938.23040659,189820156896.7862,0.0,1486730149206.8252,214935702211.1409,1770404680210.2197,68027.56733386588,24463068.957886014,214960165280.0988,19161483089.878616,0.0,1138593713.3170366,194660088476.90314,197166094017.7268,391826182494.6299,0.0,399024460194.5353,399024460194.5353,2389524134436.904,1997697951942.274\n90-100,17063189.20934519,4157122313426.7905,7797200.454398231,179287113054.3932,9265988.75494696,294953483545.60516,0.0,3680257836112.1396,758088246993.6648,3953412257523.669,147874.65237775154,774492806.2623647,758862739799.9271,17767815855.839245,7840597752.32593,1193315955.9650848,747742205740.4487,307368180526.4816,1055110386266.9304,0.0,634620129075.8301,634620129075.8301,4987872408422.123,3932762022155.1924\nALL,169894839.66000003,10637189048098.69,140830515.5917348,2397853503617.3105,29064324.06826524,771501740789.7273,0.0,7975349914107.698,1312628093205.9036,10097344862748.0,659659.1737132433,1880271480.8402562,1314508364686.7437,91873017001.92795,7840597752.32593,92017102932.87912,1138458842504.2627,1013310922892.9156,2151769765397.1785,0.0,2775696858093.1367,2775696858093.1367,13923849101827.809,11772079336430.629\n90-95,8553770.674540551,1296168977964.951,4576452.6777457725,105232912248.55838,3977317.9967947793,113929742159.59142,0.0,1079559783595.9585,177626803379.3081,1220778255214.9976,34542.131922626315,47779219.81446347,177674582599.12256,9428088831.54078,11888387.943575712,519684955.2894647,167738697200.2359,126738192498.43924,294476889698.6752,0.0,284765334859.735,284765334859.735,1647747038274.3909,1353270148575.7158\n95-99,6804969.377803668,1543788701190.2017,2805802.509904163,63973871147.65026,3999166.8678995045,129803645374.63507,0.0,1351425297207.5674,252152722762.7528,1453755315464.4043,54135.34967273836,154567779.02580106,252307290541.7786,7706736633.249356,840148378.3248885,534201089.1437179,244906501197.71045,127221012596.382,372127513794.0924,0.0,303915408654.5954,303915408654.5954,1941664864616.5178,1569537350822.4253\nTop 1%,1704449.1570009706,1317164634271.6382,414945.26674829505,10080329658.184534,1289503.8902526759,51220096011.37868,0.0,1249272755308.6135,328308720851.6039,1278878686844.267,59197.17078238688,572145807.4221002,328880866659.026,632990391.0491102,6988560986.057466,139429911.53190216,335097007342.5024,53408975431.6604,388505982774.1628,0.0,45939385561.4998,45939385561.4998,1398460505531.2139,1009954522757.051\n", "diff_itax_xdec": ",count_1,tax_cut_1,perc_cut_1,tax_inc_1,perc_inc_1,mean_1,tot_change_1,share_of_change_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,pc_aftertaxinc_1\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,16978739.175471336,90703.53339114817,0.5342183094618992,330754.94068954233,1.9480536055785218,0.1850391751192247,3141731.8915936816,0.45402895538566684,0.0,31892539310.023376,31892539310.023376,0.7952006338416195\n10-20,16999246.829400994,94984.90770356395,0.5587595065640385,212891.5940843101,1.2523589793172727,0.1471444004395673,2501343.9826364247,0.36148297648675254,0.0,141233553823.06375,141233553823.06375,0.6390948457154932\n20-30,16969822.43020681,68516.54586981754,0.40375523168619587,744481.0694777684,4.38708815333606,1.3868885197265306,23535251.9102516,3.401208698979597,0.0,183233784710.0862,183233784710.0862,0.7450370486661306\n30-40,16983470.158599965,2407.5079879027635,0.014175595243023212,1191474.9422857212,7.015497605372426,2.7674981868530506,47001722.8703983,6.792477484559798,0.0,179795096922.51755,179795096922.51755,0.8815404026940588\n40-50,17010027.515850604,32875.03933625253,0.19326858410792278,823466.6524190708,4.841065963307424,2.21605853620542,37695216.677589804,5.447543088242586,0.0,230474548510.19507,230474548510.19507,0.8368379407351245\n50-60,16983930.354231566,4666.469722326298,0.027475794029994016,828103.6775610861,4.87580707344789,2.262792788651683,38431115.12851761,5.5538918208759105,0.0,279871508488.3452,279871508488.3452,0.8557095324277286\n60-70,16993462.45814079,0.0,0.0,842071.6571198679,4.9552682932869265,3.0616060929572533,52027288.20228419,7.51874957160957,0.0,327911548788.1592,327911548788.1592,0.8618812220307026\n70-80,16988141.590892002,8925.01621405151,0.052536742564216414,1293472.622673025,7.613973640097899,2.772650310335888,47102176.05401672,6.806994526623593,0.0,367639688270.3811,367639688270.3811,0.8881839215586496\n80-90,16924809.937860772,11618.037379576932,0.0686450094401793,1414714.8175784429,8.358822478790312,7.913852068253886,133940442.1315434,19.356469973645954,0.0,399024460194.5353,399024460194.5353,0.9485743094898469\n90-100,17063189.20934519,153478.05526233435,0.8994687533458122,1467217.4818148336,8.598729486110756,17.96797800816276,306591008.4626345,44.30715290359057,0.0,634620129075.8301,634620129075.8301,0.6734387836941025\nALL,169894839.66000003,468175.112866974,0.2755675886353604,9148649.455703668,5.38488954344481,4.07291533219171,691967297.3114662,100.0,0.0,2775696858093.1367,2775696858093.1367,0.8046591408373605\n90-95,8553770.674540551,11042.048454616272,0.1290898350534675,661262.0837312986,7.730650129532693,8.714382376041325,74540828.4149153,10.77230509368468,0.0,284765334859.735,284765334859.735,0.8787731814920985\n95-99,6804969.377803668,102194.19814803133,1.5017583838270692,495382.5667503253,7.2797177951476995,14.953319346374132,101756880.24859513,14.705446434239889,0.0,303915408654.5954,303915408654.5954,0.7229451566236333\nTop 1%,1704449.1570009706,40241.80865968675,2.3609861575744167,310572.83133320976,18.22130217598699,76.44305449883824,130293299.79912408,18.829401375666002,0.0,45939385561.4998,45939385561.4998,0.3231890982885899\n", "diff_ptax_xdec": ",count_1,tax_cut_1,perc_cut_1,tax_inc_1,perc_inc_1,mean_1,tot_change_1,share_of_change_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,pc_aftertaxinc_1\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,16978739.175471336,11839869.539260402,69.73350268767365,0.0,0.0,-86.58648947428112,-1470129420.9035134,0.8083059149696924,0.0,31892539310.023376,31892539310.023376,0.7952006338416195\n10-20,16999246.829400994,10981764.481066227,64.60147670820774,0.0,0.0,-228.8804969719495,-3890796062.4621363,2.139235788707708,0.0,141233553823.06375,141233553823.06375,0.6390948457154932\n20-30,16969822.43020681,11517028.243076924,67.86770038663609,0.0,0.0,-376.039582172201,-6381324936.191413,3.508577284370696,0.0,183233784710.0862,183233784710.0862,0.7450370486661306\n30-40,16983470.158599965,12841099.0781008,75.60939524245826,0.0,0.0,-571.8026972914455,-9711194046.056234,5.339404461425913,0.0,179795096922.51755,179795096922.51755,0.8815404026940588\n40-50,17010027.515850604,12770050.960000198,75.07366433182173,0.0,0.0,-704.6725992070415,-11986500302.17774,6.59041235164299,0.0,230474548510.19507,230474548510.19507,0.8368379407351245\n50-60,16983930.354231566,13606920.189868484,80.11643892827377,0.0,0.0,-897.664978108601,-15245879469.629282,8.382482779402277,0.0,279871508488.3452,279871508488.3452,0.8557095324277286\n60-70,16993462.45814079,13346454.42495108,78.53875840680959,0.0,0.0,-1153.3945888139554,-19600167644.432686,10.776555598523943,0.0,327911548788.1592,327911548788.1592,0.8618812220307026\n70-80,16988141.590892002,13257465.29397759,78.03952670776789,0.0,0.0,-1531.3976756203297,-26015600545.401062,14.303886109164921,0.0,367639688270.3811,367639688270.3811,0.8881839215586496\n80-90,16924809.937860772,14066339.344729709,83.11076695321306,0.0,0.0,-2156.61776923455,-36500345852.90804,20.06860418670677,0.0,399024460194.5353,399024460194.5353,0.9485743094898469\n90-100,17063189.20934519,14408927.698324474,84.44451691617515,421.8184258040433,0.0024720960462245897,-2993.3391265964196,-51075911884.85079,28.0825355250851,0.0,634620129075.8301,634620129075.8301,0.6734387836941025\nALL,169894839.66000003,128635919.25335588,75.71502437083254,421.8184258040433,0.00024828207063157557,-1070.531927449908,-181877850165.01288,100.0,0.0,2775696858093.1367,2775696858093.1367,0.8046591408373605\n90-95,8553770.674540551,7258791.41570195,84.86072039909862,0.0,0.0,-2698.424964180619,-23081708326.056316,12.690774772802135,0.0,284765334859.735,284765334859.735,0.8787731814920985\n95-99,6804969.377803668,5623232.320651371,82.63420462982734,0.0,0.0,-3226.728439958475,-21957788224.405624,12.072821514265708,0.0,303915408654.5954,303915408654.5954,0.7229451566236333\nTop 1%,1704449.1570009706,1526903.961971153,89.58342674520057,421.8184258040433,0.02474807911233008,-3541.5637419247514,-6036415334.388845,3.318939238017256,0.0,45939385561.4998,45939385561.4998,0.3231890982885899\n", "diff_comb_xdec": ",count_1,tax_cut_1,perc_cut_1,tax_inc_1,perc_inc_1,mean_1,tot_change_1,share_of_change_1,ubi_1,benefit_cost_total_1,benefit_value_total_1,pc_aftertaxinc_1\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,16978739.175471336,11839869.539260402,69.73350268767365,0.0,0.0,-86.40145029916191,-1466987689.0119197,0.8096589346770947,0.0,31892539310.023376,31892539310.023376,0.7952006338416195\n10-20,16999246.829400994,10981764.481066227,64.60147670820774,0.0,0.0,-228.73335257150993,-3888294718.4795,2.1460252073383996,0.0,141233553823.06375,141233553823.06375,0.6390948457154932\n20-30,16969822.43020681,11517028.243076924,67.86770038663609,0.0,0.0,-374.6526936524744,-6357789684.28116,3.5089873359082295,0.0,183233784710.0862,183233784710.0862,0.7450370486661306\n30-40,16983470.158599965,12841099.0781008,75.60939524245826,0.0,0.0,-569.0351991045924,-9664192323.185835,5.33385502790107,0.0,179795096922.51755,179795096922.51755,0.8815404026940588\n40-50,17010027.515850604,12770050.960000198,75.07366433182173,0.0,0.0,-702.4565406708361,-11948805085.50015,6.594777085489021,0.0,230474548510.19507,230474548510.19507,0.8368379407351245\n50-60,16983930.354231566,13606920.189868484,80.11643892827377,0.0,0.0,-895.4021853199491,-15207448354.500763,8.393285455691357,0.0,279871508488.3452,279871508488.3452,0.8557095324277286\n60-70,16993462.45814079,13346454.42495108,78.53875840680959,0.0,0.0,-1150.3329827209982,-19548140356.2304,10.788997490772552,0.0,327911548788.1592,327911548788.1592,0.8618812220307026\n70-80,16988141.590892002,13257465.29397759,78.03952670776789,0.0,0.0,-1528.6250253099938,-25968498369.347046,14.332517499891955,0.0,367639688270.3811,367639688270.3811,0.8881839215586496\n80-90,16924809.937860772,14066339.344729709,83.11076695321306,0.0,0.0,-2148.703917166296,-36366405410.7765,20.071323899627753,0.0,399024460194.5353,399024460194.5353,0.9485743094898469\n90-100,17063189.20934519,14408927.698324474,84.44451691617515,421.8184258040433,0.0024720960462245897,-2975.371148588257,-50769320876.38815,28.020572062702573,0.0,634620129075.8301,634620129075.8301,0.6734387836941025\nALL,169894839.66000003,128635919.25335588,75.71502437083254,421.8184258040433,0.00024828207063157557,-1066.4590121177162,-181185882867.70142,100.0,0.0,2775696858093.1367,2775696858093.1367,0.8046591408373605\n90-95,8553770.674540551,7258791.41570195,84.86072039909862,0.0,0.0,-2689.710581804578,-23007167497.641403,12.698101603446009,0.0,284765334859.735,284765334859.735,0.8787731814920985\n95-99,6804969.377803668,5623232.320651371,82.63420462982734,0.0,0.0,-3211.7751206121006,-21856031344.15703,12.062767252190337,0.0,303915408654.5954,303915408654.5954,0.7229451566236333\nTop 1%,1704449.1570009706,1526903.961971153,89.58342674520057,421.8184258040433,0.02474807911233008,-3465.1206874259155,-5906122034.5897255,3.2597032070662295,0.0,45939385561.4998,45939385561.4998,0.3231890982885899\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_1
ind_tax691,967,297.31
payroll_tax-181,877,850,165.01
combined_tax-181,185,882,867.70
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_1
ind_tax1,137,766,875,206.95
payroll_tax1,195,188,773,057.93
combined_tax2,332,955,648,264.88
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_1
ind_tax1,138,458,842,504.26
payroll_tax1,013,310,922,892.92
combined_tax2,151,769,765,397.18
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_1c00100_1num_returns_StandardDed_1standard_1num_returns_ItemDed_1c04470_1c04600_1c04800_1taxbc_1c62100_1num_returns_AMT_1c09600_1c05800_1c07100_1othertaxes_1refund_1iitax_1payrolltax_1combined_1ubi_1benefit_cost_total_1benefit_value_total_1expanded_income_1aftertax_income_1
<$0K59,563.08-6,975,250,085.1559,563.081,277,155,021.610.000.000.000.000.00-6,975,250,085.150.000.000.000.000.001,189,428.71-1,189,428.7117,173,725.3815,984,296.670.00715,565,492.91715,565,492.91-6,181,361,813.86-6,197,346,110.52
=$0K1,064,081.810.001,064,081.8116,431,829,967.280.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,871,381.2037,577,578,064.1911,836,252.16108,949,203,869.9035,129.04134,749,034.510.002,082,543,117.20134,018,830.0537,450,722,362.930.000.00134,018,830.0544,996,423.590.003,874,852,274.03-3,785,829,867.575,007,396,619.621,221,566,752.040.0016,298,782,770.3216,298,782,770.3254,155,951,977.7852,934,385,225.74
$10-20K13,722,106.73118,439,205,181.6013,666,203.38184,390,964,071.0355,903.351,007,672,680.280.0014,461,468,323.571,279,284,843.87117,599,284,832.2318,316.51995,228.561,280,280,072.43376,205,812.320.0014,342,934,218.69-13,438,859,958.5816,672,685,618.013,233,825,659.430.0087,735,743,280.2787,735,743,280.27212,073,729,233.17208,839,903,573.74
$20-30K17,803,055.75248,503,002,555.1417,351,881.08249,040,557,799.29451,174.677,220,135,667.610.0084,310,372,327.818,331,766,965.86242,469,153,023.0774,040.88153,210,317.358,484,977,283.212,000,472,895.400.0019,700,480,812.00-13,215,976,424.1935,874,658,099.1822,658,681,674.990.00179,484,343,842.67179,484,343,842.67447,971,540,880.74425,312,859,205.76
$30-40K17,424,494.39380,223,734,102.1616,683,795.13256,377,774,555.34740,699.2612,871,630,690.170.00175,509,821,586.8718,296,061,537.99369,983,935,927.8374,486.85117,764,156.0718,413,825,694.064,726,685,323.610.0017,090,242,734.73-3,403,102,364.2854,213,792,268.1950,810,689,903.910.00195,910,279,294.82195,910,279,294.82608,003,209,539.26557,192,519,635.35
$40-50K15,773,360.11479,407,760,525.3714,723,874.87239,214,862,173.841,049,485.2417,294,845,165.310.00262,347,036,700.8228,175,104,522.37466,302,699,220.929,475.208,121,212.7028,183,225,735.077,212,810,364.210.0012,490,040,772.538,480,374,598.3267,045,663,750.8575,526,038,349.170.00187,346,949,649.74187,346,949,649.74704,356,860,246.81628,830,821,897.64
$50-75K28,512,891.591,219,421,208,746.2424,941,981.59466,897,468,699.913,570,910.0068,987,153,835.400.00760,613,730,886.8788,259,300,953.221,168,036,927,244.17159,987.62331,490,721.3688,590,791,674.5816,225,396,361.130.0016,734,305,140.4455,631,090,173.01164,464,936,044.58220,096,026,217.590.00447,562,729,863.89447,562,729,863.891,746,122,583,509.711,526,026,557,292.12
$75-100K18,777,001.081,198,612,896,633.1114,663,253.11297,133,383,313.614,113,747.9795,583,193,461.940.00836,798,199,692.88107,639,395,093.501,130,537,250,852.5974,490.16416,109,897.11108,055,504,990.6115,155,675,295.760.004,684,846,386.6888,214,983,308.18148,627,349,800.54236,842,333,108.720.00377,450,666,941.92377,450,666,941.921,629,610,045,285.711,392,767,712,176.98
$100-200K33,239,301.883,563,519,612,712.1321,110,256.12468,120,995,057.0212,129,045.76339,159,123,221.660.002,786,185,723,175.82403,993,200,407.623,334,267,001,084.18125,772.6985,787,933.35404,078,988,340.9734,435,819,654.330.002,273,399,651.05367,369,769,035.59435,137,783,944.76802,507,552,980.350.00832,726,236,876.01832,726,236,876.014,596,043,750,785.303,793,536,197,804.94
$200-500K10,566,013.622,328,054,504,065.744,519,339.12104,929,415,147.046,046,674.50192,254,826,076.130.002,029,578,426,151.03375,647,638,801.062,195,470,041,237.5185,332.05299,192,149.78375,946,830,950.8411,625,010,971.531,245,500,188.35784,985,462.82364,782,334,704.84227,774,440,211.59592,556,774,916.430.00420,253,273,511.37420,253,273,511.372,893,866,616,889.532,301,309,841,973.10
$500-1000K804,836.83494,193,348,033.06197,513.584,831,904,881.51607,323.2524,047,355,165.320.00463,402,156,588.60113,068,251,720.76476,309,348,705.417,994.7043,483,560.11113,111,735,280.8728,110,153.881,337,619,874.78122,568,131.82114,298,676,869.9524,035,903,102.82138,334,579,972.780.0027,417,838,381.8027,417,838,381.80536,203,750,114.30397,869,170,141.52
>$1000K276,751.60572,389,616,191.1316,316.27321,825,880.23260,435.3312,880,328,017.420.00556,525,398,962.46167,146,718,556.28562,109,731,121.5429,940.84436,505,817.61167,583,224,373.894,574,565.635,255,954,752.130.00172,834,604,560.3916,316,989,872.41189,151,594,432.800.002,794,448,187.432,794,448,187.43588,839,325,606.61399,687,731,173.80
ALL169,894,839.6610,633,367,216,724.72140,834,311.302,397,917,340,437.6129,060,528.36771,441,013,015.760.007,971,814,877,513.941,311,970,742,232.5810,093,560,845,527.24659,837.501,892,660,993.991,313,863,403,226.5791,835,757,821.407,839,074,815.2792,099,845,013.491,137,766,875,206.951,195,188,773,057.932,332,955,648,264.880.002,775,696,858,093.142,775,696,858,093.1414,011,066,002,255.0511,678,110,353,990.17
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_1c00100_1num_returns_StandardDed_1standard_1num_returns_ItemDed_1c04470_1c04600_1c04800_1taxbc_1c62100_1num_returns_AMT_1c09600_1c05800_1c07100_1othertaxes_1refund_1iitax_1payrolltax_1combined_1ubi_1benefit_cost_total_1benefit_value_total_1expanded_income_1aftertax_income_1
<$0K59,563.08-6,975,250,085.1559,563.081,277,155,021.610.000.000.000.000.00-6,975,250,085.150.000.000.000.000.001,110,621.11-1,110,621.1114,479,807.6713,369,186.550.00715,565,492.91715,565,492.91-6,182,708,772.71-6,196,077,959.26
=$0K1,064,081.810.001,064,081.8116,431,829,967.280.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,871,381.2037,580,693,798.2911,836,252.16108,949,203,869.9035,129.04134,749,034.510.002,082,543,117.20134,018,830.0537,453,838,097.030.000.00134,018,830.0544,996,423.590.003,872,068,666.86-3,783,046,260.404,222,390,544.26439,344,283.850.0016,298,782,770.3216,298,782,770.3253,766,564,674.2053,327,220,390.35
$10-20K13,722,106.73118,460,633,122.4613,665,429.22184,381,674,140.5256,677.511,018,033,118.130.0014,464,026,040.671,279,540,615.59117,614,882,459.1418,316.51995,228.561,280,535,844.14376,260,870.590.0014,342,524,009.72-13,438,249,036.1814,060,580,316.72622,331,280.540.0087,735,743,280.2787,735,743,280.27210,789,104,523.39210,166,773,242.84
$20-30K17,803,055.75248,680,472,480.4217,350,327.46249,021,241,184.41452,728.297,239,662,359.720.0084,388,742,822.998,339,609,093.60242,633,373,520.5774,040.88153,210,317.358,492,819,410.952,002,649,307.910.0019,694,389,245.53-13,204,219,142.4930,273,912,229.1717,069,693,086.680.00179,484,343,842.67179,484,343,842.67445,348,637,871.01428,278,944,784.33
$30-40K17,424,494.39380,613,274,504.5616,683,795.13256,377,774,555.34740,699.2612,870,936,924.270.00175,794,484,997.9518,326,465,260.41370,374,401,351.4374,486.85117,764,156.0718,444,229,416.484,734,622,842.500.0017,067,733,145.93-3,358,126,571.9445,767,946,228.4042,409,819,656.460.00195,910,279,294.82195,910,279,294.82604,168,356,333.89561,758,536,677.43
$40-50K15,773,360.11479,764,241,993.9214,722,771.19239,188,373,961.731,050,588.9117,322,363,214.890.00262,667,808,863.7628,208,643,166.15466,639,448,028.079,475.208,121,212.7028,216,764,378.857,222,899,709.320.0012,470,301,591.248,523,563,078.2956,579,130,360.1465,102,693,438.430.00187,346,949,649.74187,346,949,649.74699,459,425,742.12634,356,732,303.69
$50-75K28,512,891.591,219,915,873,681.8624,941,981.59466,897,468,699.913,570,910.0068,986,931,138.290.00761,076,092,285.7688,315,519,628.091,168,531,889,109.28159,987.62331,476,282.8888,646,995,910.9716,238,269,950.460.0016,715,530,491.7855,693,195,468.73138,739,635,001.15194,432,830,469.880.00447,562,729,863.89447,562,729,863.891,733,746,834,809.991,539,314,004,340.10
$75-100K18,777,001.081,198,986,930,970.4714,663,253.11297,133,383,313.614,113,747.9795,582,467,227.050.00837,159,725,483.83107,688,236,420.401,130,912,092,488.1674,490.16416,109,897.11108,104,346,317.5215,158,426,767.930.004,679,287,561.2288,266,631,988.36125,362,230,717.80213,628,862,706.160.00377,450,666,941.92377,450,666,941.921,618,303,606,117.251,404,674,743,411.09
$100-200K33,239,301.883,564,644,279,680.6321,109,891.87468,112,252,994.2112,129,410.01339,167,244,818.310.002,787,270,643,362.04404,205,233,173.293,335,386,944,098.55125,594.3788,219,178.79404,293,452,352.0834,440,115,883.170.002,266,940,962.89367,586,395,506.02367,259,833,715.31734,846,229,221.320.00832,726,236,876.01832,726,236,876.014,563,220,533,694.843,828,374,304,473.52
$200-500K10,566,013.622,328,693,121,894.804,519,339.12104,929,415,147.046,046,674.50192,251,927,800.600.002,030,275,956,241.57375,829,831,594.492,196,112,016,659.8085,332.05284,719,031.27376,114,550,625.7611,622,378,348.111,246,812,964.79784,657,243.91364,954,327,998.53194,203,631,859.14559,157,959,857.670.00420,253,273,511.37420,253,273,511.372,877,716,311,080.602,318,558,351,222.93
$500-1000K804,836.83494,360,159,532.57197,513.584,831,904,881.51607,323.2524,047,097,136.540.00463,569,491,596.75113,126,488,097.77476,476,495,566.867,994.7043,384,162.58113,169,872,260.3527,822,332.721,337,773,132.39122,559,392.68114,357,263,667.3521,394,535,512.93135,751,799,180.280.0027,417,838,381.8027,417,838,381.80535,046,703,638.88399,294,904,458.60
>$1000K276,751.60572,464,616,523.8416,316.27321,825,880.23260,435.3312,880,328,017.420.00556,600,399,295.18167,174,507,326.06562,184,731,454.2629,940.84436,272,013.53167,610,779,339.604,574,565.635,256,011,655.140.00172,862,216,429.1115,432,616,600.22188,294,833,029.330.002,794,448,187.432,794,448,187.43588,465,732,114.34400,170,899,085.01
ALL169,894,839.6610,637,189,048,098.69140,830,515.592,397,853,503,617.3129,064,324.07771,501,740,789.730.007,975,349,914,107.701,312,628,093,205.9010,097,344,862,748.00659,659.171,880,271,480.841,314,508,364,686.7491,873,017,001.937,840,597,752.3392,017,102,932.881,138,458,842,504.261,013,310,922,892.922,151,769,765,397.180.002,775,696,858,093.142,775,696,858,093.1413,923,849,101,827.8111,772,079,336,430.63
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_1tax_cut_1perc_cut_1tax_inc_1perc_inc_1mean_1tot_change_1share_of_change_1ubi_1benefit_cost_total_1benefit_value_total_1pc_aftertaxinc_1
<$0K59,563.080.000.00283.200.481.3278,807.590.010.00715,565,492.91715,565,492.91-0.02
=$0K1,064,081.810.000.000.000.000.000.000.000.000.000.00nan
$0-10K11,871,381.2074,141.120.62280,236.972.360.232,783,607.170.400.0016,298,782,770.3216,298,782,770.320.74
$10-20K13,722,106.7373,492.680.5498,879.530.720.04610,922.400.090.0087,735,743,280.2787,735,743,280.270.64
$20-30K17,803,055.7561,932.210.35493,482.902.770.6611,757,281.701.700.00179,484,343,842.67179,484,343,842.670.70
$30-40K17,424,494.3947,046.480.271,167,191.776.702.5844,975,792.346.500.00195,910,279,294.82195,910,279,294.820.82
$40-50K15,773,360.1132,614.010.211,023,733.806.492.7443,188,479.976.240.00187,346,949,649.74187,346,949,649.740.88
$50-75K28,512,891.594,927.500.021,322,010.054.642.1862,105,295.728.980.00447,562,729,863.89447,562,729,863.890.87
$75-100K18,777,001.080.000.00928,294.654.942.7551,648,680.187.460.00377,450,666,941.92377,450,666,941.920.85
$100-200K33,239,301.8831,585.100.102,773,190.828.346.52216,626,470.4331.310.00832,726,236,876.01832,726,236,876.010.92
$200-500K10,566,013.62114,029.271.08864,913.048.1916.28171,993,293.6924.860.00420,253,273,511.37420,253,273,511.370.75
$500-1000K804,836.8310,524.621.31131,039.9616.2872.7958,586,797.408.470.0027,417,838,381.8027,417,838,381.800.36
>$1000K276,751.6017,882.126.4665,392.7723.6399.7727,611,868.713.990.002,794,448,187.432,794,448,187.430.12
ALL169,894,839.66468,175.110.289,148,649.465.384.07691,967,297.31100.000.002,775,696,858,093.142,775,696,858,093.140.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_1tax_cut_1perc_cut_1tax_inc_1perc_inc_1mean_1tot_change_1share_of_change_1ubi_1benefit_cost_total_1benefit_value_total_1pc_aftertaxinc_1
<$0K59,563.084,056.076.810.000.00-45.23-2,693,917.710.000.00715,565,492.91715,565,492.91-0.02
=$0K1,064,081.810.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,871,381.208,765,419.6473.840.000.00-66.13-785,006,075.360.430.0016,298,782,770.3216,298,782,770.320.74
$10-20K13,722,106.739,290,388.0667.700.000.00-190.36-2,612,105,301.291.440.0087,735,743,280.2787,735,743,280.270.64
$20-30K17,803,055.7511,831,382.5566.460.000.00-314.59-5,600,745,870.013.080.00179,484,343,842.67179,484,343,842.670.70
$30-40K17,424,494.3912,479,581.8371.620.000.00-484.71-8,445,846,039.794.640.00195,910,279,294.82195,910,279,294.820.82
$40-50K15,773,360.1112,033,373.7076.290.000.00-663.56-10,466,533,390.715.750.00187,346,949,649.74187,346,949,649.740.88
$50-75K28,512,891.5922,698,891.4879.610.000.00-902.23-25,725,301,043.4314.140.00447,562,729,863.89447,562,729,863.890.87
$75-100K18,777,001.0814,532,610.1577.400.000.00-1,239.02-23,265,119,082.7412.790.00377,450,666,941.92377,450,666,941.920.85
$100-200K33,239,301.8827,085,178.4881.490.000.00-2,042.10-67,877,950,229.4637.320.00832,726,236,876.01832,726,236,876.010.92
$200-500K10,566,013.628,964,227.1384.840.000.00-3,177.24-33,570,808,352.4518.460.00420,253,273,511.37420,253,273,511.370.75
$500-1000K804,836.83688,998.5585.610.000.00-3,281.87-2,641,367,589.891.450.0027,417,838,381.8027,417,838,381.800.36
>$1000K276,751.60261,811.6194.60421.820.15-3,195.55-884,373,272.190.490.002,794,448,187.432,794,448,187.430.12
ALL169,894,839.66128,635,919.2575.72421.820.00-1,070.53-181,877,850,165.01100.000.002,775,696,858,093.142,775,696,858,093.140.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_1tax_cut_1perc_cut_1tax_inc_1perc_inc_1mean_1tot_change_1share_of_change_1ubi_1benefit_cost_total_1benefit_value_total_1pc_aftertaxinc_1
<$0K59,563.084,056.076.810.000.00-43.90-2,615,110.110.000.00715,565,492.91715,565,492.91-0.02
=$0K1,064,081.810.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,871,381.208,765,419.6473.840.000.00-65.89-782,222,468.190.430.0016,298,782,770.3216,298,782,770.320.74
$10-20K13,722,106.739,290,388.0667.700.000.00-190.31-2,611,494,378.881.440.0087,735,743,280.2787,735,743,280.270.64
$20-30K17,803,055.7511,831,382.5566.460.000.00-313.93-5,588,988,588.313.080.00179,484,343,842.67179,484,343,842.670.70
$30-40K17,424,494.3912,479,581.8371.620.000.00-482.13-8,400,870,247.454.640.00195,910,279,294.82195,910,279,294.820.82
$40-50K15,773,360.1112,033,373.7076.290.000.00-660.82-10,423,344,910.745.750.00187,346,949,649.74187,346,949,649.740.88
$50-75K28,512,891.5922,698,891.4879.610.000.00-900.06-25,663,195,747.7114.160.00447,562,729,863.89447,562,729,863.890.87
$75-100K18,777,001.0814,532,610.1577.400.000.00-1,236.27-23,213,470,402.5612.810.00377,450,666,941.92377,450,666,941.920.85
$100-200K33,239,301.8827,085,178.4881.490.000.00-2,035.58-67,661,323,759.0337.340.00832,726,236,876.01832,726,236,876.010.92
$200-500K10,566,013.628,964,227.1384.840.000.00-3,160.97-33,398,815,058.7618.430.00420,253,273,511.37420,253,273,511.370.75
$500-1000K804,836.83688,998.5585.610.000.00-3,209.07-2,582,780,792.491.430.0027,417,838,381.8027,417,838,381.800.36
>$1000K276,751.60261,811.6194.60421.820.15-3,095.78-856,761,403.470.470.002,794,448,187.432,794,448,187.430.12
ALL169,894,839.66128,635,919.2575.72421.820.00-1,066.46-181,185,882,867.70100.000.002,775,696,858,093.142,775,696,858,093.140.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_1c00100_1num_returns_StandardDed_1standard_1num_returns_ItemDed_1c04470_1c04600_1c04800_1taxbc_1c62100_1num_returns_AMT_1c09600_1c05800_1c07100_1othertaxes_1refund_1iitax_1payrolltax_1combined_1ubi_1benefit_cost_total_1benefit_value_total_1expanded_income_1aftertax_income_1
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p16,978,739.1861,659,271,169.6416,943,610.14180,535,511,887.8935,129.04134,749,034.510.002,395,108,105.96137,804,299.6161,532,415,468.380.000.00137,804,299.6146,166,861.520.007,992,414,031.91-7,900,776,593.839,382,731,488.041,481,954,894.210.0031,892,539,310.0231,892,539,310.0294,924,284,751.0993,442,329,856.88
10-2016,999,246.83173,040,236,539.3016,739,277.98229,976,536,619.88259,968.854,342,275,730.730.0037,824,367,081.223,471,883,153.89169,327,981,065.8724,308.324,980,038.123,476,863,192.00755,449,621.750.0017,149,171,583.02-14,427,758,012.7724,873,271,511.8610,445,513,499.100.00141,233,553,823.06141,233,553,823.06325,803,423,842.17315,357,910,343.07
20-3016,969,822.43284,620,072,006.4416,478,442.01244,517,793,000.84491,380.427,744,633,059.230.00111,026,834,185.8711,416,646,924.55278,379,142,918.6386,819.50189,384,656.3611,606,031,580.913,018,301,180.920.0018,894,103,655.37-10,306,373,255.3840,938,597,509.6330,632,224,254.250.00183,233,784,710.09183,233,784,710.09491,851,289,632.30461,219,065,378.06
30-4016,983,470.16437,906,391,311.3616,113,550.21251,280,813,636.54869,919.9415,125,030,050.750.00220,439,589,499.8523,204,914,340.17425,976,982,642.8155,716.4277,605,007.5023,282,519,347.675,657,370,509.810.0015,479,113,616.432,146,035,221.4262,274,100,115.4764,420,135,336.890.00179,795,096,922.52179,795,096,922.52653,173,579,739.36588,753,444,402.46
40-5017,010,027.52561,194,011,369.7815,520,941.64267,664,346,998.091,489,085.8725,620,164,988.780.00319,858,238,954.2534,503,365,747.96541,566,075,500.04107,827.71159,711,589.3234,663,077,337.288,245,983,984.860.0012,922,330,696.0713,494,762,656.3576,657,266,485.6490,152,029,141.990.00230,474,548,510.20230,474,548,510.20832,197,581,645.32742,045,552,503.33
50-6016,983,930.35726,162,658,656.3914,907,684.81277,898,150,215.172,076,245.5441,919,052,680.630.00451,320,068,459.3052,598,591,360.06694,711,777,160.4740,969.65167,760,353.9852,766,351,714.049,550,511,893.690.0010,189,619,075.9733,026,220,744.3897,510,443,295.04130,536,664,039.420.00279,871,508,488.35279,871,508,488.351,055,690,658,912.09925,153,994,872.67
60-7016,993,462.46983,774,274,836.5213,800,742.61274,229,040,217.203,192,719.8466,054,792,316.170.00675,589,719,452.1085,675,861,863.22937,706,485,185.3695,155.62428,249,887.8786,104,111,751.0913,186,251,701.540.004,834,535,758.9968,083,324,290.56125,252,108,836.66193,335,433,127.220.00327,911,548,788.16327,911,548,788.161,360,840,118,806.771,167,504,685,679.56
70-8016,988,141.591,351,948,396,223.2812,323,811.40261,722,342,537.654,664,330.19125,725,409,485.220.00988,172,948,850.68128,383,932,040.511,262,298,714,131.6632,959.7353,638,510.95128,437,570,551.4714,447,193,790.340.002,300,699,371.66111,689,677,389.47166,189,721,533.62277,879,398,923.090.00367,639,688,270.38367,639,688,270.381,777,131,962,165.991,499,252,563,242.90
80-9016,924,809.941,897,028,980,117.1510,208,871.71230,801,412,549.836,715,938.23189,821,304,387.900.001,486,081,739,789.30214,803,770,928.991,769,739,948,494.0868,027.5722,353,764.24214,826,124,693.2319,158,845,915.150.001,141,130,743.31194,526,148,034.77233,666,439,870.63428,192,587,905.410.00399,024,460,194.54399,024,460,194.542,407,118,952,747.071,978,926,364,841.66
90-10017,063,189.214,156,032,924,494.867,797,378.78179,291,392,774.529,265,810.43294,953,601,281.830.003,679,106,263,135.39757,773,971,573.623,952,321,322,959.93148,052.97788,977,185.66758,562,948,759.2817,769,682,361.817,839,074,815.271,196,726,480.75747,435,614,731.99358,444,092,411.331,105,879,707,143.320.00634,620,129,075.83634,620,129,075.835,012,334,150,012.893,906,454,442,869.57
ALL169,894,839.6610,633,367,216,724.72140,834,311.302,397,917,340,437.6129,060,528.36771,441,013,015.760.007,971,814,877,513.941,311,970,742,232.5810,093,560,845,527.24659,837.501,892,660,993.991,313,863,403,226.5791,835,757,821.407,839,074,815.2792,099,845,013.491,137,766,875,206.951,195,188,773,057.932,332,955,648,264.880.002,775,696,858,093.142,775,696,858,093.1414,011,066,002,255.0511,678,110,353,990.17
90-958,553,770.671,295,846,477,087.794,576,631.00105,237,191,968.683,977,139.68113,927,006,963.250.001,079,233,825,667.81177,554,892,791.401,220,457,497,169.6334,720.4547,168,607.43177,602,061,398.839,427,034,892.9311,888,387.94522,758,522.03167,664,156,371.82149,819,900,824.50317,484,057,196.320.00284,765,334,859.73284,765,334,859.731,658,965,625,514.991,341,481,568,318.67
95-996,804,969.381,543,398,456,839.442,805,802.5163,973,871,147.653,999,166.87129,805,822,046.460.001,350,996,365,251.37252,042,271,144.141,453,362,431,480.7254,135.35166,235,213.06252,208,506,357.207,708,453,810.37838,995,483.31534,303,712.68244,804,744,317.46149,178,800,820.79393,983,545,138.250.00303,915,408,654.60303,915,408,654.601,952,255,444,735.511,558,271,899,597.26
Top 1%1,704,449.161,316,787,990,567.63414,945.2710,080,329,658.181,289,503.8951,220,772,272.130.001,248,876,072,216.21328,176,807,638.081,278,501,394,309.5859,197.17575,573,365.17328,752,381,003.25634,193,658.516,988,190,944.02139,664,246.05334,966,714,042.7059,445,390,766.05394,412,104,808.750.0045,939,385,561.5045,939,385,561.501,401,113,079,762.391,006,700,974,953.64
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_1c00100_1num_returns_StandardDed_1standard_1num_returns_ItemDed_1c04470_1c04600_1c04800_1taxbc_1c62100_1num_returns_AMT_1c09600_1c05800_1c07100_1othertaxes_1refund_1iitax_1payrolltax_1combined_1ubi_1benefit_cost_total_1benefit_value_total_1expanded_income_1aftertax_income_1
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p16,978,739.1861,670,402,190.3816,943,610.14180,535,511,887.8935,129.04134,749,034.510.002,395,108,105.96137,804,299.6161,543,546,489.120.000.00137,804,299.6146,166,861.520.007,989,272,300.02-7,897,634,861.947,912,602,067.1314,967,205.200.0031,892,539,310.0231,892,539,310.0294,200,351,061.3794,185,383,856.18
10-2016,999,246.83173,112,776,002.6116,738,503.82229,967,246,689.37260,743.014,352,556,105.300.0037,855,135,683.293,474,960,014.09169,394,758,241.4424,308.324,980,038.123,479,940,052.21756,235,706.000.0017,148,961,015.00-14,425,256,668.7920,982,475,449.406,557,218,780.620.00141,233,553,823.06141,233,553,823.06323,930,565,274.25317,373,346,493.63
20-3016,969,822.43284,889,197,702.8316,476,888.40244,498,476,385.97492,934.037,764,113,202.880.00111,193,498,712.4911,434,145,653.34278,635,119,976.6786,819.50189,384,656.3611,623,530,309.703,021,627,889.760.0018,884,740,423.41-10,282,838,003.4734,557,272,573.4424,274,434,569.960.00183,233,784,710.09183,233,784,710.09488,929,752,860.60464,655,318,290.64
30-4016,983,470.16438,291,415,350.9016,112,446.54251,254,325,424.43871,023.6215,152,036,266.360.00220,742,760,094.2923,236,967,367.72426,342,956,466.2255,716.4277,605,007.5023,314,572,375.215,665,856,027.690.0015,455,679,403.232,193,036,944.2952,562,906,069.4254,755,943,013.710.00179,795,096,922.52179,795,096,922.52648,699,486,900.83593,943,543,887.13
40-5017,010,027.52561,467,596,977.0515,520,941.64267,664,346,998.091,489,085.8725,620,109,668.580.00320,105,782,871.8034,529,396,133.07541,839,734,867.57107,827.71159,711,589.3234,689,107,722.398,257,160,944.250.0012,899,488,905.1113,532,457,873.0364,670,766,183.4678,203,224,056.490.00230,474,548,510.20230,474,548,510.20826,458,495,280.70748,255,271,224.22
50-6016,983,930.35726,500,338,530.5114,907,684.81277,898,150,215.172,076,245.5441,918,882,863.220.00451,635,850,568.5752,635,183,461.71695,049,683,457.8140,969.65167,760,353.9852,802,943,815.699,556,628,742.810.0010,181,663,213.3833,064,651,859.5182,264,563,825.41115,329,215,684.920.00279,871,508,488.35279,871,508,488.351,048,399,841,481.35933,070,625,796.44
60-7016,993,462.46984,124,903,245.1913,800,742.61274,229,040,217.203,192,719.8466,054,344,991.130.00675,919,731,384.5685,725,586,826.68938,057,664,669.3595,155.62428,235,449.4086,153,822,276.0813,190,598,743.110.004,827,871,954.2168,135,351,578.76105,651,941,192.22173,787,292,770.980.00327,911,548,788.16327,911,548,788.161,351,354,482,102.741,177,567,189,331.76
70-8016,988,141.591,352,317,822,727.6612,323,625.47261,717,880,194.964,664,516.12125,731,308,215.350.00988,514,061,367.77128,430,100,244.881,262,664,460,845.9332,959.7353,638,510.95128,483,738,755.8314,449,443,141.080.002,297,516,049.23111,736,779,565.52140,174,120,988.22251,910,900,553.740.00367,639,688,270.38367,639,688,270.381,764,479,584,006.931,512,568,683,453.18
80-9016,924,809.941,897,692,281,944.7810,208,871.71230,801,412,549.836,715,938.23189,820,156,896.790.001,486,730,149,206.83214,935,702,211.141,770,404,680,210.2268,027.5724,463,068.96214,960,165,280.1019,161,483,089.880.001,138,593,713.32194,660,088,476.90197,166,094,017.73391,826,182,494.630.00399,024,460,194.54399,024,460,194.542,389,524,134,436.901,997,697,951,942.27
90-10017,063,189.214,157,122,313,426.797,797,200.45179,287,113,054.399,265,988.75294,953,483,545.610.003,680,257,836,112.14758,088,246,993.663,953,412,257,523.67147,874.65774,492,806.26758,862,739,799.9317,767,815,855.847,840,597,752.331,193,315,955.97747,742,205,740.45307,368,180,526.481,055,110,386,266.930.00634,620,129,075.83634,620,129,075.834,987,872,408,422.123,932,762,022,155.19
ALL169,894,839.6610,637,189,048,098.69140,830,515.592,397,853,503,617.3129,064,324.07771,501,740,789.730.007,975,349,914,107.701,312,628,093,205.9010,097,344,862,748.00659,659.171,880,271,480.841,314,508,364,686.7491,873,017,001.937,840,597,752.3392,017,102,932.881,138,458,842,504.261,013,310,922,892.922,151,769,765,397.180.002,775,696,858,093.142,775,696,858,093.1413,923,849,101,827.8111,772,079,336,430.63
90-958,553,770.671,296,168,977,964.954,576,452.68105,232,912,248.563,977,318.00113,929,742,159.590.001,079,559,783,595.96177,626,803,379.311,220,778,255,215.0034,542.1347,779,219.81177,674,582,599.129,428,088,831.5411,888,387.94519,684,955.29167,738,697,200.24126,738,192,498.44294,476,889,698.680.00284,765,334,859.73284,765,334,859.731,647,747,038,274.391,353,270,148,575.72
95-996,804,969.381,543,788,701,190.202,805,802.5163,973,871,147.653,999,166.87129,803,645,374.640.001,351,425,297,207.57252,152,722,762.751,453,755,315,464.4054,135.35154,567,779.03252,307,290,541.787,706,736,633.25840,148,378.32534,201,089.14244,906,501,197.71127,221,012,596.38372,127,513,794.090.00303,915,408,654.60303,915,408,654.601,941,664,864,616.521,569,537,350,822.43
Top 1%1,704,449.161,317,164,634,271.64414,945.2710,080,329,658.181,289,503.8951,220,096,011.380.001,249,272,755,308.61328,308,720,851.601,278,878,686,844.2759,197.17572,145,807.42328,880,866,659.03632,990,391.056,988,560,986.06139,429,911.53335,097,007,342.5053,408,975,431.66388,505,982,774.160.0045,939,385,561.5045,939,385,561.501,398,460,505,531.211,009,954,522,757.05
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_1tax_cut_1perc_cut_1tax_inc_1perc_inc_1mean_1tot_change_1share_of_change_1ubi_1benefit_cost_total_1benefit_value_total_1pc_aftertaxinc_1
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p16,978,739.1890,703.530.53330,754.941.950.193,141,731.890.450.0031,892,539,310.0231,892,539,310.020.80
10-2016,999,246.8394,984.910.56212,891.591.250.152,501,343.980.360.00141,233,553,823.06141,233,553,823.060.64
20-3016,969,822.4368,516.550.40744,481.074.391.3923,535,251.913.400.00183,233,784,710.09183,233,784,710.090.75
30-4016,983,470.162,407.510.011,191,474.947.022.7747,001,722.876.790.00179,795,096,922.52179,795,096,922.520.88
40-5017,010,027.5232,875.040.19823,466.654.842.2237,695,216.685.450.00230,474,548,510.20230,474,548,510.200.84
50-6016,983,930.354,666.470.03828,103.684.882.2638,431,115.135.550.00279,871,508,488.35279,871,508,488.350.86
60-7016,993,462.460.000.00842,071.664.963.0652,027,288.207.520.00327,911,548,788.16327,911,548,788.160.86
70-8016,988,141.598,925.020.051,293,472.627.612.7747,102,176.056.810.00367,639,688,270.38367,639,688,270.380.89
80-9016,924,809.9411,618.040.071,414,714.828.367.91133,940,442.1319.360.00399,024,460,194.54399,024,460,194.540.95
90-10017,063,189.21153,478.060.901,467,217.488.6017.97306,591,008.4644.310.00634,620,129,075.83634,620,129,075.830.67
ALL169,894,839.66468,175.110.289,148,649.465.384.07691,967,297.31100.000.002,775,696,858,093.142,775,696,858,093.140.80
90-958,553,770.6711,042.050.13661,262.087.738.7174,540,828.4110.770.00284,765,334,859.73284,765,334,859.730.88
95-996,804,969.38102,194.201.50495,382.577.2814.95101,756,880.2514.710.00303,915,408,654.60303,915,408,654.600.72
Top 1%1,704,449.1640,241.812.36310,572.8318.2276.44130,293,299.8018.830.0045,939,385,561.5045,939,385,561.500.32
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_1tax_cut_1perc_cut_1tax_inc_1perc_inc_1mean_1tot_change_1share_of_change_1ubi_1benefit_cost_total_1benefit_value_total_1pc_aftertaxinc_1
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p16,978,739.1811,839,869.5469.730.000.00-86.59-1,470,129,420.900.810.0031,892,539,310.0231,892,539,310.020.80
10-2016,999,246.8310,981,764.4864.600.000.00-228.88-3,890,796,062.462.140.00141,233,553,823.06141,233,553,823.060.64
20-3016,969,822.4311,517,028.2467.870.000.00-376.04-6,381,324,936.193.510.00183,233,784,710.09183,233,784,710.090.75
30-4016,983,470.1612,841,099.0875.610.000.00-571.80-9,711,194,046.065.340.00179,795,096,922.52179,795,096,922.520.88
40-5017,010,027.5212,770,050.9675.070.000.00-704.67-11,986,500,302.186.590.00230,474,548,510.20230,474,548,510.200.84
50-6016,983,930.3513,606,920.1980.120.000.00-897.66-15,245,879,469.638.380.00279,871,508,488.35279,871,508,488.350.86
60-7016,993,462.4613,346,454.4278.540.000.00-1,153.39-19,600,167,644.4310.780.00327,911,548,788.16327,911,548,788.160.86
70-8016,988,141.5913,257,465.2978.040.000.00-1,531.40-26,015,600,545.4014.300.00367,639,688,270.38367,639,688,270.380.89
80-9016,924,809.9414,066,339.3483.110.000.00-2,156.62-36,500,345,852.9120.070.00399,024,460,194.54399,024,460,194.540.95
90-10017,063,189.2114,408,927.7084.44421.820.00-2,993.34-51,075,911,884.8528.080.00634,620,129,075.83634,620,129,075.830.67
ALL169,894,839.66128,635,919.2575.72421.820.00-1,070.53-181,877,850,165.01100.000.002,775,696,858,093.142,775,696,858,093.140.80
90-958,553,770.677,258,791.4284.860.000.00-2,698.42-23,081,708,326.0612.690.00284,765,334,859.73284,765,334,859.730.88
95-996,804,969.385,623,232.3282.630.000.00-3,226.73-21,957,788,224.4112.070.00303,915,408,654.60303,915,408,654.600.72
Top 1%1,704,449.161,526,903.9689.58421.820.02-3,541.56-6,036,415,334.393.320.0045,939,385,561.5045,939,385,561.500.32
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_1tax_cut_1perc_cut_1tax_inc_1perc_inc_1mean_1tot_change_1share_of_change_1ubi_1benefit_cost_total_1benefit_value_total_1pc_aftertaxinc_1
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p16,978,739.1811,839,869.5469.730.000.00-86.40-1,466,987,689.010.810.0031,892,539,310.0231,892,539,310.020.80
10-2016,999,246.8310,981,764.4864.600.000.00-228.73-3,888,294,718.482.150.00141,233,553,823.06141,233,553,823.060.64
20-3016,969,822.4311,517,028.2467.870.000.00-374.65-6,357,789,684.283.510.00183,233,784,710.09183,233,784,710.090.75
30-4016,983,470.1612,841,099.0875.610.000.00-569.04-9,664,192,323.195.330.00179,795,096,922.52179,795,096,922.520.88
40-5017,010,027.5212,770,050.9675.070.000.00-702.46-11,948,805,085.506.590.00230,474,548,510.20230,474,548,510.200.84
50-6016,983,930.3513,606,920.1980.120.000.00-895.40-15,207,448,354.508.390.00279,871,508,488.35279,871,508,488.350.86
60-7016,993,462.4613,346,454.4278.540.000.00-1,150.33-19,548,140,356.2310.790.00327,911,548,788.16327,911,548,788.160.86
70-8016,988,141.5913,257,465.2978.040.000.00-1,528.63-25,968,498,369.3514.330.00367,639,688,270.38367,639,688,270.380.89
80-9016,924,809.9414,066,339.3483.110.000.00-2,148.70-36,366,405,410.7820.070.00399,024,460,194.54399,024,460,194.540.95
90-10017,063,189.2114,408,927.7084.44421.820.00-2,975.37-50,769,320,876.3928.020.00634,620,129,075.83634,620,129,075.830.67
ALL169,894,839.66128,635,919.2575.72421.820.00-1,066.46-181,185,882,867.70100.000.002,775,696,858,093.142,775,696,858,093.140.80
90-958,553,770.677,258,791.4284.860.000.00-2,689.71-23,007,167,497.6412.700.00284,765,334,859.73284,765,334,859.730.88
95-996,804,969.385,623,232.3282.630.000.00-3,211.78-21,856,031,344.1612.060.00303,915,408,654.60303,915,408,654.600.72
Top 1%1,704,449.161,526,903.9689.58421.820.02-3,465.12-5,906,122,034.593.260.0045,939,385,561.5045,939,385,561.500.32
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_2.json b/webapp/apps/taxbrain/tests/response_year_2.json index dda51bb9..7bb1449b 100644 --- a/webapp/apps/taxbrain/tests/response_year_2.json +++ b/webapp/apps/taxbrain/tests/response_year_2.json @@ -1 +1 @@ -{"aggr_1": {"combined_tax_2": "2573709395033.35", "payroll_tax_2": "1300252453546.64", "ind_tax_2": "1273456941486.71"}, "aggr_2": {"combined_tax_2": "3670614163287.13", "payroll_tax_2": "1924379583118.09", "ind_tax_2": "1746234580169.04"}, "diff_ptax_xdec": {"0-10n_2": ["92422.73", "0.00", "0.00", "20095.25", "21.74", "260.78", "24101692.67", "0.00", "1908825015.32", "960435067.12", "960435067.12", "-7.09"], "0-10p_2": ["16104495.79", "0.00", "0.00", "11849361.94", "73.58", "296.84", "4780413495.58", "0.77", "214337422783.91", "33462679933.43", "33462679933.43", "190.55"], "ALL_2": ["174512955.65", "951.15", "0.00", "132538743.87", "75.95", "3576.39", "624127129571.45", "100.00", "3649510616804.69", "2867728243386.20", "2867728243386.20", "22.11"], "70-80_2": ["17451919.32", "0.00", "0.00", "14023601.18", "80.36", "5138.56", "89677724408.13", "14.37", "435224870015.13", "386745706262.46", "386745706262.46", "19.70"], "40-50_2": ["17450596.18", "0.00", "0.00", "13378933.33", "76.67", "2320.39", "40492111044.89", "6.49", "350626739029.14", "238339640021.26", "238339640021.26", "36.37"], "20-30_2": ["17452009.50", "0.00", "0.00", "12274651.26", "70.33", "1254.85", "21899612057.65", "3.51", "297771676522.83", "171864055665.04", "171864055665.04", "52.52"], "50-60_2": ["17453195.00", "0.00", "0.00", "13680260.06", "78.38", "3020.11", "52710646269.44", "8.45", "377671116733.48", "279661951738.77", "279661951738.77", "30.46"], "Top 1%_2": ["1745160.35", "951.15", "0.05", "1530758.23", "87.71", "11410.33", "19912859595.92", "3.19", "48285995483.00", "76807387566.04", "76807387566.04", "1.87"], "90-95_2": ["8725281.60", "0.00", "0.00", "7424566.16", "85.09", "9328.95", "81397748869.69", "13.04", "241188981476.71", "268847824134.84", "268847824134.84", "10.15"], "90-100_2": ["17451603.11", "951.15", "0.01", "15005080.69", "85.98", "10327.55", "180232332138.95", "28.88", "486968717326.18", "620383872129.61", "620383872129.61", "6.48"], "30-40_2": ["17450159.56", "0.00", "0.00", "12742004.96", "73.02", "1711.92", "29873195628.22", "4.79", "321175746219.14", "211321548480.45", "211321548480.45", "42.87"], "0-10z_2": ["1254276.88", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "23522419914.22", "0.00", "0.00", "inf"], "80-90_2": ["17451170.45", "0.00", "0.00", "14389580.64", "82.46", "7068.51", "123353778579.77", "19.76", "464231163370.89", "457174900993.44", "457174900993.44", "14.44"], "10-20_2": ["17450543.25", "0.00", "0.00", "11372923.70", "65.17", "756.04", "13193365756.24", "2.11", "271321011284.33", "135904798162.40", "135904798162.40", "72.26"], "95-99_2": ["6981161.16", "0.00", "0.00", "6049756.30", "86.66", "11304.96", "78921723673.34", "12.65", "197493740366.47", "274728660428.73", "274728660428.73", "6.47"], "60-70_2": ["17450563.88", "0.00", "0.00", "13802250.86", "79.09", "3890.41", "67889848499.92", "10.88", "404750908590.12", "331908654932.23", "331908654932.23", "25.18"]}, "diff_comb_xbin": {"$200-500K_2": ["12639435.82", "0.00", "0.00", "12233910.03", "96.79", "16812.17", "212496296121.99", "19.37", "354201755051.83", "464346426618.98", "464346426618.98", "7.37"], ">$1000K_2": ["359700.02", "131.20", "0.04", "359279.67", "99.88", "21033.11", "7565610656.04", "0.69", "9972237432.23", "6273810596.48", "6273810596.48", "0.80"], "<$0K_2": ["92422.73", "0.00", "0.00", "23239.73", "25.15", "431.52", "39881998.82", "0.00", "1908825015.32", "960435067.12", "960435067.12", "-7.09"], "$30-40K_2": ["17765113.30", "0.00", "0.00", "13775492.09", "77.54", "3268.86", "58071702794.75", "5.29", "316485326233.61", "198578890766.30", "198578890766.30", "46.07"], "$75-100K_2": ["19324858.68", "0.00", "0.00", "17584835.81", "91.00", "6826.15", "131914444722.44", "12.03", "452845645760.40", "377483307103.81", "377483307103.81", "24.45"], "ALL_2": ["174512955.65", "131.20", "0.00", "148096227.91", "84.86", "6285.52", "1096904768253.78", "100.00", "3649510616804.69", "2867728243386.20", "2867728243386.20", "22.11"], "$0-10K_2": ["11757002.39", "0.00", "0.00", "9416235.10", "80.09", "759.22", "8926194140.90", "0.81", "151211103825.26", "17383072354.22", "17383072354.22", "265.20"], "$100-200K_2": ["34954356.83", "0.00", "0.00", "33073735.43", "94.62", "11004.04", "384639150419.69", "35.07", "912229458962.30", "871458969122.21", "871458969122.21", "15.60"], "=$0K_2": ["1254276.88", "0.00", "0.00", "371307.41", "29.60", "366.26", "459387936.91", "0.04", "23522419914.22", "0.00", "0.00", "inf"], "$10-20K_2": ["13575622.95", "0.00", "0.00", "9948829.07", "73.28", "1567.79", "21283685353.72", "1.94", "204218122766.01", "78230811114.75", "78230811114.75", "89.31"], "$20-30K_2": ["18353718.48", "0.00", "0.00", "12976009.51", "70.70", "2431.37", "44624727536.55", "4.07", "300246032573.20", "172461715052.70", "172461715052.70", "58.86"], "$50-75K_2": ["28078607.82", "0.00", "0.00", "24625393.09", "87.70", "5193.46", "145825047220.55", "13.29", "597673979140.05", "433987435939.59", "433987435939.59", "31.55"], "$500-1000K_2": ["1052904.36", "0.00", "0.00", "1041604.60", "98.93", "19549.54", "20583798517.21", "1.88", "28963124507.24", "50595349406.10", "50595349406.10", "2.51"], "$40-50K_2": ["15304935.39", "0.00", "0.00", "12666356.37", "82.76", "3951.33", "60474840834.23", "5.51", "296032585623.02", "195968020243.93", "195968020243.93", "39.42"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"0-10n_2": ["92422.73", "-11420808174.26", "16653.10", "1946853490.25", "62.14", "8639687.40", "0.00", "807308845.84", "197747349.02", "-11428801040.19", "0.00", "0.00", "197747349.02", "1133746.78", "2237607.86", "249748.83", "198601461.27", "75480967.54", "274082428.81", "1908825015.32", "960435067.12", "960435067.12", "-23531623456.35", "-23805705885.16"], "0-10p_2": ["16104495.79", "285825173654.43", "15708181.26", "205393737843.76", "386121.52", "4507279558.95", "0.00", "92591777446.84", "9278195942.76", "281606937195.71", "4206566.04", "3974510698.82", "13252706641.59", "4533300377.14", "0.00", "6704093702.28", "2015312562.17", "14412605299.44", "16427917861.61", "214337422783.91", "33462679933.43", "33462679933.43", "322646230392.77", "306218312531.16"], "ALL_2": ["174512955.65", "15259085543671.62", "153706631.64", "3302207029949.05", "20663629.89", "630995955173.72", "0.00", "11390150462184.89", "1900346507777.38", "14802895865371.92", "7728925.22", "10781248069.65", "1911127755847.02", "145839439536.25", "9681330392.86", "28735066534.60", "1746234580169.04", "1924379583118.09", "3670614163287.13", "3649510616804.69", "2867728243386.20", "2867728243386.20", "19072750381882.00", "15402136218594.87"], "70-80_2": ["17451919.32", "1875706930701.58", "14689068.08", "381087491544.61", "2759234.79", "78073861660.24", "0.00", "1415817723347.88", "202975640812.34", "1820512078495.48", "53122.78", "185645521.18", "203161286333.52", "19992014807.47", "0.00", "424289642.18", "182744981883.87", "270833982480.16", "453578964364.03", "435224870015.13", "386745706262.46", "386745706262.46", "2378731540217.25", "1925152575853.22"], "40-50_2": ["17450596.18", "939407677669.45", "16583027.28", "352943591322.48", "858926.75", "19318805061.99", "0.00", "571638371728.41", "66611804042.09", "923980747815.06", "238264.96", "554527988.27", "67166332030.36", "15354108653.65", "0.00", "1927124761.28", "49885098615.43", "122601190016.54", "172486288631.98", "350626739029.14", "238339640021.26", "238339640021.26", "1241881908535.81", "1069395619903.83"], "20-30_2": ["17452009.50", "605243230111.63", "17030100.09", "319872782350.43", "413908.13", "9212034048.35", "0.00", "290685021379.16", "31440611882.31", "597257781243.15", "586254.87", "1008329673.69", "32448941555.99", "9936301563.05", "0.00", "5374857688.72", "17137782304.22", "66472666427.80", "83610448732.02", "297771676522.83", "171864055665.04", "171864055665.04", "812442427035.80", "728831978303.77"], "50-60_2": ["17453195.00", "1170967979064.74", "16247067.08", "368543005308.73", "1200217.67", "29629753520.25", "0.00", "776017247813.05", "98031079650.03", "1147975445801.65", "154933.15", "413501449.57", "98444581099.60", "17073004237.20", "0.00", "1234858544.46", "80136718317.94", "159381239850.06", "239517958168.00", "377671116733.48", "279661951738.77", "279661951738.77", "1526455436923.72", "1286937478755.72"], "Top 1%_2": ["1745160.35", "1522642160806.46", "572666.55", "16113604768.63", "1172361.66", "52062781963.75", "0.00", "1448803744375.43", "384229833003.23", "1482845324452.96", "94262.78", "984584558.63", "385214417561.86", "172840961.54", "7926110416.66", "23253656.07", "392944433360.91", "84159576196.42", "477104009557.33", "48285995483.00", "76807387566.04", "76807387566.04", "1658562168652.50", "1181458159095.17"], "90-95_2": ["8725281.60", "1699760753348.37", "5491332.02", "156329742795.41", "3230669.13", "107851720837.22", "0.00", "1430863230698.19", "250234822123.46", "1624895736341.06", "51933.33", "103593594.42", "250338415717.88", "10999831293.93", "97432558.28", "80994731.25", "239355022250.98", "248523640607.18", "487878662858.16", "241188981476.71", "268847824134.84", "268847824134.84", "2097464580127.41", "1609585917269.25"], "90-100_2": ["17451603.11", "5195325915486.16", "9632582.47", "274309590533.64", "7814962.86", "281088474457.85", "0.00", "4621866066358.38", "973287247854.87", "4994590691277.82", "228817.91", "1336208614.86", "974623456469.73", "19925089380.69", "9678814928.53", "187369153.47", "964189812864.10", "581859565803.50", "1546049378667.59", "486968717326.18", "620383872129.61", "620383872129.61", "6146383064495.89", "4600333685828.29"], "30-40_2": ["17450159.56", "745676353954.34", "16877877.50", "335898263187.53", "562783.89", "12193968973.27", "0.00", "406165302920.70", "44977322742.10", "735510564448.92", "348471.79", "699936217.03", "45677258959.12", "12267254258.59", "0.00", "3006588435.19", "30403416265.35", "90661933462.97", "121065349728.32", "321175746219.14", "211321548480.45", "211321548480.45", "1006782627620.21", "885717277891.90"], "0-10z_2": ["1254276.88", "23495771699.14", "1242600.84", "25608660398.53", "11348.40", "16731357.94", "0.00", "2293818411.81", "236366148.30", "23481167670.78", "319000.41", "445147308.26", "681513456.56", "222125519.66", "0.00", "0.00", "459387936.91", "0.00", "459387936.91", "23522419914.22", "0.00", "0.00", "23522419914.22", "23063031977.31"], "80-90_2": ["17451170.45", "2503731623005.73", "12892958.70", "352652064138.69", "4553543.67", "144984805684.71", "0.00", "1999317722969.82", "317082228067.03", "2403589125390.78", "88749.74", "193923233.38", "317276151300.41", "21475692481.30", "277856.47", "261842895.03", "295538893780.55", "373039887456.42", "668578781236.97", "464231163370.89", "457174900993.44", "457174900993.44", "3135172820452.12", "2466594039215.15"], "10-20_2": ["17450543.25", "457583227262.32", "17121497.24", "302522511630.42", "322685.28", "5454698133.94", "0.00", "172141083863.13", "17936560134.91", "452716791455.85", "1420190.09", "1682249450.95", "19618809585.85", "6414457321.73", "0.00", "8863146165.21", "4341206098.92", "39874907252.00", "44216113350.91", "271321011284.33", "135904798162.40", "135904798162.40", "611271423294.83", "567055309943.92"], "95-99_2": ["6981161.16", "1972923001331.33", "3568583.90", "101866242969.60", "3411932.07", "121173971656.88", "0.00", "1742199091284.76", "338822592728.18", "1886849630483.80", "82621.80", "248030461.81", "339070623189.99", "8752417125.22", "1655271953.59", "83120766.15", "331890357252.20", "249176348999.90", "581066706252.10", "197493740366.47", "274728660428.73", "274728660428.73", "2390356315715.98", "1809289609463.88"], "60-70_2": ["17450563.88", "1467542469236.36", "15665018.00", "381428478199.97", "1779834.79", "46506903028.83", "0.00", "1040809017099.87", "138291703151.63", "1433103335616.91", "84553.48", "287267913.64", "138578971065.27", "18644957189.00", "0.00", "750645797.96", "119183368078.31", "205166124101.66", "324349492179.97", "404750908590.12", "331908654932.23", "331908654932.23", "1890992106455.73", "1566642614275.76"]}, "aggr_d": {"combined_tax_2": "1096904768253.78", "payroll_tax_2": "624127129571.45", "ind_tax_2": "472777638682.33"}, "dropq_version": "0.17.0", "dist1_xdec": {"0-10n_2": ["92422.73", "-13327087838.52", "5585.79", "1628866185.81", "62.14", "8639687.40", "0.00", "734441302.31", "181437621.22", "-13335080704.45", "0.00", "0.00", "181437621.22", "674945.00", "2237607.86", "179128.96", "182821155.12", "51379274.87", "234200429.99", "0.00", "1023548674.68", "1023548674.68", "-25386840359.39", "-25621040789.38"], "0-10p_2": ["16104495.79", "71502604871.32", "13596689.89", "172347260296.39", "26127.41", "236566056.69", "0.00", "2392979327.97", "146438866.86", "71272438122.23", "8359.35", "2823447.94", "149262314.80", "65062391.68", "0.00", "8259759054.56", "-8175559131.44", "9632191803.86", "1456632672.42", "0.00", "34379811450.91", "34379811450.91", "106850586379.35", "105393953706.93"], "ALL_2": ["174512955.65", "11622133848037.86", "125054984.24", "2541016150993.46", "30842988.06", "869646465792.58", "0.00", "8775488849719.39", "1462456597658.97", "11010469540723.54", "457515.51", "1875060958.18", "1464331658617.15", "102819982412.28", "9161839274.75", "97216573992.91", "1273456941486.71", "1300252453546.64", "2573709395033.35", "0.00", "2931098916725.88", "2931098916725.88", "15186852430354.71", "12613143035321.36"], "70-80_2": ["17451919.32", "1441601908443.17", "11743053.28", "276655179902.44", "4994169.17", "129502974538.97", "0.00", "1060274857705.35", "137874940556.56", "1352115174614.83", "19472.55", "87009569.99", "137961950126.55", "17935351629.22", "0.00", "2929291795.07", "117097306702.25", "181156258072.03", "298253564774.28", "0.00", "393618310675.36", "393618310675.36", "1906629880037.62", "1608376315263.33"], "40-50_2": ["17451453.28", "589902936890.18", "14573645.90", "286261654710.87", "1299133.94", "26066148457.97", "0.00", "332146848157.15", "35805642910.92", "569643227621.47", "31980.51", "104725060.71", "35910367971.62", "8429381500.05", "0.00", "13726839656.19", "13754146815.38", "82116028746.21", "95870175561.59", "0.00", "246372580930.21", "246372580930.21", "880129928589.23", "784259753027.65"], "20-30_2": ["17452009.50", "308323993773.44", "13894424.43", "259274339045.03", "597444.33", "11897678668.17", "0.00", "118210406958.23", "12035905124.75", "298236033314.17", "33480.44", "47941683.20", "12083846807.96", "3161514109.32", "0.00", "20450600209.25", "-11528267510.62", "44573054370.15", "33044786859.53", "0.00", "178201147297.36", "178201147297.36", "510910317796.80", "477865530937.27"], "50-60_2": ["17452337.90", "794271396759.89", "14013637.09", "292823833077.53", "2186506.27", "45999105206.74", "0.00", "501238201990.45", "58431448434.19", "760129336442.74", "34240.50", "116147958.27", "58547596392.46", "11653307015.15", "0.00", "8599547177.55", "38294742199.77", "106663643806.07", "144958386005.84", "0.00", "287703448345.14", "287703448345.14", "1131396824809.55", "986438438803.72"], "Top 1%_2": ["1745160.35", "1475848942734.84", "448843.01", "11219636571.55", "1277257.20", "54890489426.09", "0.00", "1404419939325.67", "369594828896.92", "1434271291247.19", "94495.56", "918966172.77", "370513795069.68", "165799279.94", "7853487890.13", "129799213.52", "378071684466.36", "64246716600.50", "442318401066.87", "0.00", "77135278820.12", "77135278820.12", "1602095011104.90", "1159776610038.04"], "90-95_2": ["8725281.60", "1459717827902.80", "4027215.11", "102599561907.39", "4507227.46", "142428535171.26", "0.00", "1216549476447.84", "201860735642.55", "1362823319138.13", "31265.71", "62854530.30", "201923590172.85", "10793298690.04", "30505657.14", "447214053.42", "190713583086.54", "167125891737.49", "357839474824.03", "0.00", "271237074561.12", "271237074561.12", "1819102828823.43", "1461263353999.40"], "90-100_2": ["17451603.11", "4712536521816.33", "7095701.64", "181306117862.40", "9996308.99", "340315884941.46", "0.00", "4183928167290.30", "866482895341.22", "4474309232228.48", "187744.76", "1206553118.86", "867689448460.08", "19890737773.96", "9159601666.89", "1051214205.84", "855907098147.16", "401627233664.55", "1257534331811.72", "0.00", "624961757289.29", "624961757289.29", "5577989745187.23", "4320455413375.51"], "30-40_2": ["17450159.56", "425649925876.52", "14446260.44", "273722977098.30", "753703.11", "15047098041.15", "0.00", "206666995166.53", "21890428861.62", "413333529445.63", "28036.47", "62783062.74", "21953211924.36", "5385578021.95", "0.00", "17323688523.87", "-756054621.45", "60788737834.75", "60032683213.30", "0.00", "219485106546.67", "219485106546.67", "679973214937.36", "619940531724.07"], "0-10z_2": ["1254276.88", "-26648215.07", "0.00", "21466405124.21", "0.00", "0.00", "0.00", "0.00", "0.00", "-26648215.07", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "80-90_2": ["17451170.45", "2041327179726.63", "9588072.15", "238118146487.13", "7304657.49", "214116479953.17", "0.00", "1600900334551.76", "233644409751.08", "1897687358230.51", "37483.51", "94626853.25", "233739036604.34", "20366111546.32", "0.00", "1538448955.31", "211834476102.70", "249686108876.65", "461520584979.35", "0.00", "462992091759.38", "462992091759.38", "2616889727443.82", "2155369142464.47"], "10-20_2": ["17450543.25", "186474924375.25", "12995610.57", "246945435379.83", "296619.83", "5836800715.18", "0.00", "40283389224.98", "3839793042.51", "181284967200.25", "43573.25", "33327003.78", "3873120046.29", "990701384.09", "0.00", "17985844182.08", "-15103425519.89", "26681541495.76", "11578115975.87", "0.00", "143100234228.27", "143100234228.27", "340761873595.51", "329183757619.64"], "95-99_2": ["6981161.16", "1776969751178.69", "2619643.52", "67486919383.47", "4211824.33", "142996860344.11", "0.00", "1562958751516.79", "295027330801.76", "1677214621843.15", "61983.49", "224732415.79", "295252063217.55", "8931639803.99", "1275608119.61", "474200938.91", "287121830594.26", "170254625326.56", "457376455920.82", "0.00", "276589403908.05", "276589403908.05", "2156791905258.89", "1699415449338.07"], "60-70_2": ["17450563.88", "1063896191558.73", "13102303.06", "290465935823.52", "3388255.38", "80619089525.69", "0.00", "728712228044.37", "92123257148.05", "1005819972422.76", "33144.17", "119123199.43", "92242380347.48", "14941562095.53", "0.00", "5351161104.23", "71949657147.72", "137276275601.74", "209225932749.47", "0.00", "339260879528.62", "339260879528.62", "1460707171937.62", "1251481239188.16"]}, "diff_comb_xdec": {"0-10n_2": ["92422.73", "0.00", "0.00", "23239.73", "25.15", "431.52", "39881998.82", "0.00", "1908825015.32", "960435067.12", "960435067.12", "-7.09"], "0-10p_2": ["16104495.79", "0.00", "0.00", "12971502.84", "80.55", "929.63", "14971285189.19", "1.36", "214337422783.91", "33462679933.43", "33462679933.43", "190.55"], "ALL_2": ["174512955.65", "131.20", "0.00", "148096227.91", "84.86", "6285.52", "1096904768253.78", "100.00", "3649510616804.69", "2867728243386.20", "2867728243386.20", "22.11"], "70-80_2": ["17451919.32", "0.00", "0.00", "16256728.67", "93.15", "8900.19", "155325399589.75", "14.16", "435224870015.13", "386745706262.46", "386745706262.46", "19.70"], "40-50_2": ["17450596.18", "0.00", "0.00", "14855665.96", "85.13", "4390.71", "76620519318.60", "6.99", "350626739029.14", "238339640021.26", "238339640021.26", "36.37"], "20-30_2": ["17452009.50", "0.00", "0.00", "13061270.34", "74.84", "2897.41", "50565661872.49", "4.61", "297771676522.83", "171864055665.04", "171864055665.04", "52.52"], "50-60_2": ["17453195.00", "0.00", "0.00", "15406400.90", "88.27", "5417.64", "94555165913.95", "8.62", "377671116733.48", "279661951738.77", "279661951738.77", "30.46"], "Top 1%_2": ["1745160.35", "131.20", "0.01", "1725771.16", "98.89", "19932.61", "34785608490.47", "3.17", "48285995483.00", "76807387566.04", "76807387566.04", "1.87"], "90-95_2": ["8725281.60", "0.00", "0.00", "8432348.63", "96.64", "14903.72", "130039188034.13", "11.86", "241188981476.71", "268847824134.84", "268847824134.84", "10.15"], "90-100_2": ["17451603.11", "131.20", "0.00", "16922770.80", "96.97", "16532.29", "288515046855.88", "26.30", "486968717326.18", "620383872129.61", "620383872129.61", "6.48"], "30-40_2": ["17450159.56", "0.00", "0.00", "13813731.89", "79.16", "3497.54", "61032666515.02", "5.56", "321175746219.14", "211321548480.45", "211321548480.45", "42.87"], "0-10z_2": ["1254276.88", "0.00", "0.00", "371307.41", "29.60", "366.26", "459387936.91", "0.04", "23522419914.22", "0.00", "0.00", "inf"], "80-90_2": ["17451170.45", "0.00", "0.00", "16600857.48", "95.13", "11865.00", "207058196257.62", "18.88", "464231163370.89", "457174900993.44", "457174900993.44", "14.44"], "10-20_2": ["17450543.25", "0.00", "0.00", "11984371.23", "68.68", "1870.31", "32637997375.05", "2.98", "271321011284.33", "135904798162.40", "135904798162.40", "72.26"], "95-99_2": ["6981161.16", "0.00", "0.00", "6764651.01", "96.90", "17717.72", "123690250331.28", "11.28", "197493740366.47", "274728660428.73", "274728660428.73", "6.47"], "60-70_2": ["17450563.88", "0.00", "0.00", "15828380.66", "90.70", "6597.13", "115123559430.51", "10.50", "404750908590.12", "331908654932.23", "331908654932.23", "25.18"]}, "diff_ptax_xbin": {"$200-500K_2": ["12639435.82", "0.00", "0.00", "10891679.85", "86.17", "10657.99", "134710976538.02", "21.58", "354201755051.83", "464346426618.98", "464346426618.98", "7.37"], ">$1000K_2": ["359700.02", "951.15", "0.26", "328013.89", "91.19", "11583.62", "4166629598.52", "0.67", "9972237432.23", "6273810596.48", "6273810596.48", "0.80"], "<$0K_2": ["92422.73", "0.00", "0.00", "20095.25", "21.74", "260.78", "24101692.67", "0.00", "1908825015.32", "960435067.12", "960435067.12", "-7.09"], "$30-40K_2": ["17765113.30", "0.00", "0.00", "12800599.46", "72.05", "1517.25", "26954187653.70", "4.32", "316485326233.61", "198578890766.30", "198578890766.30", "46.07"], "$75-100K_2": ["19324858.68", "0.00", "0.00", "15304169.68", "79.19", "4033.02", "77937472011.28", "12.49", "452845645760.40", "377483307103.81", "377483307103.81", "24.45"], "ALL_2": ["174512955.65", "951.15", "0.00", "132538743.87", "75.95", "3576.39", "624127129571.45", "100.00", "3649510616804.69", "2867728243386.20", "2867728243386.20", "22.11"], "$0-10K_2": ["11757002.39", "0.00", "0.00", "8494984.37", "72.25", "207.45", "2438940713.48", "0.39", "151211103825.26", "17383072354.22", "17383072354.22", "265.20"], "$100-200K_2": ["34954356.83", "0.00", "0.00", "28620959.68", "81.88", "6509.59", "227538592644.87", "36.46", "912229458962.30", "871458969122.21", "871458969122.21", "15.60"], "=$0K_2": ["1254276.88", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "23522419914.22", "0.00", "0.00", "inf"], "$10-20K_2": ["13575622.95", "0.00", "0.00", "9422658.83", "69.41", "618.69", "8399055411.43", "1.35", "204218122766.01", "78230811114.75", "78230811114.75", "89.31"], "$20-30K_2": ["18353718.48", "0.00", "0.00", "12254264.37", "66.77", "1015.18", "18632415214.68", "2.99", "300246032573.20", "172461715052.70", "172461715052.70", "58.86"], "$50-75K_2": ["28078607.82", "0.00", "0.00", "21914558.79", "78.05", "2866.70", "80492973401.25", "12.90", "597673979140.05", "433987435939.59", "433987435939.59", "31.55"], "$500-1000K_2": ["1052904.36", "0.00", "0.00", "921123.99", "87.48", "11148.21", "11738002717.07", "1.88", "28963124507.24", "50595349406.10", "50595349406.10", "2.51"], "$40-50K_2": ["15304935.39", "0.00", "0.00", "11565635.71", "75.57", "2031.62", "31093781974.48", "4.98", "296032585623.02", "195968020243.93", "195968020243.93", "39.42"]}, "dist2_xbin": {"$200-500K_2": ["12639435.82", "3202714550348.49", "6970123.05", "199126106087.56", "5665775.00", "198264588891.24", "0.00", "2794107941544.66", "531329965015.45", "3062747161861.64", "117378.40", "331586612.32", "531661551627.77", "15414542508.31", "2000745155.68", "141680311.19", "518106073963.94", "421229061966.39", "939335135930.33", "354201755051.83", "464346426618.98", "464346426618.98", "3902249854958.80", "2962914719028.47"], ">$1000K_2": ["359700.02", "728014530780.36", "56664.77", "1560829341.68", "302955.48", "16336449621.86", "0.00", "708005393627.11", "204768368897.78", "714833599461.08", "60445.67", "820825184.63", "205589194082.41", "6842604.64", "6148576855.29", "12231.07", "211730916101.99", "25867051642.52", "237597967744.51", "9972237432.23", "6273810596.48", "6273810596.48", "754001471482.32", "516403503737.81"], "<$0K_2": ["92422.73", "-11420808174.26", "16653.10", "1946853490.25", "62.14", "8639687.40", "0.00", "807308845.84", "197747349.02", "-11428801040.19", "0.00", "0.00", "197747349.02", "1133746.78", "2237607.86", "249748.83", "198601461.27", "75480967.54", "274082428.81", "1908825015.32", "960435067.12", "960435067.12", "-23531623456.35", "-23805705885.16"], "$30-40K_2": ["17765113.30", "697874727771.19", "17241331.95", "335026559916.86", "515681.98", "11401894823.96", "0.00", "362152722449.61", "39708571974.23", "688181885998.41", "419268.94", "835332161.95", "40543904136.18", "11520077012.73", "0.00", "3914154256.27", "25109672867.18", "81854160038.65", "106963832905.83", "316485326233.61", "198578890766.30", "198578890766.30", "941451795357.44", "834487962451.61"], "$75-100K_2": ["19324858.68", "1678597497014.90", "17202425.66", "423428613464.93", "2115463.15", "55738517811.44", "0.00", "1200655033068.73", "160671575500.16", "1637644111405.41", "82704.12", "292954876.51", "160964530376.68", "20740965303.36", "0.00", "781184309.65", "139442380763.66", "235501400157.21", "374943780920.87", "452845645760.40", "377483307103.81", "377483307103.81", "2160173282015.48", "1785229501094.61"], "ALL_2": ["174512955.65", "15259085543671.62", "153706631.64", "3302207029949.05", "20663629.89", "630995955173.72", "0.00", "11390150462184.89", "1900346507777.38", "14802895865371.92", "7728925.22", "10781248069.65", "1911127755847.02", "145839439536.25", "9681330392.86", "28735066534.60", "1746234580169.04", "1924379583118.09", "3670614163287.13", "3649510616804.69", "2867728243386.20", "2867728243386.20", "19072750381882.00", "15402136218594.87"], "$0-10K_2": ["11757002.39", "188482971310.13", "11471760.83", "135696255497.70", "278350.54", "3072226353.63", "0.00", "62791821742.02", "6302161602.73", "185585753331.54", "2980251.64", "2992699877.72", "9294861480.45", "3214462567.04", "0.00", "3424264414.06", "2656134499.35", "7352466197.04", "10008600696.39", "151211103825.26", "17383072354.22", "17383072354.22", "207258614205.66", "197250013509.28"], "$100-200K_2": ["34954356.83", "4667528040170.57", "26921826.69", "723440324575.36", "8025132.36", "249126274217.42", "0.00", "3685237152332.43", "573470330563.42", "4494462054267.61", "156488.65", "384729581.49", "573855060144.91", "42270561675.90", "1816549.19", "611773085.87", "530974541932.33", "688298615910.99", "1219273157843.32", "912229458962.30", "871458969122.21", "871458969122.21", "5855142308984.20", "4635869151140.87"], "=$0K_2": ["1254276.88", "23495771699.14", "1242600.84", "25608660398.53", "11348.40", "16731357.94", "0.00", "2293818411.81", "236366148.30", "23481167670.78", "319000.41", "445147308.26", "681513456.56", "222125519.66", "0.00", "0.00", "459387936.91", "0.00", "459387936.91", "23522419914.22", "0.00", "0.00", "23522419914.22", "23063031977.31"], "$10-20K_2": ["13575622.95", "324791176769.53", "13270223.92", "226597957548.48", "297526.56", "4582235715.43", "0.00", "109044561654.78", "11068290082.44", "320608030857.79", "2227355.77", "2020195639.80", "13088485722.25", "4394332373.55", "0.00", "8423249316.70", "270904031.99", "25354100140.89", "25625004172.88", "204218122766.01", "78230811114.75", "78230811114.75", "412482958228.29", "386857954055.41"], "$20-30K_2": ["18353718.48", "561397703162.86", "17998447.14", "329586474514.79", "347712.05", "6756732087.26", "0.00", "245386142262.64", "26208327349.61", "555547740153.24", "802744.63", "1255544729.29", "27463872078.91", "8698264749.90", "0.00", "7183614337.35", "11581992991.67", "56470906460.81", "68052899452.47", "300246032573.20", "172461715052.70", "172461715052.70", "762443694993.99", "694390795541.51"], "$50-75K_2": ["28078607.82", "1801500783165.22", "26263907.91", "587775898802.38", "1802257.99", "43485876876.53", "0.00", "1175815644906.02", "146454899960.97", "1767623157212.19", "266883.48", "724171092.42", "147179071053.39", "26788117732.62", "0.00", "2209772709.41", "118181180611.37", "243423001333.79", "361604181945.16", "597673979140.05", "433987435939.59", "433987435939.59", "2353570586612.98", "1991966404667.83"], "$500-1000K_2": ["1052904.36", "654279627640.53", "369585.81", "10331554872.08", "683266.18", "28367890802.02", "0.00", "612770972265.23", "151320353676.04", "633068707760.30", "26394.75", "136233276.15", "151456586952.19", "109350813.77", "1527954224.84", "20283560.66", "152854906802.60", "44709863954.32", "197564770756.92", "28963124507.24", "50595349406.10", "50595349406.10", "735579339335.42", "538014568578.50"], "$40-50K_2": ["15304935.39", "741828972012.96", "14681079.97", "302080941438.45", "618098.06", "13837896927.59", "0.00", "431081949074.00", "48609549657.24", "730541296432.13", "270008.76", "541827729.08", "49151377386.31", "12458662928.00", "0.00", "2024828253.54", "34667886204.77", "94243474347.95", "128911360552.72", "296032585623.02", "195968020243.93", "195968020243.93", "988405679249.54", "859494318696.82"]}, "diff_itax_xdec": {"0-10n_2": ["92422.73", "822.00", "0.89", "5020.37", "5.43", "170.74", "15780306.15", "0.00", "1908825015.32", "960435067.12", "960435067.12", "-7.09"], "0-10p_2": ["16104495.79", "340304.79", "2.11", "9042149.07", "56.15", "632.80", "10190871693.61", "2.16", "214337422783.91", "33462679933.43", "33462679933.43", "190.55"], "ALL_2": ["174512955.65", "411663.90", "0.24", "142433295.27", "81.62", "2709.13", "472777638682.33", "100.00", "3649510616804.69", "2867728243386.20", "2867728243386.20", "22.11"], "70-80_2": ["17451919.32", "2050.71", "0.01", "16186041.95", "92.75", "3761.63", "65647675181.62", "13.89", "435224870015.13", "386745706262.46", "386745706262.46", "19.70"], "40-50_2": ["17450596.18", "3662.48", "0.02", "14707077.42", "84.28", "2070.33", "36128408273.72", "7.64", "350626739029.14", "238339640021.26", "238339640021.26", "36.37"], "20-30_2": ["17452009.50", "9853.95", "0.06", "12724586.49", "72.91", "1642.56", "28666049814.84", "6.06", "297771676522.83", "171864055665.04", "171864055665.04", "52.52"], "50-60_2": ["17453195.00", "354.16", "0.00", "15301835.91", "87.67", "2397.53", "41844519644.51", "8.85", "377671116733.48", "279661951738.77", "279661951738.77", "30.46"], "Top 1%_2": ["1745160.35", "12.92", "0.00", "1724634.59", "98.82", "8522.28", "14872748894.55", "3.15", "48285995483.00", "76807387566.04", "76807387566.04", "1.87"], "90-95_2": ["8725281.60", "84.82", "0.00", "8410575.15", "96.39", "5574.77", "48641439164.44", "10.29", "241188981476.71", "268847824134.84", "268847824134.84", "10.15"], "90-100_2": ["17451603.11", "183.58", "0.00", "16889969.99", "96.78", "6204.74", "108282714716.93", "22.90", "486968717326.18", "620383872129.61", "620383872129.61", "6.48"], "30-40_2": ["17450159.56", "8719.86", "0.05", "13560034.45", "77.71", "1785.63", "31159470886.80", "6.59", "321175746219.14", "211321548480.45", "211321548480.45", "42.87"], "0-10z_2": ["1254276.88", "0.00", "0.00", "371307.41", "29.60", "366.26", "459387936.91", "0.10", "23522419914.22", "0.00", "0.00", "inf"], "80-90_2": ["17451170.45", "1771.23", "0.01", "16552518.20", "94.85", "4796.49", "83704417677.85", "17.70", "464231163370.89", "457174900993.44", "457174900993.44", "14.44"], "10-20_2": ["17450543.25", "34789.21", "0.20", "11383508.40", "65.23", "1114.27", "19444631618.80", "4.11", "271321011284.33", "135904798162.40", "135904798162.40", "72.26"], "95-99_2": ["6981161.16", "85.84", "0.00", "6754760.25", "96.76", "6412.76", "44768526657.94", "9.47", "197493740366.47", "274728660428.73", "274728660428.73", "6.47"], "60-70_2": ["17450563.88", "9151.93", "0.05", "15709245.61", "90.02", "2706.72", "47233710930.59", "9.99", "404750908590.12", "331908654932.23", "331908654932.23", "25.18"]}, "diff_itax_xbin": {"$200-500K_2": ["12639435.82", "170.66", "0.00", "12207657.58", "96.58", "6154.18", "77785319583.97", "16.45", "354201755051.83", "464346426618.98", "464346426618.98", "7.37"], ">$1000K_2": ["359700.02", "0.00", "0.00", "359330.17", "99.90", "9449.49", "3398981057.52", "0.72", "9972237432.23", "6273810596.48", "6273810596.48", "0.80"], "<$0K_2": ["92422.73", "822.00", "0.89", "5020.37", "5.43", "170.74", "15780306.15", "0.00", "1908825015.32", "960435067.12", "960435067.12", "-7.09"], "$30-40K_2": ["17765113.30", "9731.70", "0.05", "13492076.87", "75.95", "1751.61", "31117515141.05", "6.58", "316485326233.61", "198578890766.30", "198578890766.30", "46.07"], "$75-100K_2": ["19324858.68", "8726.47", "0.05", "17456614.85", "90.33", "2793.14", "53976972711.16", "11.42", "452845645760.40", "377483307103.81", "377483307103.81", "24.45"], "ALL_2": ["174512955.65", "411663.90", "0.24", "142433295.27", "81.62", "2709.13", "472777638682.33", "100.00", "3649510616804.69", "2867728243386.20", "2867728243386.20", "22.11"], "$0-10K_2": ["11757002.39", "315109.06", "2.68", "6002089.81", "51.05", "551.78", "6487253427.41", "1.37", "151211103825.26", "17383072354.22", "17383072354.22", "265.20"], "$100-200K_2": ["34954356.83", "3689.67", "0.01", "32965258.36", "94.31", "4494.45", "157100557774.82", "33.23", "912229458962.30", "871458969122.21", "871458969122.21", "15.60"], "=$0K_2": ["1254276.88", "0.00", "0.00", "371307.41", "29.60", "366.26", "459387936.91", "0.10", "23522419914.22", "0.00", "0.00", "inf"], "$10-20K_2": ["13575622.95", "50852.21", "0.37", "9045365.66", "66.63", "949.10", "12884629942.29", "2.73", "204218122766.01", "78230811114.75", "78230811114.75", "89.31"], "$20-30K_2": ["18353718.48", "15087.26", "0.08", "12545126.58", "68.35", "1416.19", "25992312321.87", "5.50", "300246032573.20", "172461715052.70", "172461715052.70", "58.86"], "$50-75K_2": ["28078607.82", "1279.16", "0.00", "24443333.51", "87.05", "2326.76", "65332073819.29", "13.82", "597673979140.05", "433987435939.59", "433987435939.59", "31.55"], "$500-1000K_2": ["1052904.36", "12.92", "0.00", "1041240.44", "98.89", "8401.33", "8845795800.14", "1.87", "28963124507.24", "50595349406.10", "50595349406.10", "2.51"], "$40-50K_2": ["15304935.39", "6182.79", "0.04", "12498873.66", "81.67", "1919.71", "29381058859.75", "6.21", "296032585623.02", "195968020243.93", "195968020243.93", "39.42"]}, "dist1_xbin": {"$200-500K_2": ["12639435.82", "2850960831523.22", "5117219.37", "131456722994.12", "7254457.56", "241451027103.79", "0.00", "2475112222307.35", "454794750539.12", "2683701933949.18", "89938.17", "299697632.65", "455094448171.77", "15497574402.51", "1541556000.38", "817675389.67", "440320754379.98", "286518085428.37", "726838839808.35", "0.00", "467553533202.15", "467553533202.15", "3486328805240.47", "2759489965432.12"], ">$1000K_2": ["359700.02", "718443005570.38", "46009.25", "1107279591.92", "312760.05", "16578927321.69", "0.00", "698658899277.26", "201461855432.06", "705113662343.01", "56811.36", "746560609.52", "202208416041.58", "6831858.33", "6130377819.82", "26958.60", "208331935044.47", "21700422044.01", "230032357088.48", "0.00", "6313413695.19", "6313413695.19", "742360095635.27", "512327738546.80"], "<$0K_2": ["92422.73", "-13327087838.52", "5585.79", "1628866185.81", "62.14", "8639687.40", "0.00", "734441302.31", "181437621.22", "-13335080704.45", "0.00", "0.00", "181437621.22", "674945.00", "2237607.86", "179128.96", "182821155.12", "51379274.87", "234200429.99", "0.00", "1023548674.68", "1023548674.68", "-25386840359.39", "-25621040789.38"], "$30-40K_2": ["17765113.30", "382510885272.01", "14508214.66", "272372312911.42", "715908.19", "14267602894.79", "0.00", "170428905108.97", "17847096147.91", "370623835278.97", "38767.34", "74581004.55", "17921677152.46", "4538670410.11", "0.00", "19390849016.22", "-6007842273.87", "54899972384.95", "48892130111.08", "0.00", "206142541847.12", "206142541847.12", "620170742418.11", "571278612307.03"], "$75-100K_2": ["19324858.68", "1226965407484.42", "14335790.99", "321100062757.74", "3949403.22", "95703524829.21", "0.00", "848635965722.53", "107755639030.94", "1158279597977.98", "31431.48", "126092148.09", "107881731179.03", "16934223136.19", "0.00", "5482099990.34", "85465408052.50", "157563928145.93", "243029336198.43", "0.00", "385541011076.69", "385541011076.69", "1677580918660.90", "1434551582462.47"], "ALL_2": ["174512955.65", "11622133848037.86", "125054984.24", "2541016150993.46", "30842988.06", "869646465792.58", "0.00", "8775488849719.39", "1462456597658.97", "11010469540723.54", "457515.51", "1875060958.18", "1464331658617.15", "102819982412.28", "9161839274.75", "97216573992.91", "1273456941486.71", "1300252453546.64", "2573709395033.35", "0.00", "2931098916725.88", "2931098916725.88", "15186852430354.71", "12613143035321.36"], "$0-10K_2": ["11757002.39", "37278101926.69", "9910030.23", "114266691319.17", "21887.60", "176513619.53", "0.00", "1849652958.43", "116898279.50", "37106343100.13", "2818.81", "498028.47", "117396307.97", "50755790.14", "0.00", "3897759445.89", "-3831118928.06", "4913525483.55", "1082406555.49", "0.00", "17642173566.73", "17642173566.73", "55093375678.00", "54010969122.50"], "$100-200K_2": ["34954356.83", "3758501151976.82", "20580285.52", "501084309244.84", "13188242.97", "375780601474.86", "0.00", "2912970382190.76", "417123457174.22", "3504217090178.97", "67168.95", "184047099.62", "417307504273.83", "39524890506.91", "0.00", "3908629609.42", "373873984157.51", "460760023266.12", "834634007423.63", "0.00", "883952998088.28", "883952998088.28", "4844793479870.06", "4010159472446.43"], "=$0K_2": ["1254276.88", "-26648215.07", "0.00", "21466405124.21", "0.00", "0.00", "0.00", "0.00", "0.00", "-26648215.07", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$10-20K_2": ["13575622.95", "120654513274.72", "10503650.37", "186435542265.22", "149572.40", "3070902681.17", "0.00", "12802120803.38", "1158331610.41", "117848386829.41", "27857.27", "15003795.97", "1173335406.38", "315196601.33", "0.00", "13471864715.35", "-12613725910.29", "16955044729.46", "4341318819.16", "0.00", "82772958731.73", "82772958731.73", "208688914644.74", "204347595825.58"], "$20-30K_2": ["18353718.48", "261728127984.71", "14118233.15", "267655579389.43", "462889.87", "8814803360.65", "0.00", "85335352502.74", "8420662318.49", "254205648964.95", "36242.76", "40835432.28", "8461497750.77", "2197570406.04", "0.00", "20674246674.94", "-14410319330.21", "37838491246.13", "23428171915.93", "0.00", "179527761014.63", "179527761014.63", "460523958170.42", "437095786254.50"], "$50-75K_2": ["28078607.82", "1205450690093.95", "22772504.60", "468935176739.20", "3202253.41", "66546733133.80", "0.00", "746560350425.18", "85751647383.77", "1155751149354.74", "55956.59", "189399048.35", "85941046432.13", "17442830041.60", "0.00", "15649109598.45", "52849106792.07", "162930027932.54", "215779134724.61", "0.00", "446752793390.79", "446752793390.79", "1729968438486.00", "1514189303761.39"], "$500-1000K_2": ["1052904.36", "626206834201.56", "296047.36", "7253957931.19", "747848.51", "30112625476.74", "0.00", "586256723004.59", "142551285628.90", "603890288674.16", "26663.39", "135077508.56", "142686363137.46", "68661846.23", "1487667846.69", "96258135.45", "144009111002.46", "32971861237.25", "176980972239.71", "0.00", "50798219770.10", "50798219770.10", "701823975022.30", "524843002782.59"], "$40-50K_2": ["15304935.39", "446788034782.97", "12861412.95", "246253244539.19", "837702.14", "17134564208.95", "0.00", "236143834115.89", "25293536492.44", "433093332991.55", "23859.39", "63268650.11", "25356805142.55", "6242102467.89", "0.00", "13827875329.63", "5286827345.02", "63149692373.47", "68436519718.49", "0.00", "203077963667.78", "203077963667.78", "684906566887.82", "616470047169.33"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_2\nind_tax,732554373.2424245\npayroll_tax,-190083753247.00525\ncombined_tax,-189351198873.76282\n", "aggr_1": ",0_2\nind_tax,1214191515284.9492\npayroll_tax,1250432845259.8076\ncombined_tax,2464624360544.757\n", "aggr_2": ",0_2\nind_tax,1214924069658.192\npayroll_tax,1060349092012.8025\ncombined_tax,2275273161670.994\n", "dist1_xbin": ",s006_2,c00100_2,num_returns_StandardDed_2,standard_2,num_returns_ItemDed_2,c04470_2,c04600_2,c04800_2,taxbc_2,c62100_2,num_returns_AMT_2,c09600_2,c05800_2,c07100_2,othertaxes_2,refund_2,iitax_2,payrolltax_2,combined_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,expanded_income_2,aftertax_income_2\n<$0K,60367.67738945552,-7232847000.8937,60367.67738945552,1320167938.937977,0.0,0.0,0.0,0.0,0.0,-7232847000.8937,0.0,0.0,0.0,0.0,0.0,1206102.9801829301,-1206102.9801829301,17932983.541296378,16726880.561113447,0.0,760228445.4541277,760228445.4541277,-6391691254.513531,-6408418135.074644\n=$0K,1078448.479659136,0.0,1078448.479659136,16985100147.256935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11480730.702058535,35573322458.65074,11445127.571651362,105996654593.93356,35603.13040717194,134980387.0946798,0.0,2126703906.043031,144186665.80774722,35446654681.64688,0.0,0.0,144186665.80774722,47350362.26095672,0.0,3657294733.1825857,-3560458429.6357956,4713799290.688143,1153340861.0523465,0.0,16347613660.463707,16347613660.463707,52059470499.6463,50906129638.593956\n$10-20K,13490083.180830905,118409364650.60191,13398401.68758828,182209633380.31467,91681.49324262491,1537121728.26224,0.0,13193821885.682465,1153340751.3738785,117093843748.3788,18563.650515976628,2073047.465464373,1155413798.8393428,332227291.6021379,0.0,14381132908.97253,-13557946401.735325,16644798770.016478,3086852368.28115,0.0,85691153094.18967,85691153094.18967,209645646300.35837,206558793932.0772\n$20-30K,17091971.30853177,240747295864.95938,16669693.666807573,244362067462.99695,422277.64172419626,6875688890.198858,0.0,79439284979.7114,7788192799.805288,235024937774.57944,75040.6731306485,164929192.15561423,7953121991.960903,1873028132.120944,0.0,19692149460.4384,-13612055600.598438,34463323790.83532,20851268190.236877,0.0,171982275354.9718,171982275354.9718,430873374371.7091,410022106181.4723\n$30-40K,17736589.614657126,381469637038.60724,17048158.764214605,263114278595.61176,688430.8504425208,12370573890.14173,0.0,174729057309.8366,18318259594.44528,371525249655.1949,75492.928664418,125432048.55303003,18443691642.998306,4597163226.426091,0.0,17410234279.744236,-3563705863.172018,54973498610.845406,51409792747.673386,0.0,206160434771.932,206160434771.932,619908683089.7402,568498890342.0668\n$40-50K,16038156.694848452,493876840406.72876,15044391.492407195,247672042886.98215,993765.2024412558,16504240330.327051,0.0,271725184184.19604,29069761100.593227,481476669547.97235,9603.234366296334,8549171.416692777,29078310272.00992,7299015798.81041,0.0,12950434826.12838,8828859647.071133,69103404983.99185,77932264631.06297,0.0,188658068033.11526,188658068033.11526,720237911286.0894,642305646655.0264\n$50-75K,28640345.807916984,1210536188373.9365,25077985.210873168,475490439468.4237,3562360.597043821,70219187721.23714,0.0,748093026445.7404,86423273454.25098,1158009475134.8271,162148.0003089742,349632493.408419,86772905947.6594,16290727806.82589,0.0,17354449577.371937,53127728563.46156,163060816992.25745,216188545555.719,0.0,468552761008.914,468552761008.914,1758633619924.3765,1542445074368.6577\n$75-100K,19033701.163608883,1208090989887.5605,15007745.560652224,308747501672.71545,4025955.6029566573,90392066334.57014,0.0,841659959243.8179,108243886454.8879,1144739098547.2646,75495.57536834641,433577567.1027354,108677464021.99063,14974839098.495712,0.0,4815655375.066872,88886969548.42804,150749529163.8843,239636498712.31235,0.0,387647203276.46277,387647203276.46277,1652392113994.8027,1412755615282.4905\n$100-200K,34805109.14135511,3736801950914.0947,22004275.965832576,496865714287.0249,12800833.175522536,362978534631.1122,0.0,2908950995157.0137,419516286043.27454,3490633323476.6777,127289.58621966265,89653151.52090633,419605939194.7955,36054094199.88056,0.0,2464002840.368837,381087842154.546,458577960397.81946,839665802552.3655,0.0,881850329918.9963,881850329918.9963,4822555437394.338,3982889634841.9727\n$200-500K,11523722.106481902,2533625291764.6113,5053727.973336245,119196548899.79105,6469994.133145658,209334771992.9867,0.0,2204317111217.204,405544608333.844,2389185822685.453,86286.18728453209,299310330.3930037,405843918664.237,12419668429.31364,1327117239.5231297,800171111.5285362,393951196362.91797,250921290277.09433,644872486640.0122,0.0,470213408116.3806,470213408116.3806,3159975074510.676,2515102587870.663\n$500-1000K,914355.8136387521,563167524645.1511,219691.97544479213,5515016750.76465,694663.8381939599,27750010377.09882,0.0,527814293146.9466,129152126181.11353,542509605966.8623,8102.884076870837,45844827.5821955,129197971008.69571,46368362.11336914,1522202461.4653313,126301669.43942697,130547503438.60826,28683170399.070137,159230673837.6784,0.0,30260841559.03643,30260841559.03643,610804720868.2537,451574047030.5752\n>$1000K,294823.6290229802,629756833585.1853,18686.06057266625,377411611.2162248,276137.568450314,14217717953.543308,0.0,612389210374.7073,185991002863.44098,618351622496.6624,30344.46053938401,451715066.9616569,186442717930.40265,5530557.787627701,5619600595.422981,0.0,192056787968.03796,18523319599.763508,210580107567.8015,0.0,3103117880.7065887,3103117880.7065887,647780171802.9003,437200064235.09875\nALL,172188405.32,11144822392589.193,142126702.0864293,2467852577695.97,30061703.233570714,812314894236.573,0.0,8384438647850.898,1391344924242.8374,10576763456714.627,668367.1804751097,1970716896.5597186,1393315641139.3972,93940013265.63734,8468920296.411442,93653032885.22192,1214191515284.9492,1250432845259.8076,2464624360544.757,0.0,2911227435120.624,2911227435120.624,14678474532788.377,12213850172243.62\n", "dist2_xbin": ",s006_2,c00100_2,num_returns_StandardDed_2,standard_2,num_returns_ItemDed_2,c04470_2,c04600_2,c04800_2,taxbc_2,c62100_2,num_returns_AMT_2,c09600_2,c05800_2,c07100_2,othertaxes_2,refund_2,iitax_2,payrolltax_2,combined_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,expanded_income_2,aftertax_income_2\n<$0K,60367.67738945552,-7232847000.8937,60367.67738945552,1320167938.937977,0.0,0.0,0.0,0.0,0.0,-7232847000.8937,0.0,0.0,0.0,0.0,0.0,1160220.7052509892,-1160220.7052509892,15119966.51521067,13959745.809959682,0.0,760228445.4541277,760228445.4541277,-6393097763.026573,-6407057508.836534\n=$0K,1078448.479659136,0.0,1078448.479659136,16985100147.256935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11480730.702058535,35577153314.02216,11445127.571651362,105996654593.93356,35603.13040717194,134980387.0946798,0.0,2126703906.043031,144186665.80774722,35450485537.018295,0.0,0.0,144186665.80774722,47350362.26095672,0.0,3655019446.5851965,-3558183143.0384064,3974955091.3656197,416771948.3272135,0.0,16347613660.463707,16347613660.463707,51693879255.35645,51277107307.029236\n$10-20K,13490083.180830905,118429860669.58105,13397616.939873502,182200029009.98303,92466.24095740271,1547996263.2911754,0.0,13195075787.395573,1153466141.5451891,117108219984.35048,18563.650515976628,2073047.465464373,1155539189.0106535,332284388.47781014,0.0,14379483184.545149,-13556228384.012306,14036927925.242813,480699541.2305065,0.0,85691153094.18967,85691153094.18967,208362206896.95068,207881507355.72015\n$20-30K,17091971.30853177,240904925867.58136,16669536.849599816,244359451757.7495,422434.4589319554,6877801327.903536,0.0,79523228227.72336,7796575026.773802,235181337507.45502,75040.6731306485,164929192.15561423,7961504218.929417,1875370718.8536868,0.0,19688585793.628994,-13602452293.553263,29080984241.80726,15478531948.253996,0.0,171982275354.9718,171982275354.9718,428339834599.8171,412861302651.5631\n$30-40K,17736589.614657126,381854894845.109,17046740.792584956,263096924324.4308,689848.822072174,12387919569.850113,0.0,174989880139.47476,18346077378.181145,371899134017.51196,75492.928664418,125432048.55303003,18471509426.734177,4603991211.653339,0.0,17388363887.034843,-3520845671.9540067,46407835987.39026,42886990315.43626,0.0,206160434771.932,206160434771.932,616009613532.5016,573122623217.0654\n$40-50K,16038156.694848452,494227036125.3553,15044391.492407195,247672042886.98215,993765.2024412558,16502743206.416262,0.0,272043149421.36334,29103332473.718224,481828736671.4873,9603.234366296334,8549171.416692777,29111881645.13492,7306095576.976168,0.0,12934258984.662872,8871527083.495876,58315440877.23637,67186967960.73224,0.0,188658068033.11526,188658068033.11526,715188765757.585,648001797796.8527\n$50-75K,28640345.807916984,1211092558100.1423,25077985.210873168,475490439468.4237,3562360.597043821,70218952910.80064,0.0,748597203468.9148,86483565663.93295,1158566049984.8936,162148.0003089742,349617520.14694464,86833183184.0799,16306595116.553013,0.0,17329044274.074364,53197543793.452515,137562118539.88635,190759662333.33884,0.0,468552761008.914,468552761008.914,1746413447453.149,1555653785119.81\n$75-100K,19033701.163608883,1208491172976.9524,15007745.560652224,308747501672.71545,4025955.6029566573,90391246611.85968,0.0,842047259805.8937,108295578164.2821,1145140306290.0447,75495.57536834641,433577567.1027354,108729155731.38484,14978991857.002995,0.0,4808383524.180669,88941780350.20117,127155139373.2977,216096919723.49887,0.0,387647203276.46277,387647203276.46277,1640945145893.6125,1424848226170.1138\n$100-200K,34805109.14135511,3737958839403.049,22004087.38817767,496861098358.61926,12801021.753177438,362983052977.34436,0.0,2910065909913.3574,419733423204.2471,3491787348561.9727,129344.42098209303,92353770.75103381,419825776974.99817,36058571561.28908,0.0,2457277482.4175816,381309927931.2915,386979618151.89606,768289546083.1875,0.0,881850329918.9963,881850329918.9963,4787904682789.825,4019615136706.637\n$200-500K,11523722.106481902,2534288944947.4385,5053727.973336245,119196548899.79105,6469994.133145658,209331891807.18683,0.0,2205043057843.2056,405734345549.0681,2389852747231.0156,86286.18728453209,283733901.51679087,406018079450.58484,12416832031.047903,1328573740.527253,799840449.4392382,394129980710.62494,213772249957.66064,607902230668.2856,0.0,470213408116.3806,470213408116.3806,3142060304736.334,2534158074068.049\n$500-1000K,914355.8136387521,563381328408.7819,219691.97544479213,5515016750.76465,694663.8381939599,27749938317.747143,0.0,528028453598.1301,129226815879.58699,542723499804.6826,8102.884076870837,45730931.45201637,129272546811.039,46297028.65601224,1522369742.98872,126290171.095182,130622329354.27652,25501659220.571968,156123988574.84848,0.0,30260841559.03643,30260841559.03643,609423646252.1611,453299657677.3126\n>$1000K,294823.6290229802,629846582452.8174,18686.06057266625,377411611.2162248,276137.568450314,14217717953.543308,0.0,612478959242.3394,186024249800.40857,618441371364.2943,30344.46053938401,451469682.86061287,186475719483.26917,5530557.787627701,5619661222.630876,0.0,192089850148.11243,17547042679.932205,209636892828.04462,0.0,3103117880.7065887,3103117880.7065887,647373592821.938,437736699993.89343\nALL,172188405.32,11148820450109.934,142124153.97222218,2467818387420.804,30064251.34777781,812344241333.0378,0.0,8388138881353.84,1392041615947.5518,10580746389953.834,670422.0152375401,1957466833.4209352,1393999082780.9727,93977910410.55858,8470604706.146849,93567707418.36934,1214924069658.1917,1060349092012.8026,2275273161670.994,0.0,2911227435120.624,2911227435120.624,14587322022226.203,12312048860555.209\n", "diff_itax_xbin": ",count_2,tax_cut_2,perc_cut_2,tax_inc_2,perc_inc_2,mean_2,tot_change_2,share_of_change_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,pc_aftertaxinc_2\n<$0K,60367.67738945552,0.0,0.0,287.167376234031,0.4756972417232517,0.7600470469641628,45882.274931940934,0.006263326874817126,0.0,760228445.4541277,760228445.4541277,-0.021231857994152836\n=$0K,1078448.479659136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,11480730.702058535,75141.90955591074,0.654504591266456,269551.5765624213,2.3478608074492135,0.19818308228251005,2275286.597389406,0.3105962752387316,0.0,16347613660.463707,16347613660.463707,0.7287485241345593\n$10-20K,13490083.180830905,48782.06178076943,0.3616142400818373,142035.36631888733,1.0528872536584228,0.12735412376563512,1718017.7230202518,0.23452426001034982,0.0,85691153094.18967,85691153094.18967,0.6403568681166316\n$20-30K,17091971.30853177,84145.99632041003,0.492312997731321,457604.85324683,2.677308807664615,0.5618607047615508,9603307.045175865,1.3109343682803787,0.0,171982275354.9718,171982275354.9718,0.6924496087618692\n$30-40K,17736589.614657126,48082.33942969228,0.271091232724684,1101119.814672027,6.20818228641929,2.41648434953879,42860191.218011186,5.850786342084596,0.0,206160434771.932,206160434771.932,0.8133231134745955\n$40-50K,16038156.694848452,33054.685362090444,0.20610027692713465,1015364.6223631352,6.330930927300868,2.660370342836958,42667436.42474683,5.824473647722922,0.0,188658068033.11526,188658068033.11526,0.8868287506875294\n$50-75K,28640345.807916984,4993.66863695445,0.01743578331925749,1403723.0990546192,4.9012086253043465,2.4376531784629343,69815229.99094641,9.530381981330747,0.0,468552761008.914,468552761008.914,0.8563488561535326\n$75-100K,19033701.163608883,0.0,0.0,986367.9957993011,5.182218567585627,2.87967123692836,54810801.77313436,7.482147916274305,0.0,387647203276.46277,387647203276.46277,0.8559591451494875\n$100-200K,34805109.14135511,31448.466915527973,0.09035589225652274,2834618.5839904062,8.144260006420547,6.380838394829547,222085776.74539155,30.31662697778976,0.0,881850329918.9963,881850329918.9963,0.9220818358458338\n$200-500K,11523722.106481902,114140.09942726887,0.9904794507589433,958435.3442146938,8.31706401246512,15.514461912129681,178784347.7069803,24.405607861659043,0.0,470213408116.3806,470213408116.3806,0.7576425029055533\n$500-1000K,914355.8136387521,12656.86902371581,1.3842389182551142,160131.87359149705,17.513080925710906,81.83457091007975,74825915.66826412,10.214383860281993,0.0,30260841559.03643,30260841559.03643,0.3821323785289543\n>$1000K,294823.6290229802,18123.305149885044,6.1471684647340155,75497.56039629273,25.60770337387307,112.14223291395437,33062180.07443233,4.513273182452362,0.0,3103117880.7065887,3103117880.7065887,0.12274375113223712\nALL,172188405.32,470569.40160222515,0.27328750778991484,9404737.857586347,5.461888005820314,4.254376895360776,732554373.2424245,100.0,0.0,2911227435120.624,2911227435120.624,0.803994538386843\n", "diff_ptax_xbin": ",count_2,tax_cut_2,perc_cut_2,tax_inc_2,perc_inc_2,mean_2,tot_change_2,share_of_change_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,pc_aftertaxinc_2\n<$0K,60367.67738945552,4110.992876824965,6.80992387748056,0.0,0.0,-46.598066179320305,-2813017.0260857064,0.001479882934776818,0.0,760228445.4541277,760228445.4541277,-0.021231857994152836\n=$0K,1078448.479659136,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11480730.702058535,8383500.530044027,73.02236022782797,0.0,0.0,-64.35515460614756,-738844199.3225222,0.3886940291853494,0.0,16347613660.463707,16347613660.463707,0.7287485241345593\n$10-20K,13490083.180830905,9367274.75599347,69.43822829279623,0.0,0.0,-193.31762523743282,-2607870844.7736645,1.3719588340539837,0.0,85691153094.18967,85691153094.18967,0.6403568681166316\n$20-30K,17091971.30853177,11386826.970030008,66.6209108620845,0.0,0.0,-314.9045509069725,-5382339549.028055,2.831562117796542,0.0,171982275354.9718,171982275354.9718,0.6924496087618692\n$30-40K,17736589.614657126,12644973.743747499,71.2931517189639,0.0,0.0,-482.9374084619217,-8565662623.455147,4.5062570983246815,0.0,206160434771.932,206160434771.932,0.8133231134745955\n$40-50K,16038156.694848452,12244845.705524303,76.34821094781684,0.0,0.0,-672.6436405388555,-10787964106.75548,5.675374103507419,0.0,188658068033.11526,188658068033.11526,0.8868287506875294\n$50-75K,28640345.807916984,22488716.08104769,78.52110526832811,0.0,0.0,-890.3069335609266,-25498698452.37111,13.414454426958153,0.0,468552761008.914,468552761008.914,0.8563488561535326\n$75-100K,19033701.163608883,14735103.626415376,77.41586094977615,0.0,0.0,-1239.6112341879918,-23594389790.586624,12.412628321751823,0.0,387647203276.46277,387647203276.46277,0.8559591451494875\n$100-200K,34805109.14135511,28263995.096110776,81.20645443552928,0.0,0.0,-2057.121612667231,-71598342245.92342,37.66673428048561,0.0,881850329918.9963,881850329918.9963,0.9220818358458338\n$200-500K,11523722.106481902,9784027.403267084,84.90336119580435,0.0,0.0,-3223.701506871462,-37149040319.433685,19.543511575742187,0.0,470213408116.3806,470213408116.3806,0.7576425029055533\n$500-1000K,914355.8136387521,789437.6741389575,86.33812596404098,0.0,0.0,-3479.5110733064507,-3181511178.4981675,1.6737417712727598,0.0,30260841559.03643,30260841559.03643,0.3821323785289543\n>$1000K,294823.6290229802,279682.1666864562,94.86423039201387,427.4426844405162,0.14498250559394574,-3311.393062579828,-976276919.8313055,0.5136035579867143,0.0,3103117880.7065887,3103117880.7065887,0.12274375113223712\nALL,172188405.32,130372494.74588248,75.7150253546947,427.4426844405162,0.000248241270163426,-1103.9288789146285,-190083753247.00525,99.99999999999999,0.0,2911227435120.624,2911227435120.624,0.803994538386843\n", "diff_comb_xbin": ",count_2,tax_cut_2,perc_cut_2,tax_inc_2,perc_inc_2,mean_2,tot_change_2,share_of_change_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,pc_aftertaxinc_2\n<$0K,60367.67738945552,4110.992876824965,6.80992387748056,0.0,0.0,-45.838019132356145,-2767134.7511537657,0.0014613769374645297,0.0,760228445.4541277,760228445.4541277,-0.021231857994152836\n=$0K,1078448.479659136,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11480730.702058535,8383500.530044027,73.02236022782797,0.0,0.0,-64.15697152386507,-736568912.7251328,0.3889961706639052,0.0,16347613660.463707,16347613660.463707,0.7287485241345593\n$10-20K,13490083.180830905,9367274.75599347,69.43822829279623,0.0,0.0,-193.19027111366717,-2606152827.050644,1.3763592956113901,0.0,85691153094.18967,85691153094.18967,0.6403568681166316\n$20-30K,17091971.30853177,11386826.970030008,66.6209108620845,0.0,0.0,-314.342690202211,-5372736241.982881,2.837445061842356,0.0,171982275354.9718,171982275354.9718,0.6924496087618692\n$30-40K,17736589.614657126,12644973.743747499,71.2931517189639,0.0,0.0,-480.5209241123829,-8522802432.237136,4.501055437161051,0.0,206160434771.932,206160434771.932,0.8133231134745955\n$40-50K,16038156.694848452,12244845.705524303,76.34821094781684,0.0,0.0,-669.9832701960183,-10745296670.33073,5.674797273131836,0.0,188658068033.11526,188658068033.11526,0.8868287506875294\n$50-75K,28640345.807916984,22488716.08104769,78.52110526832811,0.0,0.0,-887.8692803824634,-25428883222.380157,13.429480971669559,0.0,468552761008.914,468552761008.914,0.8563488561535326\n$75-100K,19033701.163608883,14735103.626415376,77.41586094977615,0.0,0.0,-1236.7315629510633,-23539578988.813484,12.431703167882725,0.0,387647203276.46277,387647203276.46277,0.8559591451494875\n$100-200K,34805109.14135511,28263995.096110776,81.20645443552928,0.0,0.0,-2050.7407742724013,-71376256469.17801,37.6951700827431,0.0,881850329918.9963,881850329918.9963,0.9220818358458338\n$200-500K,11523722.106481902,9784027.403267084,84.90336119580435,0.0,0.0,-3208.1870449593316,-36970255971.7267,19.52470129136818,0.0,470213408116.3806,470213408116.3806,0.7576425029055533\n$500-1000K,914355.8136387521,789437.6741389575,86.33812596404098,0.0,0.0,-3397.6765023963712,-3106685262.8299036,1.6407000754724967,0.0,30260841559.03643,30260841559.03643,0.3821323785289543\n>$1000K,294823.6290229802,279682.1666864562,94.86423039201387,427.4426844405162,0.14498250559394574,-3199.2508296658752,-943214739.7568737,0.49812979551594966,0.0,3103117880.7065887,3103117880.7065887,0.12274375113223712\nALL,172188405.32,130372494.74588248,75.7150253546947,427.4426844405162,0.000248241270163426,-1099.6745020192675,-189351198873.7628,100.0,0.0,2911227435120.624,2911227435120.624,0.803994538386843\n", "dist1_xdec": ",s006_2,c00100_2,num_returns_StandardDed_2,standard_2,num_returns_ItemDed_2,c04470_2,c04600_2,c04800_2,taxbc_2,c62100_2,num_returns_AMT_2,c09600_2,c05800_2,c07100_2,othertaxes_2,refund_2,iitax_2,payrolltax_2,combined_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,expanded_income_2,aftertax_income_2\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17193844.266088784,66450040759.982086,17140793.070871465,185003629645.7484,53051.19521731775,444025892.3979722,0.0,2611611302.688464,155740518.15721038,66040302217.12822,0.0,0.0,155740518.15721038,51576290.66350743,0.0,8484638332.130798,-8380474104.637095,10092563872.50457,1712089767.867477,0.0,32936328257.323837,32936328257.323837,100905064010.76385,99192974242.89636\n10-20,17232515.25718699,181453532278.31622,16946734.09213547,237686074248.11688,285781.16505151876,4708137823.96204,0.0,41532965262.527245,3843865405.5753975,177450579736.8494,24636.512679746065,6464205.762097808,3850329611.3374953,818490777.7755921,0.0,17763888366.87516,-14732049533.313257,26037435951.738823,11305386418.425568,0.0,149661855373.27048,149661855373.27048,342780539572.9233,331475153154.4977\n20-30,17222609.96773486,300038681294.6013,16716244.55717668,254104699462.07935,506365.410558181,8154138265.745458,0.0,117588292142.05324,12126015126.255232,293493984420.5004,87991.65712841047,203220610.0056139,12329235736.260845,3238324908.682184,0.0,19646867543.59167,-10555956716.01301,43161481638.91289,32605524922.89987,0.0,190653404829.11243,190653404829.11243,515790018377.274,483184493454.37415\n30-40,17212709.97169059,455324674342.824,16347081.300726093,259759833251.85892,865628.6709644974,15370506533.870287,0.0,231904203241.7261,24423042936.75065,443267835727.23047,56469.08250288661,82749472.40639693,24505792409.157047,5846066641.845411,0.0,15721365927.025478,2938359840.2861557,64670492108.23715,67608851948.5233,0.0,191701313593.40417,191701313593.40417,683311657495.9487,615702805547.4253\n40-50,17220296.417663425,583970751984.074,15756523.576528754,276434312681.5603,1463772.8411346728,25692245459.958797,0.0,335849434026.9723,36293160714.417786,564312020319.2007,109283.72855660143,168727896.5478939,36461888610.965675,8658816760.091608,0.0,12739018725.934038,15064053124.94003,79635086304.98567,94699139429.92569,0.0,243092410136.51508,243092410136.51508,868901416360.3175,774202276930.3918\n50-60,17204850.915213123,761049965438.8562,14923580.375728332,284665980405.01166,2281270.5394847933,46588044729.677826,0.0,476063639629.2718,55690041814.62607,726309857376.6725,60084.48006911413,178678535.38715696,55868720350.01323,9899541610.774319,0.0,10226127653.984798,35743051085.25411,102126315377.81549,137869366463.06958,0.0,290691617684.7269,290691617684.7269,1101685880920.6633,963816514457.5938\n60-70,17227244.01547554,1028287075056.2278,13895396.112049885,281886212145.3913,3331847.9034256577,70420343891.104,0.0,709403399954.1544,90409997958.31783,979450435141.3401,77878.6014179014,444352799.9927963,90854350758.31061,13276531751.073944,0.0,4561369897.870216,73016449109.36646,130838739390.1878,203855188499.55426,0.0,344417298737.3534,344417298737.3534,1422049422207.4836,1218194233707.9294\n70-80,17208157.971771695,1401492744935.3706,12462816.330901645,270639379694.27197,4745341.640870046,128393987344.8138,0.0,1027397390055.0869,133652368316.85057,1310636652881.0303,33404.711956624546,54059580.397874616,133706427897.24844,14736291355.104149,0.0,2242972534.9141135,116727164007.2302,171055270515.64954,287782434522.87976,0.0,398946245003.28455,398946245003.28455,1856931022351.9578,1569148587829.0781\n80-90,17244708.953023233,2000258574426.1213,10180120.210513406,235239170339.01035,7064588.742509825,203936929305.62018,0.0,1569175854641.8826,228499355506.01413,1863385738383.103,68945.97565946958,24882994.369055208,228524238500.38318,19664494987.488388,0.0,1056970383.5938301,207802773129.30096,247052529697.77893,454855302827.07996,0.0,409724249724.5606,409724249724.5606,2528775956186.148,2073920653359.0679\n90-100,17221467.584151752,4366496352072.8203,7757412.45979755,182433285822.92078,9464055.124354206,308606534989.4225,0.0,3872911857594.5366,806251335945.8726,4152416050511.571,149672.43050435546,807580801.6908326,807058916747.5634,17749878182.138237,8468920296.411444,1209813519.3018217,796568145342.5347,375762930401.9968,1172331075744.5315,0.0,659402711781.0718,659402711781.0718,5257343555304.896,4085012479560.3657\nALL,172188405.32,11144822392589.193,142126702.08642927,2467852577695.97,30061703.23357072,812314894236.5728,0.0,8384438647850.898,1391344924242.8374,10576763456714.625,668367.1804751097,1970716896.5597181,1393315641139.397,93940013265.63737,8468920296.411444,93653032885.22192,1214191515284.9492,1250432845259.8079,2464624360544.7573,0.0,2911227435120.6235,2911227435120.6235,14678474532788.377,12213850172243.621\n90-95,8611117.398726502,1351833372258.3667,4558216.364750542,107373973785.9227,4052901.0339759625,119096087928.8422,0.0,1128117465740.6409,186514276808.30725,1272511769532.6045,36480.18192145352,54996473.72693096,186569273282.03415,9475142120.49636,23132906.947995294,520838961.7224593,176596425106.76334,157202962159.93646,333799387266.6998,0.0,292609779525.1922,292609779525.1922,1724689833032.1152,1390890445765.4155\n95-99,6888388.3985308735,1614196714473.842,2775956.376444829,64564889100.85881,4112432.0220860452,136055324980.75507,0.0,1414928178602.69,265079735544.1903,1519689533671.8032,55142.0913207729,172073177.6570416,265251808721.84732,7777613858.138115,986115951.5484222,545223702.2217224,257915087113.03592,155827103372.64026,413742190485.67615,0.0,318318736041.6854,318318736041.6854,2043259158464.416,1629516967978.7397\nTop 1%,1721961.7868943778,1400466265340.6113,423239.71860217844,10494422936.139292,1298722.0682921992,53455122079.82526,0.0,1329866213251.2056,354657323593.375,1360214747307.163,58050.15726212904,580511150.3068601,355237834743.6819,497122203.50376177,7459671437.915026,143750855.35763994,362056633122.7355,62732864869.420105,424789497992.1556,0.0,48474196214.19415,48474196214.19415,1489394563808.3657,1064605065816.2103\n", "dist2_xdec": ",s006_2,c00100_2,num_returns_StandardDed_2,standard_2,num_returns_ItemDed_2,c04470_2,c04600_2,c04800_2,taxbc_2,c62100_2,num_returns_AMT_2,c09600_2,c05800_2,c07100_2,othertaxes_2,refund_2,iitax_2,payrolltax_2,combined_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,expanded_income_2,aftertax_income_2\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17193844.266088784,66456986737.208145,17140793.070871465,185003629645.7484,53051.19521731775,444025892.3979722,0.0,2611611302.688464,155740518.15721038,66047248194.354294,0.0,0.0,155740518.15721038,51576290.66350743,0.0,8481756967.926795,-8377592740.433092,8510459707.888144,132866967.45505065,0.0,32936328257.323837,32936328257.323837,100120957905.6817,99988090938.22664\n10-20,17232515.25718699,181544377028.66385,16945949.344420694,237676469877.78525,286565.91276629653,4718941814.746401,0.0,41575192514.58647,3848088130.78132,177535392884.49524,24636.512679746065,6464205.762097808,3854552336.5434184,819315193.832033,0.0,17762894661.774975,-14727657519.063591,21966774849.047318,7239117329.983724,0.0,149661855373.27048,149661855373.27048,340836053771.9251,333596936441.9414\n20-30,17222609.96773486,300320133177.7136,16714669.768339269,254084729485.65094,507940.1993955934,8174442431.252796,0.0,117755965171.80362,12143583196.211943,293761775029.5638,87991.65712841047,203220610.0056139,12346803806.217556,3242005007.0099063,0.0,19633556862.833214,-10528758063.62556,36433320076.59433,25904562012.968773,0.0,190653404829.11243,190653404829.11243,512707389479.22705,486802827466.2583\n30-40,17212709.97169059,455719699462.6659,16347081.300726093,259759833251.85892,865628.6709644974,15368310396.094383,0.0,232229017056.57077,24457572140.918533,443665606019.29236,56469.08250288661,82749472.40639693,24540321613.324932,5854269770.472799,0.0,15701191277.362564,2984860565.489571,54584875766.63692,57569736332.12648,0.0,191701313593.40417,191701313593.40417,678660224223.8628,621090487891.7363\n40-50,17220296.417663425,584240967113.2363,15756523.576528754,276434312681.5603,1463772.8411346728,25692168969.97421,0.0,336088134631.20337,36318591682.324615,564582331060.8439,109283.72855660143,168727896.5478939,36487319578.8725,8667324773.558367,0.0,12719653235.282677,15100341570.03146,67183261457.52362,82283603027.55508,0.0,243092410136.51508,243092410136.51508,862941550196.7166,780657947169.1616\n50-60,17204850.915213123,761408660943.2952,14923580.375728332,284665980405.01166,2281270.5394847933,46587921009.10122,0.0,476400512389.0558,55728660847.66245,726668619142.6467,60084.48006911413,178663562.1256826,55907324409.78813,9908636212.209503,0.0,10213731974.030434,35784956223.5482,86157071864.38809,121942028087.9363,0.0,290691617684.7269,290691617684.7269,1094038004899.8682,972095976811.9316\n60-70,17227244.01547554,1028662602546.2224,13895396.112049885,281886212145.3913,3331847.9034256577,70419737581.64651,0.0,709754075158.7042,90462037871.99768,979826720518.1567,77878.6014179014,444352799.9927963,90906390671.99048,13281897511.539627,0.0,4553879468.201834,73070613692.24902,110365308118.7462,183435921810.9952,0.0,344417298737.3534,344417298737.3534,1412147600403.4678,1228711678592.4722\n70-80,17208157.971771695,1401862477113.1372,12462627.753246747,270634763765.8664,4745530.218524946,128400346264.47263,0.0,1027742067864.9819,133699646083.14037,1311002278996.8748,33404.711956624546,54059580.397874616,133753705663.53822,14737557519.371902,0.0,2240459959.469699,116775688184.69662,144276471038.30405,261052159223.00067,0.0,398946245003.28455,398946245003.28455,1843897207456.0444,1582845048233.044\n80-90,17244708.953023233,2000965196616.3518,10180120.210513406,235239170339.01035,7064588.742509825,203935366884.0777,0.0,1569862940908.6895,228640108001.78912,1864093661697.3186,68945.97565946958,27092313.473579116,228667200315.2627,19667264716.199215,0.0,1053496541.1356467,207946439057.92786,208459165547.08014,416405604605.008,0.0,409724249724.5606,409724249724.5606,2510178187280.978,2093772582675.9692\n90-100,17221467.584151752,4367639349371.4414,7757412.45979755,182433285822.92078,9464055.124354206,308602980089.2739,0.0,3874119364355.5566,806587587474.5686,4153562756410.2866,151727.26526678583,792136392.7090001,807379723867.2777,17748063415.70172,8470604706.14685,1207086470.3515053,796895178687.3713,322412383586.59357,1119307562273.9648,0.0,659402711781.0718,659402711781.0718,5231794846608.433,4112487284334.468\nALL,172188405.32,11148820450109.936,142124153.97222218,2467818387420.8047,30064251.34777781,812344241333.0376,0.0,8388138881353.841,1392041615947.5518,10580746389953.834,670422.01523754,1957466833.420935,1393999082780.9727,93977910410.55858,8470604706.14685,93567707418.36934,1214924069658.192,1060349092012.8024,2275273161670.994,0.0,2911227435120.6235,2911227435120.6235,14587322022226.207,12312048860555.209\n90-95,8611117.398726502,1352153727778.878,4558216.364750542,107373973785.9227,4052901.0339759625,119095360889.52719,0.0,1128440630500.5903,186586109439.56674,1272832627696.6824,38535.0166838839,55833064.29212029,186641942503.85886,9476236093.832512,23157770.35966777,518454073.20568585,176670410107.18033,132977725241.01202,309648135348.1924,0.0,292609779525.1922,292609779525.1922,1712897054367.584,1403248919019.3916\n95-99,6888388.3985308735,1614582793234.9424,2775956.376444829,64564889100.85881,4112432.0220860452,136052822395.86847,0.0,1415356010857.8909,265189057001.56036,1520078728315.2415,55142.0913207729,159607758.72677505,265348664760.2871,7775784299.156994,987353759.9452837,545126995.3773361,258015107225.69806,132896616986.6119,390911724212.30994,0.0,318318736041.6854,318318736041.6854,2032177963627.5947,1641266239415.2847\nTop 1%,1721961.7868943778,1400902828357.6213,423239.71860217844,10494422936.139292,1298722.0682921992,53454796803.878235,0.0,1330322722997.0754,354812421033.4415,1360651400398.3628,58050.15726212904,576695569.6901047,355389116603.1317,496043022.71221596,7460093175.841898,143505401.76848328,362209661354.49286,56538041358.96968,418747702713.4625,0.0,48474196214.19415,48474196214.19415,1486719828613.2542,1067972125899.7915\n", "diff_itax_xdec": ",count_2,tax_cut_2,perc_cut_2,tax_inc_2,perc_inc_2,mean_2,tot_change_2,share_of_change_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,pc_aftertaxinc_2\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,17193844.266088784,75141.90955591074,0.43702797578614944,323256.8384880509,1.8800730859567372,0.16758115052173855,2881364.2040027557,0.3933311040447813,0.0,32936328257.323837,32936328257.323837,0.8015856983814684\n10-20,17232515.25718699,88676.49176989024,0.5145882098256483,299714.40704471717,1.7392377292091377,0.2548678578904838,4392014.249664327,0.5995478847835471,0.0,149661855373.27048,149661855373.27048,0.6401032678472918\n20-30,17222609.96773486,73689.53077518793,0.42786506176032085,754249.083734575,4.379412209575659,1.5792410348026635,27198652.387448266,3.7128510020439682,0.0,190653404829.11243,190653404829.11243,0.7488514347834263\n30-40,17212709.97169059,47662.175181054925,0.27690105311391394,1172514.653141271,6.811911982887547,2.701534231384457,46500725.20341472,6.347750679255889,0.0,191701313593.40417,191701313593.40417,0.875045930563978\n40-50,17220296.417663425,4301.224721680457,0.024977646245790224,832099.563923237,4.832086183311717,2.1073066462554437,36288445.09143095,4.953686226840939,0.0,243092410136.51508,243092410136.51508,0.8338480047314745\n50-60,17204850.915213123,4729.329082103079,0.02748834677736872,838612.7714530979,4.874280954748452,2.435658321051335,41905138.294086516,5.720413367898744,0.0,290691617684.7269,290691617684.7269,0.8590288950379055\n60-70,17227244.01547554,0.0,0.0,908165.8348261497,5.271683816693652,3.1441235077357765,54164582.882557124,7.393933455453199,0.0,344417298737.3534,344417298737.3534,0.8633635419968977\n70-80,17208157.971771695,9045.441513380923,0.05256484469877071,1335463.2813885938,7.76064052630904,2.81983565853087,48524177.46643408,6.623969392422964,0.0,398946245003.28455,398946245003.28455,0.8728593652762351\n80-90,17244708.953023233,11774.85493956843,0.06828097227761061,1461542.3313989933,8.475308776624873,8.331014980782298,143665928.62686718,19.61164029244335,0.0,409724249724.5606,409724249724.5606,0.9572173981076793\n90-100,17221467.584151752,155548.44406344835,0.903224091114009,1479119.092187659,8.588809780351326,18.989865018093735,327033344.8365186,44.64287659481262,0.0,659402711781.0718,659402711781.0718,0.6725757855471359\nALL,172188405.32,470569.40160222515,0.27328750778991484,9404737.857586345,5.461888005820312,4.254376895360776,732554373.2424245,100.0,0.0,2911227435120.6235,2911227435120.6235,0.8039945383868208\n90-95,8611117.398726502,13348.320425016645,0.1550126401364674,648574.13598438,7.531823176400981,8.591800226524517,73985000.41700758,10.099591664375158,0.0,292609779525.1922,292609779525.1922,0.8885295956702954\n95-99,6888388.3985308735,101416.07029136931,1.4722757258141674,487841.4606011306,7.082084115715301,14.5201035242829,100020112.66213758,13.65360938593945,0.0,318318736041.6854,318318736041.6854,0.7210278669953718\nTop 1%,1721961.7868943778,40784.05334706241,2.368464483791941,342703.495602148,19.90192222675432,88.86854105709601,153028231.75737342,20.88967554449801,0.0,48474196214.19415,48474196214.19415,0.316273160037972\n", "diff_ptax_xdec": ",count_2,tax_cut_2,perc_cut_2,tax_inc_2,perc_inc_2,mean_2,tot_change_2,share_of_change_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,pc_aftertaxinc_2\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17193844.266088784,12151255.938749284,70.67212980819573,0.0,0.0,-92.01573191731148,-1582104164.6164289,0.8323195105267918,0.0,32936328257.323837,32936328257.323837,0.8015856983814684\n10-20,17232515.25718699,11042519.902685225,64.0795597037399,0.0,0.0,-236.21978811211548,-4070661102.691508,2.1415092206233255,0.0,149661855373.27048,149661855373.27048,0.6401032678472918\n20-30,17222609.96773486,11787593.194737945,68.44254858480237,0.0,0.0,-390.6586501652888,-6728161562.318548,3.5395773954313743,0.0,190653404829.11243,190653404829.11243,0.7488514347834263\n30-40,17212709.97169059,13021956.686954614,75.6531464735743,0.0,0.0,-585.940061628172,-10085616341.600235,5.305880260315794,0.0,191701313593.40417,191701313593.40417,0.875045930563978\n40-50,17220296.417663425,12798491.835059855,74.32213432709567,0.0,0.0,-723.0900412776751,-12451824847.462048,6.550704431473144,0.0,243092410136.51508,243092410136.51508,0.8338480047314745\n50-60,17204850.915213123,13811457.551149864,80.27653142252629,0.0,0.0,-928.1826150150963,-15969243513.42739,8.401161719842557,0.0,290691617684.7269,290691617684.7269,0.8590288950379055\n60-70,17227244.01547554,13496843.855178073,78.34592604048342,0.0,0.0,-1188.4333473798806,-20473431271.441612,10.770742328955022,0.0,344417298737.3534,344417298737.3534,0.8633635419968977\n70-80,17208157.971771695,13333967.680450791,77.4863160968412,0.0,0.0,-1556.1688544046096,-26778799477.34551,14.087894951520484,0.0,398946245003.28455,398946245003.28455,0.8728593652762351\n80-90,17244708.953023233,14398566.289290475,83.4955598758668,0.0,0.0,-2237.98292310018,-38593364150.69878,20.303347072776095,0.0,409724249724.5606,409724249724.5606,0.9572173981076793\n90-100,17221467.584151752,14529841.811626343,84.37052034402453,427.4426844405162,0.0024820340215016,-3097.9094293043663,-53350546815.4032,28.066863108535415,0.0,659402711781.0718,659402711781.0718,0.6725757855471359\nALL,172188405.32,130372494.74588247,75.7150253546947,427.4426844405162,0.000248241270163426,-1103.9288789146285,-190083753247.00525,99.99999999999999,0.0,2911227435120.6235,2911227435120.6235,0.8039945383868208\n90-95,8611117.398726502,7335676.069026715,85.18843408303303,0.0,0.0,-2813.2512654521583,-24225236918.92443,12.74450683191468,0.0,292609779525.1922,292609779525.1922,0.8885295956702954\n95-99,6888388.3985308735,5651943.93535048,82.05030855338968,0.0,0.0,-3328.8608393392647,-22930486386.028336,12.06335943726406,0.0,318318736041.6854,318318736041.6854,0.7210278669953718\nTop 1%,1721961.7868943778,1542221.8072491498,89.5619065990195,427.4426844405162,0.02482300639269266,-3597.5383179803443,-6194823510.450428,3.258996839356668,0.0,48474196214.19415,48474196214.19415,0.316273160037972\n", "diff_comb_xdec": ",count_2,tax_cut_2,perc_cut_2,tax_inc_2,perc_inc_2,mean_2,tot_change_2,share_of_change_2,ubi_2,benefit_cost_total_2,benefit_value_total_2,pc_aftertaxinc_2\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17193844.266088784,12151255.938749284,70.67212980819573,0.0,0.0,-91.84815076678974,-1579222800.412426,0.8340178513816893,0.0,32936328257.323837,32936328257.323837,0.8015856983814684\n10-20,17232515.25718699,11042519.902685225,64.0795597037399,0.0,0.0,-235.96492025422495,-4066269088.441843,2.147474699197841,0.0,149661855373.27048,149661855373.27048,0.6401032678472918\n20-30,17222609.96773486,11787593.194737945,68.44254858480237,0.0,0.0,-389.07940913048617,-6700962909.9311,3.538907041406438,0.0,190653404829.11243,190653404829.11243,0.7488514347834263\n30-40,17212709.97169059,13021956.686954614,75.6531464735743,0.0,0.0,-583.2385273967877,-10039115616.396824,5.301849513553769,0.0,191701313593.40417,191701313593.40417,0.875045930563978\n40-50,17220296.417663425,12798491.835059855,74.32213432709567,0.0,0.0,-720.9827346314197,-12415536402.370617,6.5568829118678265,0.0,243092410136.51508,243092410136.51508,0.8338480047314745\n50-60,17204850.915213123,13811457.551149864,80.27653142252629,0.0,0.0,-925.7469566940448,-15927338375.1333,8.411532892248431,0.0,290691617684.7269,290691617684.7269,0.8590288950379055\n60-70,17227244.01547554,13496843.855178073,78.34592604048342,0.0,0.0,-1185.2892238721447,-20419266688.559055,10.783806392571208,0.0,344417298737.3534,344417298737.3534,0.8633635419968977\n70-80,17208157.971771695,13333967.680450791,77.4863160968412,0.0,0.0,-1553.3490187460786,-26730275299.879074,14.116771089313085,0.0,398946245003.28455,398946245003.28455,0.8728593652762351\n80-90,17244708.953023233,14398566.289290475,83.4955598758668,0.0,0.0,-2229.651908119398,-38449698222.071915,20.306023120405836,0.0,409724249724.5606,409724249724.5606,0.9572173981076793\n90-100,17221467.584151752,14529841.811626343,84.37052034402453,427.4426844405162,0.0024820340215016,-3078.919564286272,-53023513470.566666,28.00273448805388,0.0,659402711781.0718,659402711781.0718,0.6725757855471359\nALL,172188405.32,130372494.74588247,75.7150253546947,427.4426844405162,0.000248241270163426,-1099.6745020192677,-189351198873.76282,100.0,0.0,2911227435120.6235,2911227435120.6235,0.8039945383868208\n90-95,8611117.398726502,7335676.069026715,85.18843408303303,0.0,0.0,-2804.659465225634,-24151251918.507423,12.754739374324556,0.0,292609779525.1922,292609779525.1922,0.8885295956702954\n95-99,6888388.3985308735,5651943.93535048,82.05030855338968,0.0,0.0,-3314.3407358149802,-22830466273.366188,12.057207141628327,0.0,318318736041.6854,318318736041.6854,0.7210278669953718\nTop 1%,1721961.7868943778,1542221.8072491498,89.5619065990195,427.4426844405162,0.02482300639269266,-3508.6697769232483,-6041795278.693054,3.190787972100993,0.0,48474196214.19415,48474196214.19415,0.316273160037972\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_2
ind_tax732,554,373.24
payroll_tax-190,083,753,247.01
combined_tax-189,351,198,873.76
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_2
ind_tax1,214,191,515,284.95
payroll_tax1,250,432,845,259.81
combined_tax2,464,624,360,544.76
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_2
ind_tax1,214,924,069,658.19
payroll_tax1,060,349,092,012.80
combined_tax2,275,273,161,670.99
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_2c00100_2num_returns_StandardDed_2standard_2num_returns_ItemDed_2c04470_2c04600_2c04800_2taxbc_2c62100_2num_returns_AMT_2c09600_2c05800_2c07100_2othertaxes_2refund_2iitax_2payrolltax_2combined_2ubi_2benefit_cost_total_2benefit_value_total_2expanded_income_2aftertax_income_2
<$0K60,367.68-7,232,847,000.8960,367.681,320,167,938.940.000.000.000.000.00-7,232,847,000.890.000.000.000.000.001,206,102.98-1,206,102.9817,932,983.5416,726,880.560.00760,228,445.45760,228,445.45-6,391,691,254.51-6,408,418,135.07
=$0K1,078,448.480.001,078,448.4816,985,100,147.260.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,480,730.7035,573,322,458.6511,445,127.57105,996,654,593.9335,603.13134,980,387.090.002,126,703,906.04144,186,665.8135,446,654,681.650.000.00144,186,665.8147,350,362.260.003,657,294,733.18-3,560,458,429.644,713,799,290.691,153,340,861.050.0016,347,613,660.4616,347,613,660.4652,059,470,499.6550,906,129,638.59
$10-20K13,490,083.18118,409,364,650.6013,398,401.69182,209,633,380.3191,681.491,537,121,728.260.0013,193,821,885.681,153,340,751.37117,093,843,748.3818,563.652,073,047.471,155,413,798.84332,227,291.600.0014,381,132,908.97-13,557,946,401.7416,644,798,770.023,086,852,368.280.0085,691,153,094.1985,691,153,094.19209,645,646,300.36206,558,793,932.08
$20-30K17,091,971.31240,747,295,864.9616,669,693.67244,362,067,463.00422,277.646,875,688,890.200.0079,439,284,979.717,788,192,799.81235,024,937,774.5875,040.67164,929,192.167,953,121,991.961,873,028,132.120.0019,692,149,460.44-13,612,055,600.6034,463,323,790.8420,851,268,190.240.00171,982,275,354.97171,982,275,354.97430,873,374,371.71410,022,106,181.47
$30-40K17,736,589.61381,469,637,038.6117,048,158.76263,114,278,595.61688,430.8512,370,573,890.140.00174,729,057,309.8418,318,259,594.45371,525,249,655.1975,492.93125,432,048.5518,443,691,643.004,597,163,226.430.0017,410,234,279.74-3,563,705,863.1754,973,498,610.8551,409,792,747.670.00206,160,434,771.93206,160,434,771.93619,908,683,089.74568,498,890,342.07
$40-50K16,038,156.69493,876,840,406.7315,044,391.49247,672,042,886.98993,765.2016,504,240,330.330.00271,725,184,184.2029,069,761,100.59481,476,669,547.979,603.238,549,171.4229,078,310,272.017,299,015,798.810.0012,950,434,826.138,828,859,647.0769,103,404,983.9977,932,264,631.060.00188,658,068,033.12188,658,068,033.12720,237,911,286.09642,305,646,655.03
$50-75K28,640,345.811,210,536,188,373.9425,077,985.21475,490,439,468.423,562,360.6070,219,187,721.240.00748,093,026,445.7486,423,273,454.251,158,009,475,134.83162,148.00349,632,493.4186,772,905,947.6616,290,727,806.830.0017,354,449,577.3753,127,728,563.46163,060,816,992.26216,188,545,555.720.00468,552,761,008.91468,552,761,008.911,758,633,619,924.381,542,445,074,368.66
$75-100K19,033,701.161,208,090,989,887.5615,007,745.56308,747,501,672.724,025,955.6090,392,066,334.570.00841,659,959,243.82108,243,886,454.891,144,739,098,547.2675,495.58433,577,567.10108,677,464,021.9914,974,839,098.500.004,815,655,375.0788,886,969,548.43150,749,529,163.88239,636,498,712.310.00387,647,203,276.46387,647,203,276.461,652,392,113,994.801,412,755,615,282.49
$100-200K34,805,109.143,736,801,950,914.0922,004,275.97496,865,714,287.0212,800,833.18362,978,534,631.110.002,908,950,995,157.01419,516,286,043.273,490,633,323,476.68127,289.5989,653,151.52419,605,939,194.8036,054,094,199.880.002,464,002,840.37381,087,842,154.55458,577,960,397.82839,665,802,552.370.00881,850,329,919.00881,850,329,919.004,822,555,437,394.343,982,889,634,841.97
$200-500K11,523,722.112,533,625,291,764.615,053,727.97119,196,548,899.796,469,994.13209,334,771,992.990.002,204,317,111,217.20405,544,608,333.842,389,185,822,685.4586,286.19299,310,330.39405,843,918,664.2412,419,668,429.311,327,117,239.52800,171,111.53393,951,196,362.92250,921,290,277.09644,872,486,640.010.00470,213,408,116.38470,213,408,116.383,159,975,074,510.682,515,102,587,870.66
$500-1000K914,355.81563,167,524,645.15219,691.985,515,016,750.76694,663.8427,750,010,377.100.00527,814,293,146.95129,152,126,181.11542,509,605,966.868,102.8845,844,827.58129,197,971,008.7046,368,362.111,522,202,461.47126,301,669.44130,547,503,438.6128,683,170,399.07159,230,673,837.680.0030,260,841,559.0430,260,841,559.04610,804,720,868.25451,574,047,030.58
>$1000K294,823.63629,756,833,585.1918,686.06377,411,611.22276,137.5714,217,717,953.540.00612,389,210,374.71185,991,002,863.44618,351,622,496.6630,344.46451,715,066.96186,442,717,930.405,530,557.795,619,600,595.420.00192,056,787,968.0418,523,319,599.76210,580,107,567.800.003,103,117,880.713,103,117,880.71647,780,171,802.90437,200,064,235.10
ALL172,188,405.3211,144,822,392,589.19142,126,702.092,467,852,577,695.9730,061,703.23812,314,894,236.570.008,384,438,647,850.901,391,344,924,242.8410,576,763,456,714.63668,367.181,970,716,896.561,393,315,641,139.4093,940,013,265.648,468,920,296.4193,653,032,885.221,214,191,515,284.951,250,432,845,259.812,464,624,360,544.760.002,911,227,435,120.622,911,227,435,120.6214,678,474,532,788.3812,213,850,172,243.62
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_2c00100_2num_returns_StandardDed_2standard_2num_returns_ItemDed_2c04470_2c04600_2c04800_2taxbc_2c62100_2num_returns_AMT_2c09600_2c05800_2c07100_2othertaxes_2refund_2iitax_2payrolltax_2combined_2ubi_2benefit_cost_total_2benefit_value_total_2expanded_income_2aftertax_income_2
<$0K60,367.68-7,232,847,000.8960,367.681,320,167,938.940.000.000.000.000.00-7,232,847,000.890.000.000.000.000.001,160,220.71-1,160,220.7115,119,966.5213,959,745.810.00760,228,445.45760,228,445.45-6,393,097,763.03-6,407,057,508.84
=$0K1,078,448.480.001,078,448.4816,985,100,147.260.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,480,730.7035,577,153,314.0211,445,127.57105,996,654,593.9335,603.13134,980,387.090.002,126,703,906.04144,186,665.8135,450,485,537.020.000.00144,186,665.8147,350,362.260.003,655,019,446.59-3,558,183,143.043,974,955,091.37416,771,948.330.0016,347,613,660.4616,347,613,660.4651,693,879,255.3651,277,107,307.03
$10-20K13,490,083.18118,429,860,669.5813,397,616.94182,200,029,009.9892,466.241,547,996,263.290.0013,195,075,787.401,153,466,141.55117,108,219,984.3518,563.652,073,047.471,155,539,189.01332,284,388.480.0014,379,483,184.55-13,556,228,384.0114,036,927,925.24480,699,541.230.0085,691,153,094.1985,691,153,094.19208,362,206,896.95207,881,507,355.72
$20-30K17,091,971.31240,904,925,867.5816,669,536.85244,359,451,757.75422,434.466,877,801,327.900.0079,523,228,227.727,796,575,026.77235,181,337,507.4675,040.67164,929,192.167,961,504,218.931,875,370,718.850.0019,688,585,793.63-13,602,452,293.5529,080,984,241.8115,478,531,948.250.00171,982,275,354.97171,982,275,354.97428,339,834,599.82412,861,302,651.56
$30-40K17,736,589.61381,854,894,845.1117,046,740.79263,096,924,324.43689,848.8212,387,919,569.850.00174,989,880,139.4718,346,077,378.18371,899,134,017.5175,492.93125,432,048.5518,471,509,426.734,603,991,211.650.0017,388,363,887.03-3,520,845,671.9546,407,835,987.3942,886,990,315.440.00206,160,434,771.93206,160,434,771.93616,009,613,532.50573,122,623,217.07
$40-50K16,038,156.69494,227,036,125.3615,044,391.49247,672,042,886.98993,765.2016,502,743,206.420.00272,043,149,421.3629,103,332,473.72481,828,736,671.499,603.238,549,171.4229,111,881,645.137,306,095,576.980.0012,934,258,984.668,871,527,083.5058,315,440,877.2467,186,967,960.730.00188,658,068,033.12188,658,068,033.12715,188,765,757.58648,001,797,796.85
$50-75K28,640,345.811,211,092,558,100.1425,077,985.21475,490,439,468.423,562,360.6070,218,952,910.800.00748,597,203,468.9186,483,565,663.931,158,566,049,984.89162,148.00349,617,520.1586,833,183,184.0816,306,595,116.550.0017,329,044,274.0753,197,543,793.45137,562,118,539.89190,759,662,333.340.00468,552,761,008.91468,552,761,008.911,746,413,447,453.151,555,653,785,119.81
$75-100K19,033,701.161,208,491,172,976.9515,007,745.56308,747,501,672.724,025,955.6090,391,246,611.860.00842,047,259,805.89108,295,578,164.281,145,140,306,290.0475,495.58433,577,567.10108,729,155,731.3814,978,991,857.000.004,808,383,524.1888,941,780,350.20127,155,139,373.30216,096,919,723.500.00387,647,203,276.46387,647,203,276.461,640,945,145,893.611,424,848,226,170.11
$100-200K34,805,109.143,737,958,839,403.0522,004,087.39496,861,098,358.6212,801,021.75362,983,052,977.340.002,910,065,909,913.36419,733,423,204.253,491,787,348,561.97129,344.4292,353,770.75419,825,776,975.0036,058,571,561.290.002,457,277,482.42381,309,927,931.29386,979,618,151.90768,289,546,083.190.00881,850,329,919.00881,850,329,919.004,787,904,682,789.834,019,615,136,706.64
$200-500K11,523,722.112,534,288,944,947.445,053,727.97119,196,548,899.796,469,994.13209,331,891,807.190.002,205,043,057,843.21405,734,345,549.072,389,852,747,231.0286,286.19283,733,901.52406,018,079,450.5812,416,832,031.051,328,573,740.53799,840,449.44394,129,980,710.62213,772,249,957.66607,902,230,668.290.00470,213,408,116.38470,213,408,116.383,142,060,304,736.332,534,158,074,068.05
$500-1000K914,355.81563,381,328,408.78219,691.985,515,016,750.76694,663.8427,749,938,317.750.00528,028,453,598.13129,226,815,879.59542,723,499,804.688,102.8845,730,931.45129,272,546,811.0446,297,028.661,522,369,742.99126,290,171.10130,622,329,354.2825,501,659,220.57156,123,988,574.850.0030,260,841,559.0430,260,841,559.04609,423,646,252.16453,299,657,677.31
>$1000K294,823.63629,846,582,452.8218,686.06377,411,611.22276,137.5714,217,717,953.540.00612,478,959,242.34186,024,249,800.41618,441,371,364.2930,344.46451,469,682.86186,475,719,483.275,530,557.795,619,661,222.630.00192,089,850,148.1117,547,042,679.93209,636,892,828.040.003,103,117,880.713,103,117,880.71647,373,592,821.94437,736,699,993.89
ALL172,188,405.3211,148,820,450,109.93142,124,153.972,467,818,387,420.8030,064,251.35812,344,241,333.040.008,388,138,881,353.841,392,041,615,947.5510,580,746,389,953.83670,422.021,957,466,833.421,393,999,082,780.9793,977,910,410.568,470,604,706.1593,567,707,418.371,214,924,069,658.191,060,349,092,012.802,275,273,161,670.990.002,911,227,435,120.622,911,227,435,120.6214,587,322,022,226.2012,312,048,860,555.21
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_2tax_cut_2perc_cut_2tax_inc_2perc_inc_2mean_2tot_change_2share_of_change_2ubi_2benefit_cost_total_2benefit_value_total_2pc_aftertaxinc_2
<$0K60,367.680.000.00287.170.480.7645,882.270.010.00760,228,445.45760,228,445.45-0.02
=$0K1,078,448.480.000.000.000.000.000.000.000.000.000.00nan
$0-10K11,480,730.7075,141.910.65269,551.582.350.202,275,286.600.310.0016,347,613,660.4616,347,613,660.460.73
$10-20K13,490,083.1848,782.060.36142,035.371.050.131,718,017.720.230.0085,691,153,094.1985,691,153,094.190.64
$20-30K17,091,971.3184,146.000.49457,604.852.680.569,603,307.051.310.00171,982,275,354.97171,982,275,354.970.69
$30-40K17,736,589.6148,082.340.271,101,119.816.212.4242,860,191.225.850.00206,160,434,771.93206,160,434,771.930.81
$40-50K16,038,156.6933,054.690.211,015,364.626.332.6642,667,436.425.820.00188,658,068,033.12188,658,068,033.120.89
$50-75K28,640,345.814,993.670.021,403,723.104.902.4469,815,229.999.530.00468,552,761,008.91468,552,761,008.910.86
$75-100K19,033,701.160.000.00986,368.005.182.8854,810,801.777.480.00387,647,203,276.46387,647,203,276.460.86
$100-200K34,805,109.1431,448.470.092,834,618.588.146.38222,085,776.7530.320.00881,850,329,919.00881,850,329,919.000.92
$200-500K11,523,722.11114,140.100.99958,435.348.3215.51178,784,347.7124.410.00470,213,408,116.38470,213,408,116.380.76
$500-1000K914,355.8112,656.871.38160,131.8717.5181.8374,825,915.6710.210.0030,260,841,559.0430,260,841,559.040.38
>$1000K294,823.6318,123.316.1575,497.5625.61112.1433,062,180.074.510.003,103,117,880.713,103,117,880.710.12
ALL172,188,405.32470,569.400.279,404,737.865.464.25732,554,373.24100.000.002,911,227,435,120.622,911,227,435,120.620.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_2tax_cut_2perc_cut_2tax_inc_2perc_inc_2mean_2tot_change_2share_of_change_2ubi_2benefit_cost_total_2benefit_value_total_2pc_aftertaxinc_2
<$0K60,367.684,110.996.810.000.00-46.60-2,813,017.030.000.00760,228,445.45760,228,445.45-0.02
=$0K1,078,448.480.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,480,730.708,383,500.5373.020.000.00-64.36-738,844,199.320.390.0016,347,613,660.4616,347,613,660.460.73
$10-20K13,490,083.189,367,274.7669.440.000.00-193.32-2,607,870,844.771.370.0085,691,153,094.1985,691,153,094.190.64
$20-30K17,091,971.3111,386,826.9766.620.000.00-314.90-5,382,339,549.032.830.00171,982,275,354.97171,982,275,354.970.69
$30-40K17,736,589.6112,644,973.7471.290.000.00-482.94-8,565,662,623.464.510.00206,160,434,771.93206,160,434,771.930.81
$40-50K16,038,156.6912,244,845.7176.350.000.00-672.64-10,787,964,106.765.680.00188,658,068,033.12188,658,068,033.120.89
$50-75K28,640,345.8122,488,716.0878.520.000.00-890.31-25,498,698,452.3713.410.00468,552,761,008.91468,552,761,008.910.86
$75-100K19,033,701.1614,735,103.6377.420.000.00-1,239.61-23,594,389,790.5912.410.00387,647,203,276.46387,647,203,276.460.86
$100-200K34,805,109.1428,263,995.1081.210.000.00-2,057.12-71,598,342,245.9237.670.00881,850,329,919.00881,850,329,919.000.92
$200-500K11,523,722.119,784,027.4084.900.000.00-3,223.70-37,149,040,319.4319.540.00470,213,408,116.38470,213,408,116.380.76
$500-1000K914,355.81789,437.6786.340.000.00-3,479.51-3,181,511,178.501.670.0030,260,841,559.0430,260,841,559.040.38
>$1000K294,823.63279,682.1794.86427.440.14-3,311.39-976,276,919.830.510.003,103,117,880.713,103,117,880.710.12
ALL172,188,405.32130,372,494.7575.72427.440.00-1,103.93-190,083,753,247.01100.000.002,911,227,435,120.622,911,227,435,120.620.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_2tax_cut_2perc_cut_2tax_inc_2perc_inc_2mean_2tot_change_2share_of_change_2ubi_2benefit_cost_total_2benefit_value_total_2pc_aftertaxinc_2
<$0K60,367.684,110.996.810.000.00-45.84-2,767,134.750.000.00760,228,445.45760,228,445.45-0.02
=$0K1,078,448.480.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,480,730.708,383,500.5373.020.000.00-64.16-736,568,912.730.390.0016,347,613,660.4616,347,613,660.460.73
$10-20K13,490,083.189,367,274.7669.440.000.00-193.19-2,606,152,827.051.380.0085,691,153,094.1985,691,153,094.190.64
$20-30K17,091,971.3111,386,826.9766.620.000.00-314.34-5,372,736,241.982.840.00171,982,275,354.97171,982,275,354.970.69
$30-40K17,736,589.6112,644,973.7471.290.000.00-480.52-8,522,802,432.244.500.00206,160,434,771.93206,160,434,771.930.81
$40-50K16,038,156.6912,244,845.7176.350.000.00-669.98-10,745,296,670.335.670.00188,658,068,033.12188,658,068,033.120.89
$50-75K28,640,345.8122,488,716.0878.520.000.00-887.87-25,428,883,222.3813.430.00468,552,761,008.91468,552,761,008.910.86
$75-100K19,033,701.1614,735,103.6377.420.000.00-1,236.73-23,539,578,988.8112.430.00387,647,203,276.46387,647,203,276.460.86
$100-200K34,805,109.1428,263,995.1081.210.000.00-2,050.74-71,376,256,469.1837.700.00881,850,329,919.00881,850,329,919.000.92
$200-500K11,523,722.119,784,027.4084.900.000.00-3,208.19-36,970,255,971.7319.520.00470,213,408,116.38470,213,408,116.380.76
$500-1000K914,355.81789,437.6786.340.000.00-3,397.68-3,106,685,262.831.640.0030,260,841,559.0430,260,841,559.040.38
>$1000K294,823.63279,682.1794.86427.440.14-3,199.25-943,214,739.760.500.003,103,117,880.713,103,117,880.710.12
ALL172,188,405.32130,372,494.7575.72427.440.00-1,099.67-189,351,198,873.76100.000.002,911,227,435,120.622,911,227,435,120.620.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_2c00100_2num_returns_StandardDed_2standard_2num_returns_ItemDed_2c04470_2c04600_2c04800_2taxbc_2c62100_2num_returns_AMT_2c09600_2c05800_2c07100_2othertaxes_2refund_2iitax_2payrolltax_2combined_2ubi_2benefit_cost_total_2benefit_value_total_2expanded_income_2aftertax_income_2
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,193,844.2766,450,040,759.9817,140,793.07185,003,629,645.7553,051.20444,025,892.400.002,611,611,302.69155,740,518.1666,040,302,217.130.000.00155,740,518.1651,576,290.660.008,484,638,332.13-8,380,474,104.6410,092,563,872.501,712,089,767.870.0032,936,328,257.3232,936,328,257.32100,905,064,010.7699,192,974,242.90
10-2017,232,515.26181,453,532,278.3216,946,734.09237,686,074,248.12285,781.174,708,137,823.960.0041,532,965,262.533,843,865,405.58177,450,579,736.8524,636.516,464,205.763,850,329,611.34818,490,777.780.0017,763,888,366.88-14,732,049,533.3126,037,435,951.7411,305,386,418.430.00149,661,855,373.27149,661,855,373.27342,780,539,572.92331,475,153,154.50
20-3017,222,609.97300,038,681,294.6016,716,244.56254,104,699,462.08506,365.418,154,138,265.750.00117,588,292,142.0512,126,015,126.26293,493,984,420.5087,991.66203,220,610.0112,329,235,736.263,238,324,908.680.0019,646,867,543.59-10,555,956,716.0143,161,481,638.9132,605,524,922.900.00190,653,404,829.11190,653,404,829.11515,790,018,377.27483,184,493,454.37
30-4017,212,709.97455,324,674,342.8216,347,081.30259,759,833,251.86865,628.6715,370,506,533.870.00231,904,203,241.7324,423,042,936.75443,267,835,727.2356,469.0882,749,472.4124,505,792,409.165,846,066,641.850.0015,721,365,927.032,938,359,840.2964,670,492,108.2467,608,851,948.520.00191,701,313,593.40191,701,313,593.40683,311,657,495.95615,702,805,547.43
40-5017,220,296.42583,970,751,984.0715,756,523.58276,434,312,681.561,463,772.8425,692,245,459.960.00335,849,434,026.9736,293,160,714.42564,312,020,319.20109,283.73168,727,896.5536,461,888,610.978,658,816,760.090.0012,739,018,725.9315,064,053,124.9479,635,086,304.9994,699,139,429.930.00243,092,410,136.52243,092,410,136.52868,901,416,360.32774,202,276,930.39
50-6017,204,850.92761,049,965,438.8614,923,580.38284,665,980,405.012,281,270.5446,588,044,729.680.00476,063,639,629.2755,690,041,814.63726,309,857,376.6760,084.48178,678,535.3955,868,720,350.019,899,541,610.770.0010,226,127,653.9835,743,051,085.25102,126,315,377.82137,869,366,463.070.00290,691,617,684.73290,691,617,684.731,101,685,880,920.66963,816,514,457.59
60-7017,227,244.021,028,287,075,056.2313,895,396.11281,886,212,145.393,331,847.9070,420,343,891.100.00709,403,399,954.1590,409,997,958.32979,450,435,141.3477,878.60444,352,799.9990,854,350,758.3113,276,531,751.070.004,561,369,897.8773,016,449,109.37130,838,739,390.19203,855,188,499.550.00344,417,298,737.35344,417,298,737.351,422,049,422,207.481,218,194,233,707.93
70-8017,208,157.971,401,492,744,935.3712,462,816.33270,639,379,694.274,745,341.64128,393,987,344.810.001,027,397,390,055.09133,652,368,316.851,310,636,652,881.0333,404.7154,059,580.40133,706,427,897.2514,736,291,355.100.002,242,972,534.91116,727,164,007.23171,055,270,515.65287,782,434,522.880.00398,946,245,003.28398,946,245,003.281,856,931,022,351.961,569,148,587,829.08
80-9017,244,708.952,000,258,574,426.1210,180,120.21235,239,170,339.017,064,588.74203,936,929,305.620.001,569,175,854,641.88228,499,355,506.011,863,385,738,383.1068,945.9824,882,994.37228,524,238,500.3819,664,494,987.490.001,056,970,383.59207,802,773,129.30247,052,529,697.78454,855,302,827.080.00409,724,249,724.56409,724,249,724.562,528,775,956,186.152,073,920,653,359.07
90-10017,221,467.584,366,496,352,072.827,757,412.46182,433,285,822.929,464,055.12308,606,534,989.420.003,872,911,857,594.54806,251,335,945.874,152,416,050,511.57149,672.43807,580,801.69807,058,916,747.5617,749,878,182.148,468,920,296.411,209,813,519.30796,568,145,342.53375,762,930,402.001,172,331,075,744.530.00659,402,711,781.07659,402,711,781.075,257,343,555,304.904,085,012,479,560.37
ALL172,188,405.3211,144,822,392,589.19142,126,702.092,467,852,577,695.9730,061,703.23812,314,894,236.570.008,384,438,647,850.901,391,344,924,242.8410,576,763,456,714.62668,367.181,970,716,896.561,393,315,641,139.4093,940,013,265.648,468,920,296.4193,653,032,885.221,214,191,515,284.951,250,432,845,259.812,464,624,360,544.760.002,911,227,435,120.622,911,227,435,120.6214,678,474,532,788.3812,213,850,172,243.62
90-958,611,117.401,351,833,372,258.374,558,216.36107,373,973,785.924,052,901.03119,096,087,928.840.001,128,117,465,740.64186,514,276,808.311,272,511,769,532.6036,480.1854,996,473.73186,569,273,282.039,475,142,120.5023,132,906.95520,838,961.72176,596,425,106.76157,202,962,159.94333,799,387,266.700.00292,609,779,525.19292,609,779,525.191,724,689,833,032.121,390,890,445,765.42
95-996,888,388.401,614,196,714,473.842,775,956.3864,564,889,100.864,112,432.02136,055,324,980.760.001,414,928,178,602.69265,079,735,544.191,519,689,533,671.8055,142.09172,073,177.66265,251,808,721.857,777,613,858.14986,115,951.55545,223,702.22257,915,087,113.04155,827,103,372.64413,742,190,485.680.00318,318,736,041.69318,318,736,041.692,043,259,158,464.421,629,516,967,978.74
Top 1%1,721,961.791,400,466,265,340.61423,239.7210,494,422,936.141,298,722.0753,455,122,079.830.001,329,866,213,251.21354,657,323,593.381,360,214,747,307.1658,050.16580,511,150.31355,237,834,743.68497,122,203.507,459,671,437.92143,750,855.36362,056,633,122.7462,732,864,869.42424,789,497,992.160.0048,474,196,214.1948,474,196,214.191,489,394,563,808.371,064,605,065,816.21
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_2c00100_2num_returns_StandardDed_2standard_2num_returns_ItemDed_2c04470_2c04600_2c04800_2taxbc_2c62100_2num_returns_AMT_2c09600_2c05800_2c07100_2othertaxes_2refund_2iitax_2payrolltax_2combined_2ubi_2benefit_cost_total_2benefit_value_total_2expanded_income_2aftertax_income_2
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,193,844.2766,456,986,737.2117,140,793.07185,003,629,645.7553,051.20444,025,892.400.002,611,611,302.69155,740,518.1666,047,248,194.350.000.00155,740,518.1651,576,290.660.008,481,756,967.93-8,377,592,740.438,510,459,707.89132,866,967.460.0032,936,328,257.3232,936,328,257.32100,120,957,905.6899,988,090,938.23
10-2017,232,515.26181,544,377,028.6616,945,949.34237,676,469,877.79286,565.914,718,941,814.750.0041,575,192,514.593,848,088,130.78177,535,392,884.5024,636.516,464,205.763,854,552,336.54819,315,193.830.0017,762,894,661.77-14,727,657,519.0621,966,774,849.057,239,117,329.980.00149,661,855,373.27149,661,855,373.27340,836,053,771.93333,596,936,441.94
20-3017,222,609.97300,320,133,177.7116,714,669.77254,084,729,485.65507,940.208,174,442,431.250.00117,755,965,171.8012,143,583,196.21293,761,775,029.5687,991.66203,220,610.0112,346,803,806.223,242,005,007.010.0019,633,556,862.83-10,528,758,063.6336,433,320,076.5925,904,562,012.970.00190,653,404,829.11190,653,404,829.11512,707,389,479.23486,802,827,466.26
30-4017,212,709.97455,719,699,462.6716,347,081.30259,759,833,251.86865,628.6715,368,310,396.090.00232,229,017,056.5724,457,572,140.92443,665,606,019.2956,469.0882,749,472.4124,540,321,613.325,854,269,770.470.0015,701,191,277.362,984,860,565.4954,584,875,766.6457,569,736,332.130.00191,701,313,593.40191,701,313,593.40678,660,224,223.86621,090,487,891.74
40-5017,220,296.42584,240,967,113.2415,756,523.58276,434,312,681.561,463,772.8425,692,168,969.970.00336,088,134,631.2036,318,591,682.32564,582,331,060.84109,283.73168,727,896.5536,487,319,578.878,667,324,773.560.0012,719,653,235.2815,100,341,570.0367,183,261,457.5282,283,603,027.560.00243,092,410,136.52243,092,410,136.52862,941,550,196.72780,657,947,169.16
50-6017,204,850.92761,408,660,943.3014,923,580.38284,665,980,405.012,281,270.5446,587,921,009.100.00476,400,512,389.0655,728,660,847.66726,668,619,142.6560,084.48178,663,562.1355,907,324,409.799,908,636,212.210.0010,213,731,974.0335,784,956,223.5586,157,071,864.39121,942,028,087.940.00290,691,617,684.73290,691,617,684.731,094,038,004,899.87972,095,976,811.93
60-7017,227,244.021,028,662,602,546.2213,895,396.11281,886,212,145.393,331,847.9070,419,737,581.650.00709,754,075,158.7090,462,037,872.00979,826,720,518.1677,878.60444,352,799.9990,906,390,671.9913,281,897,511.540.004,553,879,468.2073,070,613,692.25110,365,308,118.75183,435,921,811.000.00344,417,298,737.35344,417,298,737.351,412,147,600,403.471,228,711,678,592.47
70-8017,208,157.971,401,862,477,113.1412,462,627.75270,634,763,765.874,745,530.22128,400,346,264.470.001,027,742,067,864.98133,699,646,083.141,311,002,278,996.8733,404.7154,059,580.40133,753,705,663.5414,737,557,519.370.002,240,459,959.47116,775,688,184.70144,276,471,038.30261,052,159,223.000.00398,946,245,003.28398,946,245,003.281,843,897,207,456.041,582,845,048,233.04
80-9017,244,708.952,000,965,196,616.3510,180,120.21235,239,170,339.017,064,588.74203,935,366,884.080.001,569,862,940,908.69228,640,108,001.791,864,093,661,697.3268,945.9827,092,313.47228,667,200,315.2619,667,264,716.200.001,053,496,541.14207,946,439,057.93208,459,165,547.08416,405,604,605.010.00409,724,249,724.56409,724,249,724.562,510,178,187,280.982,093,772,582,675.97
90-10017,221,467.584,367,639,349,371.447,757,412.46182,433,285,822.929,464,055.12308,602,980,089.270.003,874,119,364,355.56806,587,587,474.574,153,562,756,410.29151,727.27792,136,392.71807,379,723,867.2817,748,063,415.708,470,604,706.151,207,086,470.35796,895,178,687.37322,412,383,586.591,119,307,562,273.960.00659,402,711,781.07659,402,711,781.075,231,794,846,608.434,112,487,284,334.47
ALL172,188,405.3211,148,820,450,109.94142,124,153.972,467,818,387,420.8030,064,251.35812,344,241,333.040.008,388,138,881,353.841,392,041,615,947.5510,580,746,389,953.83670,422.021,957,466,833.421,393,999,082,780.9793,977,910,410.568,470,604,706.1593,567,707,418.371,214,924,069,658.191,060,349,092,012.802,275,273,161,670.990.002,911,227,435,120.622,911,227,435,120.6214,587,322,022,226.2112,312,048,860,555.21
90-958,611,117.401,352,153,727,778.884,558,216.36107,373,973,785.924,052,901.03119,095,360,889.530.001,128,440,630,500.59186,586,109,439.571,272,832,627,696.6838,535.0255,833,064.29186,641,942,503.869,476,236,093.8323,157,770.36518,454,073.21176,670,410,107.18132,977,725,241.01309,648,135,348.190.00292,609,779,525.19292,609,779,525.191,712,897,054,367.581,403,248,919,019.39
95-996,888,388.401,614,582,793,234.942,775,956.3864,564,889,100.864,112,432.02136,052,822,395.870.001,415,356,010,857.89265,189,057,001.561,520,078,728,315.2455,142.09159,607,758.73265,348,664,760.297,775,784,299.16987,353,759.95545,126,995.38258,015,107,225.70132,896,616,986.61390,911,724,212.310.00318,318,736,041.69318,318,736,041.692,032,177,963,627.591,641,266,239,415.28
Top 1%1,721,961.791,400,902,828,357.62423,239.7210,494,422,936.141,298,722.0753,454,796,803.880.001,330,322,722,997.08354,812,421,033.441,360,651,400,398.3658,050.16576,695,569.69355,389,116,603.13496,043,022.717,460,093,175.84143,505,401.77362,209,661,354.4956,538,041,358.97418,747,702,713.460.0048,474,196,214.1948,474,196,214.191,486,719,828,613.251,067,972,125,899.79
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_2tax_cut_2perc_cut_2tax_inc_2perc_inc_2mean_2tot_change_2share_of_change_2ubi_2benefit_cost_total_2benefit_value_total_2pc_aftertaxinc_2
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p17,193,844.2775,141.910.44323,256.841.880.172,881,364.200.390.0032,936,328,257.3232,936,328,257.320.80
10-2017,232,515.2688,676.490.51299,714.411.740.254,392,014.250.600.00149,661,855,373.27149,661,855,373.270.64
20-3017,222,609.9773,689.530.43754,249.084.381.5827,198,652.393.710.00190,653,404,829.11190,653,404,829.110.75
30-4017,212,709.9747,662.180.281,172,514.656.812.7046,500,725.206.350.00191,701,313,593.40191,701,313,593.400.88
40-5017,220,296.424,301.220.02832,099.564.832.1136,288,445.094.950.00243,092,410,136.52243,092,410,136.520.83
50-6017,204,850.924,729.330.03838,612.774.872.4441,905,138.295.720.00290,691,617,684.73290,691,617,684.730.86
60-7017,227,244.020.000.00908,165.835.273.1454,164,582.887.390.00344,417,298,737.35344,417,298,737.350.86
70-8017,208,157.979,045.440.051,335,463.287.762.8248,524,177.476.620.00398,946,245,003.28398,946,245,003.280.87
80-9017,244,708.9511,774.850.071,461,542.338.488.33143,665,928.6319.610.00409,724,249,724.56409,724,249,724.560.96
90-10017,221,467.58155,548.440.901,479,119.098.5918.99327,033,344.8444.640.00659,402,711,781.07659,402,711,781.070.67
ALL172,188,405.32470,569.400.279,404,737.865.464.25732,554,373.24100.000.002,911,227,435,120.622,911,227,435,120.620.80
90-958,611,117.4013,348.320.16648,574.147.538.5973,985,000.4210.100.00292,609,779,525.19292,609,779,525.190.89
95-996,888,388.40101,416.071.47487,841.467.0814.52100,020,112.6613.650.00318,318,736,041.69318,318,736,041.690.72
Top 1%1,721,961.7940,784.052.37342,703.5019.9088.87153,028,231.7620.890.0048,474,196,214.1948,474,196,214.190.32
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_2tax_cut_2perc_cut_2tax_inc_2perc_inc_2mean_2tot_change_2share_of_change_2ubi_2benefit_cost_total_2benefit_value_total_2pc_aftertaxinc_2
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,193,844.2712,151,255.9470.670.000.00-92.02-1,582,104,164.620.830.0032,936,328,257.3232,936,328,257.320.80
10-2017,232,515.2611,042,519.9064.080.000.00-236.22-4,070,661,102.692.140.00149,661,855,373.27149,661,855,373.270.64
20-3017,222,609.9711,787,593.1968.440.000.00-390.66-6,728,161,562.323.540.00190,653,404,829.11190,653,404,829.110.75
30-4017,212,709.9713,021,956.6975.650.000.00-585.94-10,085,616,341.605.310.00191,701,313,593.40191,701,313,593.400.88
40-5017,220,296.4212,798,491.8474.320.000.00-723.09-12,451,824,847.466.550.00243,092,410,136.52243,092,410,136.520.83
50-6017,204,850.9213,811,457.5580.280.000.00-928.18-15,969,243,513.438.400.00290,691,617,684.73290,691,617,684.730.86
60-7017,227,244.0213,496,843.8678.350.000.00-1,188.43-20,473,431,271.4410.770.00344,417,298,737.35344,417,298,737.350.86
70-8017,208,157.9713,333,967.6877.490.000.00-1,556.17-26,778,799,477.3514.090.00398,946,245,003.28398,946,245,003.280.87
80-9017,244,708.9514,398,566.2983.500.000.00-2,237.98-38,593,364,150.7020.300.00409,724,249,724.56409,724,249,724.560.96
90-10017,221,467.5814,529,841.8184.37427.440.00-3,097.91-53,350,546,815.4028.070.00659,402,711,781.07659,402,711,781.070.67
ALL172,188,405.32130,372,494.7575.72427.440.00-1,103.93-190,083,753,247.01100.000.002,911,227,435,120.622,911,227,435,120.620.80
90-958,611,117.407,335,676.0785.190.000.00-2,813.25-24,225,236,918.9212.740.00292,609,779,525.19292,609,779,525.190.89
95-996,888,388.405,651,943.9482.050.000.00-3,328.86-22,930,486,386.0312.060.00318,318,736,041.69318,318,736,041.690.72
Top 1%1,721,961.791,542,221.8189.56427.440.02-3,597.54-6,194,823,510.453.260.0048,474,196,214.1948,474,196,214.190.32
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_2tax_cut_2perc_cut_2tax_inc_2perc_inc_2mean_2tot_change_2share_of_change_2ubi_2benefit_cost_total_2benefit_value_total_2pc_aftertaxinc_2
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,193,844.2712,151,255.9470.670.000.00-91.85-1,579,222,800.410.830.0032,936,328,257.3232,936,328,257.320.80
10-2017,232,515.2611,042,519.9064.080.000.00-235.96-4,066,269,088.442.150.00149,661,855,373.27149,661,855,373.270.64
20-3017,222,609.9711,787,593.1968.440.000.00-389.08-6,700,962,909.933.540.00190,653,404,829.11190,653,404,829.110.75
30-4017,212,709.9713,021,956.6975.650.000.00-583.24-10,039,115,616.405.300.00191,701,313,593.40191,701,313,593.400.88
40-5017,220,296.4212,798,491.8474.320.000.00-720.98-12,415,536,402.376.560.00243,092,410,136.52243,092,410,136.520.83
50-6017,204,850.9213,811,457.5580.280.000.00-925.75-15,927,338,375.138.410.00290,691,617,684.73290,691,617,684.730.86
60-7017,227,244.0213,496,843.8678.350.000.00-1,185.29-20,419,266,688.5610.780.00344,417,298,737.35344,417,298,737.350.86
70-8017,208,157.9713,333,967.6877.490.000.00-1,553.35-26,730,275,299.8814.120.00398,946,245,003.28398,946,245,003.280.87
80-9017,244,708.9514,398,566.2983.500.000.00-2,229.65-38,449,698,222.0720.310.00409,724,249,724.56409,724,249,724.560.96
90-10017,221,467.5814,529,841.8184.37427.440.00-3,078.92-53,023,513,470.5728.000.00659,402,711,781.07659,402,711,781.070.67
ALL172,188,405.32130,372,494.7575.72427.440.00-1,099.67-189,351,198,873.76100.000.002,911,227,435,120.622,911,227,435,120.620.80
90-958,611,117.407,335,676.0785.190.000.00-2,804.66-24,151,251,918.5112.750.00292,609,779,525.19292,609,779,525.190.89
95-996,888,388.405,651,943.9482.050.000.00-3,314.34-22,830,466,273.3712.060.00318,318,736,041.69318,318,736,041.690.72
Top 1%1,721,961.791,542,221.8189.56427.440.02-3,508.67-6,041,795,278.693.190.0048,474,196,214.1948,474,196,214.190.32
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_3.json b/webapp/apps/taxbrain/tests/response_year_3.json index bcd2eefb..097752d8 100644 --- a/webapp/apps/taxbrain/tests/response_year_3.json +++ b/webapp/apps/taxbrain/tests/response_year_3.json @@ -1 +1 @@ -{"aggr_1": {"payroll_tax_3": "1356359394779.51", "combined_tax_3": "2706603454573.49", "ind_tax_3": "1350244059793.98"}, "aggr_2": {"payroll_tax_3": "2006732320502.09", "combined_tax_3": "3849266851855.20", "ind_tax_3": "1842534531353.11"}, "diff_ptax_xdec": {"0-10n_3": ["94422.60", "0.00", "0.00", "20366.56", "21.57", "265.97", "25113832.87", "0.00", "1993392534.76", "999576693.47", "999576693.47", "-7.12"], "70-80_3": ["17686326.74", "0.00", "0.00", "14203802.39", "80.31", "5276.02", "93313401069.40", "14.35", "450546385077.19", "407955417589.25", "407955417589.25", "19.49"], "0-10p_3": ["16326695.24", "0.00", "0.00", "12025243.14", "73.65", "306.70", "5007455195.89", "0.77", "221711349029.54", "34922060589.91", "34922060589.91", "188.00"], "50-60_3": ["17687060.12", "0.00", "0.00", "13833012.16", "78.21", "3102.63", "54876337883.15", "8.44", "390833171219.44", "293856229264.28", "293856229264.28", "30.20"], "20-30_3": ["17686642.33", "0.00", "0.00", "12459126.74", "70.44", "1293.38", "22875616135.59", "3.52", "308068249578.64", "179343601372.40", "179343601372.40", "52.02"], "Top 1%_3": ["1768729.92", "1048.95", "0.06", "1552834.36", "87.79", "11724.66", "20737761136.28", "3.19", "49971918504.86", "77776796811.75", "77776796811.75", "1.82"], "ALL_3": ["176868871.73", "1048.95", "0.00", "134327923.84", "75.95", "3677.15", "650372925722.58", "100.00", "3777563672298.08", "3000335393604.24", "3000335393604.24", "21.86"], "80-90_3": ["17687155.68", "0.00", "0.00", "14568517.87", "82.37", "7268.13", "128552577826.98", "19.77", "480375591282.32", "477859191513.38", "477859191513.38", "14.28"], "90-95_3": ["8842841.42", "0.00", "0.00", "7521523.03", "85.06", "9595.57", "84852073707.42", "13.05", "249590649765.81", "278841041805.42", "278841041805.42", "10.02"], "90-100_3": ["17687278.71", "1048.95", "0.01", "15196291.89", "85.92", "10605.37", "187580065638.12", "28.84", "503798935357.26", "646376180795.79", "646376180795.79", "6.37"], "0-10z_3": ["1265191.47", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "24153187482.21", "0.00", "0.00", "inf"], "10-20_3": ["17687440.59", "0.00", "0.00", "11518844.67", "65.12", "778.14", "13763250975.94", "2.12", "281045850628.77", "142117220945.67", "142117220945.67", "71.66"], "30-40_3": ["17685886.55", "0.00", "0.00", "12903436.47", "72.96", "1758.40", "31098862665.58", "4.78", "332284860625.55", "221943957942.67", "221943957942.67", "42.49"], "95-99_3": ["7075707.37", "0.00", "0.00", "6121934.50", "86.52", "11587.57", "81990230794.42", "12.61", "204236367086.59", "289758342178.61", "289758342178.61", "6.37"], "40-50_3": ["17687587.29", "0.00", "0.00", "13579197.63", "76.77", "2389.78", "42269411260.57", "6.50", "363259307346.01", "249655509647.52", "249655509647.52", "36.06"], "60-70_3": ["17687184.41", "0.00", "0.00", "14020084.32", "79.27", "4014.82", "71010833238.49", "10.92", "419493392136.39", "345306447249.90", "345306447249.90", "24.96"]}, "diff_comb_xbin": {"$200-500K_3": ["13763904.26", "0.00", "0.00", "13327763.03", "96.83", "17065.45", "234887254728.14", "20.56", "393521868580.97", "512116182091.56", "512116182091.56", "7.53"], ">$1000K_3": ["395726.46", "132.97", "0.03", "395300.44", "99.89", "21464.88", "8494221812.18", "0.74", "11181819354.81", "7162496594.72", "7162496594.72", "0.80"], "ALL_3": ["176868871.73", "132.97", "0.00", "150247353.97", "84.95", "6460.51", "1142663397281.72", "100.00", "3777563672298.08", "3000335393604.24", "3000335393604.24", "21.86"], "$30-40K_3": ["17693276.34", "0.00", "0.00", "13674573.25", "77.29", "3293.78", "58277767277.12", "5.10", "319434861808.30", "199784845578.51", "199784845578.51", "46.67"], "<$0K_3": ["94422.60", "0.00", "0.00", "23553.50", "24.94", "440.69", "41611172.31", "0.00", "1993392534.76", "999576693.47", "999576693.47", "-7.12"], "$75-100K_3": ["19715157.68", "0.00", "0.00", "17934004.94", "90.97", "6854.39", "135135366070.92", "11.83", "468110779822.28", "387849099291.25", "387849099291.25", "24.79"], "$500-1000K_3": ["1144877.43", "0.00", "0.00", "1133247.62", "98.98", "20033.21", "22935570855.56", "2.01", "32152632823.75", "55759044179.87", "55759044179.87", "2.55"], "$20-30K_3": ["17853536.36", "0.00", "0.00", "12543758.31", "70.26", "2424.21", "43280758954.81", "3.79", "295979520251.88", "170571871835.27", "170571871835.27", "59.59"], "$100-200K_3": ["36262826.70", "0.00", "0.00", "34269501.75", "94.50", "11027.96", "399904952967.77", "35.00", "961204051592.78", "923328223714.30", "923328223714.30", "15.87"], "$10-20K_3": ["13125254.12", "0.00", "0.00", "9703981.50", "73.93", "1594.36", "20926342306.92", "1.83", "201206824418.24", "74747520872.28", "74747520872.28", "90.73"], "=$0K_3": ["1265191.47", "0.00", "0.00", "377321.07", "29.82", "377.92", "478143518.88", "0.04", "24153187482.21", "0.00", "0.00", "inf"], "$50-75K_3": ["28403227.80", "0.00", "0.00", "24770239.80", "87.21", "5202.80", "147776385240.26", "12.93", "612978581410.97", "448967886738.26", "448967886738.26", "31.93"], "$40-50K_3": ["15518967.94", "0.00", "0.00", "12755859.19", "82.20", "3967.46", "61570837700.43", "5.39", "303483509647.99", "201822782512.17", "201822782512.17", "39.76"], "$0-10K_3": ["11632502.57", "0.00", "0.00", "9338249.57", "80.28", "769.76", "8954184676.41", "0.78", "152162642569.12", "17225863502.57", "17225863502.57", "268.59"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"0-10n_3": ["94422.60", "-11779870428.45", "17630.02", "2037552429.04", "62.98", "9118296.04", "0.00", "854000862.18", "209345898.49", "-11788319196.08", "0.00", "0.00", "209345898.49", "1284687.73", "2474087.52", "259210.07", "210276088.21", "78638253.87", "288914342.08", "1993392534.76", "999576693.47", "999576693.47", "-24446541364.69", "-24735455706.77"], "70-80_3": ["17686326.74", "1952353213949.63", "14675588.98", "388674395089.78", "3007196.97", "87653778399.32", "0.00", "1475170245425.32", "212171212523.81", "1890439170103.09", "61292.29", "222919019.11", "212394131542.92", "20314849637.83", "0.00", "412937668.41", "191666344236.68", "281814712791.38", "473481057028.05", "450546385077.19", "407955417589.25", "407955417589.25", "2479876527051.52", "2006395470023.46"], "0-10p_3": ["16326695.24", "296806561472.19", "15920777.41", "212626895402.05", "397567.53", "4679123817.53", "0.00", "96628478615.91", "9682001083.55", "292431224576.37", "4277029.88", "4083918934.95", "13765920018.50", "4675005999.33", "0.00", "7026999008.71", "2063915010.46", "15095656547.68", "17159571558.14", "221711349029.54", "34922060589.91", "34922060589.91", "335051363745.90", "317891792187.76"], "50-60_3": ["17687060.12", "1218653236260.48", "16417765.39", "380594701475.30", "1263551.96", "31830714901.93", "0.00", "809634458873.25", "102582308202.13", "1194061762819.73", "160009.86", "456729510.56", "103039037712.69", "17437022308.29", "0.00", "1172792843.80", "84429222560.59", "165924107938.44", "250353330499.04", "390833171219.44", "293856229264.28", "293856229264.28", "1590306053798.49", "1339952723299.46"], "20-30_3": ["17686642.33", "629392492100.51", "17236130.28", "330377728698.59", "441065.84", "9930694415.08", "0.00", "303823944149.61", "32891365604.00", "620818004429.73", "597675.21", "1037757651.93", "33929123255.94", "10286478937.90", "0.00", "5415548740.65", "18227095577.38", "69446259240.32", "87673354817.70", "308068249578.64", "179343601372.40", "179343601372.40", "845329009858.25", "757655655040.55"], "Top 1%_3": ["1768729.92", "1615728519213.38", "567714.70", "16321833810.28", "1200881.30", "55020633869.25", "0.00", "1538560005998.46", "411849314887.01", "1573534225842.91", "94425.61", "1013737974.29", "412863052861.30", "161495237.99", "8349173173.90", "22831815.61", "421027898981.61", "88793571226.67", "509821470208.27", "49971918504.86", "77776796811.75", "77776796811.75", "1756138408673.30", "1246316938465.02"], "ALL_3": ["176868871.73", "15929799931649.43", "154836256.55", "3393797885536.44", "21889933.96", "685608083009.03", "0.00", "11916005860555.06", "1998452130960.64", "15434193143099.58", "7835130.23", "11154493438.12", "2009606624398.76", "148434486327.45", "10344727753.97", "28982334472.17", "1842534531353.11", "2006732320502.09", "3849266851855.20", "3777563672298.08", "3000335393604.24", "3000335393604.24", "19911615087163.74", "16062348235308.54"], "80-90_3": ["17687155.68", "2609871626531.10", "12805866.64", "358160452636.11", "4876438.34", "159046774731.36", "0.00", "2085677590376.80", "331677273248.15", "2499968983459.87", "90424.67", "205440660.65", "331882713908.79", "21722468222.41", "349819.20", "249576953.47", "309911018552.11", "388754771031.96", "698665789584.07", "480375591282.32", "477859191513.38", "477859191513.38", "3269662392035.50", "2570996602451.43"], "90-95_3": ["8842841.42", "1775433865382.09", "5423076.23", "157682710707.29", "3416478.17", "117283241770.93", "0.00", "1495510269685.20", "262317096888.58", "1693821267933.38", "48210.07", "99086845.81", "262416183734.38", "11111950224.66", "153515317.60", "72698310.78", "251385050516.54", "259128473026.02", "510513523542.55", "249590649765.81", "278841041805.42", "278841041805.42", "2188888429820.01", "1678374906277.46"], "90-100_3": ["17687278.71", "5448545566182.01", "9521947.05", "276925899492.81", "8161182.09", "302103483523.86", "0.00", "4850769203806.46", "1028273014387.39", "5232204638401.08", "226723.60", "1371335664.85", "1029644350052.24", "19878316735.02", "10341903847.25", "170399623.99", "1019937537540.48", "607069688907.76", "1627007226448.25", "503798935357.26", "646376180795.79", "646376180795.79", "6442011266516.68", "4815004040068.43"], "0-10z_3": ["1265191.47", "24138080650.12", "1253357.84", "26330779736.04", "11501.60", "17385598.62", "0.00", "2356156671.66", "244577861.16", "24122915685.89", "322806.87", "457449075.49", "702026936.65", "223883417.78", "0.00", "0.00", "478143518.88", "0.00", "478143518.88", "24153187482.21", "0.00", "0.00", "24153187482.21", "23675043963.34"], "10-20_3": ["17687440.59", "475883946417.16", "17354573.40", "313170035792.96", "327028.47", "5667252878.10", "0.00", "180246890126.68", "18801991331.37", "470847805984.12", "1410133.77", "1729362557.63", "20531353889.00", "6641959520.66", "0.00", "9002079049.08", "4887315319.27", "41601394614.55", "46488709933.81", "281045850628.77", "142117220945.67", "142117220945.67", "636050369066.56", "589561659132.75"], "30-40_3": ["17685886.55", "775110895452.67", "17078864.13", "347220125380.78", "597960.97", "13170481683.66", "0.00", "423562218934.74", "46931262141.71", "764177202500.92", "364407.44", "741470282.23", "47672732423.94", "12557861989.89", "0.00", "2937951716.66", "32176918717.39", "94379449300.28", "126556368017.68", "332284860625.55", "221943957942.67", "221943957942.67", "1048377199640.01", "921820831622.33"], "95-99_3": ["7075707.37", "2057383181586.55", "3531156.12", "102921354975.24", "3543822.62", "129799607883.68", "0.00", "1816698928122.79", "354106602611.80", "1964849144624.80", "84087.92", "258510844.76", "354365113456.56", "8604871272.38", "1839215355.75", "74869497.60", "347524588042.34", "259147644655.08", "606672232697.42", "204236367086.59", "289758342178.61", "289758342178.61", "2496984428023.37", "1890312195325.95"], "40-50_3": ["17687587.29", "978394721373.46", "16791102.62", "365047926134.40", "887484.57", "20367206797.46", "0.00", "597595253762.58", "69856430681.53", "962182278486.81", "241020.41", "564814853.61", "70421245535.15", "15693901883.41", "0.00", "1881071724.63", "52846271927.11", "127975841800.08", "180822113727.18", "363259307346.01", "249655509647.52", "249655509647.52", "1293762648056.84", "1112940534329.65"], "60-70_3": ["17687184.41", "1532429461688.54", "15762652.79", "392631393268.55", "1918892.64", "51132067966.06", "0.00", "1089687418949.87", "145131347997.34", "1494727475848.05", "83606.23", "283295227.10", "145414643224.45", "19001452987.19", "0.00", "712717932.71", "125700472304.55", "214591800075.77", "340292272380.32", "419493392136.39", "345306447249.90", "345306447249.90", "1971481611276.48", "1631189338896.15"]}, "aggr_d": {"payroll_tax_3": "650372925722.58", "combined_tax_3": "1142663397281.72", "ind_tax_3": "492290471559.13"}, "dropq_version": "0.17.0", "dist1_xdec": {"0-10n_3": ["94422.60", "-13770613646.74", "5661.21", "1705209328.64", "62.98", "9118296.04", "0.00", "775681173.86", "192174324.80", "-13779062414.37", "0.00", "0.00", "192174324.80", "684060.00", "2474087.52", "185603.55", "193778748.77", "53524421.00", "247303169.77", "0.00", "1064781791.90", "1064781791.90", "-26384636400.99", "-26631939570.76"], "70-80_3": ["17686326.74", "1502973642749.63", "11646129.88", "281206876235.63", "5311451.55", "141147712713.37", "0.00", "1106291728634.76", "144218285473.92", "1405639356607.45", "25522.45", "109518645.32", "144327804119.24", "18269476169.12", "0.00", "2922273495.13", "123136054454.98", "188501311721.98", "311637366176.96", "0.00", "414956230033.22", "414956230033.22", "1990809105775.80", "1679171739598.84"], "0-10p_3": ["16326695.24", "75108204140.90", "13777153.07", "178422272086.78", "31277.08", "298292511.43", "0.00", "2653258458.87", "168393442.42", "74818887076.68", "9334.25", "3772232.89", "172165675.31", "74093073.95", "0.00", "8681424322.46", "-8583351721.10", "10088201351.79", "1504849630.69", "0.00", "35956041967.03", "35956041967.03", "111883260193.78", "110378410563.09"], "50-60_3": ["17687060.12", "828873863410.02", "14048247.54", "300598208041.01", "2350373.84", "50724998241.73", "0.00", "524990556828.39", "61456721359.60", "791355009520.96", "35754.51", "121558659.02", "61578280018.62", "12036685211.10", "0.00", "8550952041.88", "40990642765.64", "111047770055.30", "152038412820.94", "0.00", "302011073881.41", "302011073881.41", "1181195141492.82", "1029156728671.88"], "20-30_3": ["17686642.33", "322234386948.84", "14056069.45", "267770779448.60", "627181.66", "12800036342.06", "0.00", "124856819027.31", "12732299859.96", "311414590641.67", "34793.19", "50737117.99", "12783036977.95", "3334978609.85", "0.00", "21077754276.56", "-11629695908.45", "46570643104.73", "34940947196.27", "0.00", "185944593053.40", "185944593053.40", "533333675954.23", "498392728757.96"], "Top 1%_3": ["1768729.92", "1567361886113.42", "445380.76", "11361190205.59", "1305186.31", "57884101806.57", "0.00", "1492633247370.46", "396626323413.95", "1523364557831.26", "91845.61", "944999821.81", "397571323235.76", "133783599.13", "8277081005.31", "128342004.99", "405586278636.94", "68055810090.39", "473642088727.33", "0.00", "78114819799.30", "78114819799.30", "1697688141265.79", "1224046052538.46"], "ALL_3": ["176868871.73", "12165334889077.47", "125603147.92", "2605781762401.00", "32407322.54", "936981722732.22", "0.00", "9201786321704.02", "1542529387605.51", "11505790881394.72", "465072.19", "1948577757.38", "1544477965362.89", "105018077324.08", "9776388429.12", "98992216673.95", "1350244059793.98", "1356359394779.51", "2706603454573.49", "0.00", "3065743077057.54", "3065743077057.54", "15887095462390.27", "13180492007816.79"], "80-90_3": ["17687155.68", "2131381169984.89", "9464915.47", "240290838017.66", "7661134.43", "230974376160.51", "0.00", "1672171614074.03", "244933067381.45", "1976265199407.49", "39334.79", "99707333.07", "245032774714.52", "20655665145.99", "0.00", "1482357645.76", "222894751922.77", "260202193204.98", "483096945127.75", "0.00", "483866812617.74", "483866812617.74", "2732883494089.92", "2249786548962.16"], "90-95_3": ["8842841.42", "1527025838391.28", "3985359.37", "103679723614.27", "4671001.73", "151957831096.93", "0.00", "1272968615514.63", "211955778012.57", "1423303433338.10", "29685.30", "63867844.12", "212019645856.68", "10926357510.55", "43317691.71", "429997314.33", "200706608723.52", "174276399318.59", "374983008042.11", "0.00", "281239574538.98", "281239574538.98", "1900442588907.13", "1525459580865.02"], "90-100_3": ["17687278.71", "4949132815940.87", "7021769.55", "183230110257.20", "10312040.23", "361627397968.94", "0.00", "4396706771568.78", "917230988339.04", "4695118988969.99", "185177.09", "1242738737.30", "918473727076.34", "19943867090.98", "9773914341.60", "1016921176.88", "907286853150.08", "419489623269.64", "1326776476419.72", "0.00", "650954895271.91", "650954895271.91", "5853311779085.43", "4526535302665.71"], "0-10z_3": ["1265191.47", "-15106832.09", "0.00", "22068566326.21", "0.00", "0.00", "0.00", "0.00", "0.00", "-15106832.09", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "10-20_3": ["17687440.59", "195067182394.74", "13155595.95", "255402000472.13", "313496.32", "6226767291.38", "0.00", "43100737170.65", "4113751558.70", "189549556979.81", "45897.55", "36049899.09", "4149801457.79", "1055223760.95", "0.00", "18538989160.99", "-15444411464.15", "27838143638.60", "12393732174.46", "0.00", "149606545798.43", "149606545798.43", "355841304408.93", "343447572234.47"], "30-40_3": ["17685886.55", "444020147136.51", "14596583.70", "282854409938.79", "801327.01", "16196931704.62", "0.00", "216962731558.40", "23000743797.69", "430827908540.02", "29061.31", "68101915.47", "23068845713.16", "5587904635.21", "0.00", "17545898923.14", "-64957845.19", "63280586634.71", "63215628789.52", "0.00", "230392886352.97", "230392886352.97", "710174005355.65", "646958376566.13"], "95-99_3": ["7075707.37", "1854745091436.17", "2591029.42", "68189196437.34", "4335852.19", "151785465065.45", "0.00", "1631104908683.68", "308648886912.52", "1748450997800.62", "63646.18", "233871071.38", "308882757983.89", "8883725981.30", "1453515644.59", "458581857.56", "300993965789.62", "177157413860.66", "478151379650.28", "0.00", "291600500933.62", "291600500933.62", "2255181048912.51", "1777029669262.23"], "40-50_3": ["17687587.29", "616250156325.59", "14702897.28", "295248029577.37", "1383735.60", "28264406936.66", "0.00", "348682835993.82", "37635596763.43", "594388543876.50", "31860.86", "108729875.06", "37744326638.50", "8727720096.01", "0.00", "13823135216.44", "15193471326.05", "85706430539.50", "100899901865.55", "0.00", "258072728129.26", "258072728129.26", "918858812368.43", "817958910502.87"], "60-70_3": ["17687184.41", "1114079040524.32", "13128124.82", "296984462670.99", "3615241.84", "88711684565.47", "0.00", "764593587215.16", "96847365304.50", "1050207009020.61", "28336.19", "107663342.17", "96955028646.67", "15331779470.92", "0.00", "5352324811.16", "76270924364.58", "143580966837.28", "219851891201.86", "0.00", "352916488160.27", "352916488160.27", "1525189520066.29", "1305337628864.43"]}, "diff_comb_xdec": {"0-10n_3": ["94422.60", "0.00", "0.00", "23553.50", "24.94", "440.69", "41611172.31", "0.00", "1993392534.76", "999576693.47", "999576693.47", "-7.12"], "70-80_3": ["17686326.74", "0.00", "0.00", "16471487.70", "93.13", "9150.78", "161843690851.09", "14.16", "450546385077.19", "407955417589.25", "407955417589.25", "19.49"], "0-10p_3": ["16326695.24", "0.00", "0.00", "13169478.90", "80.66", "958.84", "15654721927.45", "1.37", "221711349029.54", "34922060589.91", "34922060589.91", "188.00"], "50-60_3": ["17687060.12", "0.00", "0.00", "15600769.96", "88.20", "5558.58", "98314917678.10", "8.60", "390833171219.44", "293856229264.28", "293856229264.28", "30.20"], "20-30_3": ["17686642.33", "0.00", "0.00", "13248416.61", "74.91", "2981.48", "52732407621.43", "4.61", "308068249578.64", "179343601372.40", "179343601372.40", "52.02"], "Top 1%_3": ["1768729.92", "132.97", "0.01", "1749361.23", "98.90", "20455.01", "36179381480.94", "3.17", "49971918504.86", "77776796811.75", "77776796811.75", "1.82"], "ALL_3": ["176868871.73", "132.97", "0.00", "150247353.97", "84.95", "6460.51", "1142663397281.72", "100.00", "3777563672298.08", "3000335393604.24", "3000335393604.24", "21.86"], "80-90_3": ["17687155.68", "0.00", "0.00", "16839751.18", "95.21", "12187.88", "215568844456.32", "18.87", "480375591282.32", "477859191513.38", "477859191513.38", "14.28"], "90-95_3": ["8842841.42", "0.00", "0.00", "8562112.13", "96.83", "15326.58", "135530515500.44", "11.86", "249590649765.81", "278841041805.42", "278841041805.42", "10.02"], "90-100_3": ["17687278.71", "132.97", "0.00", "17165842.73", "97.05", "16974.39", "300230750028.53", "26.27", "503798935357.26", "646376180795.79", "646376180795.79", "6.37"], "0-10z_3": ["1265191.47", "0.00", "0.00", "377321.07", "29.82", "377.92", "478143518.88", "0.04", "24153187482.21", "0.00", "0.00", "inf"], "10-20_3": ["17687440.59", "0.00", "0.00", "12181004.91", "68.87", "1927.64", "34094977759.36", "2.98", "281045850628.77", "142117220945.67", "142117220945.67", "71.66"], "30-40_3": ["17685886.55", "0.00", "0.00", "14009142.49", "79.21", "3581.43", "63340739228.15", "5.54", "332284860625.55", "221943957942.67", "221943957942.67", "42.49"], "95-99_3": ["7075707.37", "0.00", "0.00", "6854369.37", "96.87", "18163.68", "128520853047.14", "11.25", "204236367086.59", "289758342178.61", "289758342178.61", "6.37"], "40-50_3": ["17687587.29", "0.00", "0.00", "15067556.40", "85.19", "4518.55", "79922211861.63", "6.99", "363259307346.01", "249655509647.52", "249655509647.52", "36.06"], "60-70_3": ["17687184.41", "0.00", "0.00", "16093028.52", "90.99", "6809.47", "120440381178.46", "10.54", "419493392136.39", "345306447249.90", "345306447249.90", "24.96"]}, "diff_ptax_xbin": {"$200-500K_3": ["13763904.26", "0.00", "0.00", "11836803.33", "86.00", "10813.56", "148836842542.25", "22.88", "393521868580.97", "512116182091.56", "512116182091.56", "7.53"], ">$1000K_3": ["395726.46", "1048.95", "0.27", "361054.16", "91.24", "11875.56", "4699473692.65", "0.72", "11181819354.81", "7162496594.72", "7162496594.72", "0.80"], "ALL_3": ["176868871.73", "1048.95", "0.00", "134327923.84", "75.95", "3677.15", "650372925722.58", "100.00", "3777563672298.08", "3000335393604.24", "3000335393604.24", "21.86"], "$30-40K_3": ["17693276.34", "0.00", "0.00", "12724661.72", "71.92", "1516.12", "26825140436.12", "4.12", "319434861808.30", "199784845578.51", "199784845578.51", "46.67"], "<$0K_3": ["94422.60", "0.00", "0.00", "20366.56", "21.57", "265.97", "25113832.87", "0.00", "1993392534.76", "999576693.47", "999576693.47", "-7.12"], "$75-100K_3": ["19715157.68", "0.00", "0.00", "15631885.16", "79.29", "4041.02", "79669279525.55", "12.25", "468110779822.28", "387849099291.25", "387849099291.25", "24.79"], "$500-1000K_3": ["1144877.43", "0.00", "0.00", "996561.93", "87.05", "11489.28", "13153821927.43", "2.02", "32152632823.75", "55759044179.87", "55759044179.87", "2.55"], "$20-30K_3": ["17853536.36", "0.00", "0.00", "11835931.78", "66.29", "1006.73", "17973635076.62", "2.76", "295979520251.88", "170571871835.27", "170571871835.27", "59.59"], "$100-200K_3": ["36262826.70", "0.00", "0.00", "29595893.33", "81.61", "6507.92", "235995749010.16", "36.29", "961204051592.78", "923328223714.30", "923328223714.30", "15.87"], "$10-20K_3": ["13125254.12", "0.00", "0.00", "9189005.01", "70.01", "625.85", "8214434366.62", "1.26", "201206824418.24", "74747520872.28", "74747520872.28", "90.73"], "=$0K_3": ["1265191.47", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "24153187482.21", "0.00", "0.00", "inf"], "$50-75K_3": ["28403227.80", "0.00", "0.00", "22062944.19", "77.68", "2855.30", "81099807917.87", "12.47", "612978581410.97", "448967886738.26", "448967886738.26", "31.93"], "$40-50K_3": ["15518967.94", "0.00", "0.00", "11675159.82", "75.23", "2026.46", "31448547160.62", "4.84", "303483509647.99", "201822782512.17", "201822782512.17", "39.76"], "$0-10K_3": ["11632502.57", "0.00", "0.00", "8397656.85", "72.19", "208.99", "2431080233.84", "0.37", "152162642569.12", "17225863502.57", "17225863502.57", "268.59"]}, "dist2_xbin": {"$200-500K_3": ["13763904.26", "3495971999634.47", "7511426.73", "219042898032.83", "6248800.67", "223853989263.47", "0.00", "3041188220630.78", "575395180746.13", "3337760191871.52", "118955.08", "340143071.73", "575735323817.85", "16809078485.92", "2173832022.49", "141609096.69", "560958468257.72", "464502554805.10", "1025461023062.82", "393521868580.97", "512116182091.56", "512116182091.56", "4267204437918.22", "3241743414855.40"], ">$1000K_3": ["395726.46", "806987319070.68", "62662.23", "1756810234.07", "332942.49", "18474833366.83", "0.00", "784456432863.17", "228917328569.54", "792057092616.03", "61619.84", "849109725.69", "229766438295.23", "7693290.58", "6540227983.05", "22288.04", "236298950699.67", "29432639957.54", "265731590657.21", "11181819354.81", "7162496594.72", "7162496594.72", "836428706670.62", "570697116013.41"], "ALL_3": ["176868871.73", "15929799931649.43", "154836256.55", "3393797885536.44", "21889933.96", "685608083009.03", "0.00", "11916005860555.06", "1998452130960.64", "15434193143099.58", "7835130.23", "11154493438.12", "2009606624398.76", "148434486327.45", "10344727753.97", "28982334472.17", "1842534531353.11", "2006732320502.09", "3849266851855.20", "3777563672298.08", "3000335393604.24", "3000335393604.24", "19911615087163.74", "16062348235308.54"], "$30-40K_3": ["17693276.34", "698437311981.59", "17188413.14", "338818468556.60", "497346.94", "11203606756.57", "0.00", "359686559176.08", "39420243123.86", "688904045676.99", "435308.52", "866969831.83", "40287212955.70", "11407169987.13", "0.00", "4024400134.97", "24855642833.59", "81451792873.20", "106307435706.79", "319434861808.30", "199784845578.51", "199784845578.51", "942268223901.60", "835960788194.81"], "<$0K_3": ["94422.60", "-11779870428.45", "17630.02", "2037552429.04", "62.98", "9118296.04", "0.00", "854000862.18", "209345898.49", "-11788319196.08", "0.00", "0.00", "209345898.49", "1284687.73", "2474087.52", "259210.07", "210276088.21", "78638253.87", "288914342.08", "1993392534.76", "999576693.47", "999576693.47", "-24446541364.69", "-24735455706.77"], "$75-100K_3": ["19715157.68", "1718605851576.92", "17526152.74", "437205642577.72", "2182136.33", "58473884648.74", "0.00", "1224180975457.08", "163340763722.71", "1675542029098.86", "97551.21", "331811185.67", "163672574908.38", "21119661444.57", "0.00", "780975649.57", "141771937814.24", "240744975681.64", "382516913495.87", "468110779822.28", "387849099291.25", "387849099291.25", "2211545041253.39", "1829028127757.51"], "$500-1000K_3": ["1144877.43", "711670245691.52", "402286.73", "11525241619.61", "742578.52", "31566873754.48", "0.00", "665531897865.33", "163458680434.60", "688052297756.76", "27948.94", "146160856.72", "163604841291.33", "112791319.97", "1626374253.65", "20244026.69", "165098180198.31", "49675783571.20", "214773963769.51", "32152632823.75", "55759044179.87", "55759044179.87", "801673601119.13", "586899637349.61"], "$20-30K_3": ["17853536.36", "548392060154.88", "17491384.98", "325376319569.64", "353528.77", "6966790131.38", "0.00", "236976643541.98", "25274496379.17", "542372462367.83", "820862.98", "1298751066.04", "26573247445.21", "8355297823.70", "0.00", "7234688514.18", "10983261107.33", "54465176289.52", "65448437396.86", "295979520251.88", "170571871835.27", "170571871835.27", "745914340937.58", "680465903540.72"], "$100-200K_3": ["36262826.70", "4851730678670.08", "27749385.52", "758436465180.68", "8505894.08", "268865274600.10", "0.00", "3814854418184.33", "589888968105.06", "4664706873848.17", "160787.25", "431399347.45", "590320367452.51", "43409555416.28", "1819407.26", "623702392.42", "546288929051.08", "713609122615.67", "1259898051666.74", "961204051592.78", "923328223714.30", "923328223714.30", "6099182682924.97", "4839284631258.23"], "$10-20K_3": ["13125254.12", "319804112170.84", "12827816.34", "222969657351.68", "290296.01", "4614519552.11", "0.00", "107036707815.21", "10843182388.94", "315587414707.80", "2253598.84", "2062636632.38", "12905819021.32", "4283639189.36", "0.00", "8404216612.68", "217963219.28", "24794611631.03", "25012574850.31", "201206824418.24", "74747520872.28", "74747520872.28", "403117379259.05", "378104804408.74"], "=$0K_3": ["1265191.47", "24138080650.12", "1253357.84", "26330779736.04", "11501.60", "17385598.62", "0.00", "2356156671.66", "244577861.16", "24122915685.89", "322806.87", "457449075.49", "702026936.65", "223883417.78", "0.00", "0.00", "478143518.88", "0.00", "478143518.88", "24153187482.21", "0.00", "0.00", "24153187482.21", "23675043963.34"], "$50-75K_3": ["28403227.80", "1822948805168.15", "26585714.69", "603864441618.98", "1804750.02", "44336666237.47", "0.00", "1180615078776.33", "146262953075.72", "1788377086817.07", "287101.01", "791349020.03", "147054302095.75", "26986608899.13", "0.00", "2254362142.65", "117813331053.98", "245327622951.61", "363140954005.59", "612978581410.97", "448967886738.26", "448967886738.26", "2390368111099.07", "2027227157093.48"], "$40-50K_3": ["15518967.94", "753515407692.06", "14872556.58", "310507881212.84", "640056.94", "14212443096.49", "0.00", "434670915110.31", "48808608754.77", "741962490907.26", "296538.08", "580281421.93", "49388890176.69", "12477646570.40", "0.00", "2088967841.59", "34822275764.70", "95321492715.51", "130143768480.21", "303483509647.99", "201822782512.17", "201822782512.17", "1006286618246.81", "876142849766.60"], "$0-10K_3": ["11632502.57", "189377929616.56", "11347469.01", "135925727416.71", "280038.61", "3012697706.73", "0.00", "63597853600.62", "6387801900.48", "186536560941.50", "2952051.61", "2998432203.15", "9386234103.63", "3240175794.89", "0.00", "3408886562.62", "2737171746.12", "7327909156.22", "10065080902.34", "152162642569.12", "17225863502.57", "17225863502.57", "207919297715.79", "197854216813.45"]}, "diff_itax_xdec": {"0-10n_3": ["94422.60", "833.09", "0.88", "5088.16", "5.39", "174.72", "16497339.44", "0.00", "1993392534.76", "999576693.47", "999576693.47", "-7.12"], "70-80_3": ["17686326.74", "2078.39", "0.01", "16396917.60", "92.71", "3874.76", "68530289781.70", "13.92", "450546385077.19", "407955417589.25", "407955417589.25", "19.49"], "0-10p_3": ["16326695.24", "345727.87", "2.12", "9210775.71", "56.42", "652.14", "10647266731.56", "2.16", "221711349029.54", "34922060589.91", "34922060589.91", "188.00"], "50-60_3": ["17687060.12", "57.58", "0.00", "15496544.42", "87.62", "2455.95", "43438579794.95", "8.82", "390833171219.44", "293856229264.28", "293856229264.28", "30.20"], "20-30_3": ["17686642.33", "9962.27", "0.06", "12920779.41", "73.05", "1688.10", "29856791485.83", "6.06", "308068249578.64", "179343601372.40", "179343601372.40", "52.02"], "Top 1%_3": ["1768729.92", "13.09", "0.00", "1748415.73", "98.85", "8730.34", "15441620344.66", "3.14", "49971918504.86", "77776796811.75", "77776796811.75", "1.82"], "ALL_3": ["176868871.73", "417301.48", "0.24", "144573699.25", "81.74", "2783.36", "492290471559.13", "100.00", "3777563672298.08", "3000335393604.24", "3000335393604.24", "21.86"], "80-90_3": ["17687155.68", "1795.14", "0.01", "16791420.18", "94.94", "4919.74", "87016266629.34", "17.68", "480375591282.32", "477859191513.38", "477859191513.38", "14.28"], "90-95_3": ["8842841.42", "85.95", "0.00", "8542353.29", "96.60", "5731.01", "50678441793.02", "10.29", "249590649765.81", "278841041805.42", "278841041805.42", "10.02"], "90-100_3": ["17687278.71", "186.02", "0.00", "17134955.68", "96.88", "6369.02", "112650684390.40", "22.88", "503798935357.26", "646376180795.79", "646376180795.79", "6.37"], "0-10z_3": ["1265191.47", "0.00", "0.00", "377321.07", "29.82", "377.92", "478143518.88", "0.10", "24153187482.21", "0.00", "0.00", "inf"], "10-20_3": ["17687440.59", "34547.22", "0.20", "11584448.46", "65.50", "1149.50", "20331726783.41", "4.13", "281045850628.77", "142117220945.67", "142117220945.67", "71.66"], "30-40_3": ["17685886.55", "8968.81", "0.05", "13749122.63", "77.74", "1823.03", "32241876562.58", "6.55", "332284860625.55", "221943957942.67", "221943957942.67", "42.49"], "95-99_3": ["7075707.37", "86.98", "0.00", "6844186.66", "96.73", "6576.11", "46530622252.72", "9.45", "204236367086.59", "289758342178.61", "289758342178.61", "6.37"], "40-50_3": ["17687587.29", "3977.24", "0.02", "14926251.68", "84.39", "2128.77", "37652800601.06", "7.65", "363259307346.01", "249655509647.52", "249655509647.52", "36.06"], "60-70_3": ["17687184.41", "9167.85", "0.05", "15980074.25", "90.35", "2794.65", "49429547939.97", "10.04", "419493392136.39", "345306447249.90", "345306447249.90", "24.96"]}, "diff_itax_xbin": {"$200-500K_3": ["13763904.26", "172.93", "0.00", "13300634.15", "96.63", "6251.89", "86050412185.89", "17.48", "393521868580.97", "512116182091.56", "512116182091.56", "7.53"], ">$1000K_3": ["395726.46", "0.00", "0.00", "395310.74", "99.89", "9589.32", "3794748119.53", "0.77", "11181819354.81", "7162496594.72", "7162496594.72", "0.80"], "ALL_3": ["176868871.73", "417301.48", "0.24", "144573699.25", "81.74", "2783.36", "492290471559.13", "100.00", "3777563672298.08", "3000335393604.24", "3000335393604.24", "21.86"], "$30-40K_3": ["17693276.34", "10087.85", "0.06", "13384396.31", "75.65", "1777.66", "31452626841.01", "6.39", "319434861808.30", "199784845578.51", "199784845578.51", "46.67"], "<$0K_3": ["94422.60", "833.09", "0.88", "5088.16", "5.39", "174.72", "16497339.44", "0.00", "1993392534.76", "999576693.47", "999576693.47", "-7.12"], "$75-100K_3": ["19715157.68", "9301.90", "0.05", "17807798.45", "90.33", "2813.37", "55466086545.37", "11.27", "468110779822.28", "387849099291.25", "387849099291.25", "24.79"], "$500-1000K_3": ["1144877.43", "13.09", "0.00", "1132919.45", "98.96", "8543.93", "9781748928.14", "1.99", "32152632823.75", "55759044179.87", "55759044179.87", "2.55"], "$20-30K_3": ["17853536.36", "14629.75", "0.08", "12117740.73", "67.87", "1417.49", "25307123878.19", "5.14", "295979520251.88", "170571871835.27", "170571871835.27", "59.59"], "$100-200K_3": ["36262826.70", "3739.48", "0.01", "34155591.76", "94.19", "4520.03", "163909203957.60", "33.30", "961204051592.78", "923328223714.30", "923328223714.30", "15.87"], "$10-20K_3": ["13125254.12", "51649.70", "0.39", "8803512.65", "67.07", "968.51", "12711907940.31", "2.58", "201206824418.24", "74747520872.28", "74747520872.28", "90.73"], "=$0K_3": ["1265191.47", "0.00", "0.00", "377321.07", "29.82", "377.92", "478143518.88", "0.10", "24153187482.21", "0.00", "0.00", "inf"], "$50-75K_3": ["28403227.80", "1166.86", "0.00", "24586288.21", "86.56", "2347.50", "66676577322.39", "13.54", "612978581410.97", "448967886738.26", "448967886738.26", "31.93"], "$40-50K_3": ["15518967.94", "6490.92", "0.04", "12574900.42", "81.03", "1941.00", "30122290539.81", "6.12", "303483509647.99", "201822782512.17", "201822782512.17", "39.76"], "$0-10K_3": ["11632502.57", "319215.91", "2.74", "5932197.15", "51.00", "560.77", "6523104442.58", "1.33", "152162642569.12", "17225863502.57", "17225863502.57", "268.59"]}, "dist1_xbin": {"$200-500K_3": ["13763904.26", "3105022286904.39", "5519791.77", "144784363455.54", "7954828.08", "271090989151.77", "0.00", "2686433652729.74", "490735003880.80", "2916961093572.53", "88373.78", "302231662.52", "491037235543.31", "16944430651.71", "1669499084.97", "854247904.75", "474908056071.83", "315665712262.85", "790573768334.68", "0.00", "515622988459.81", "515622988459.81", "3805322855862.08", "3014749087527.40"], ">$1000K_3": ["395726.46", "796307013770.80", "50715.26", "1236469284.95", "344027.01", "18756720179.78", "0.00", "774028993852.96", "225216975204.16", "781203584301.52", "57787.81", "773500591.45", "225990475795.61", "7637343.47", "6521400751.96", "36623.96", "232504202580.14", "24733166264.89", "257237368845.03", "0.00", "7204306612.36", "7204306612.36", "823407571074.07", "566170202229.04"], "ALL_3": ["176868871.73", "12165334889077.47", "125603147.92", "2605781762401.00", "32407322.54", "936981722732.22", "0.00", "9201786321704.02", "1542529387605.51", "11505790881394.72", "465072.19", "1948577757.38", "1544477965362.89", "105018077324.08", "9776388429.12", "98992216673.95", "1350244059793.98", "1356359394779.51", "2706603454573.49", "0.00", "3065743077057.54", "3065743077057.54", "15887095462390.27", "13180492007816.79"], "$30-40K_3": ["17693276.34", "380101093511.54", "14407122.49", "275242594493.36", "695904.50", "14119821122.78", "0.00", "167428917651.06", "17523961483.93", "368347339621.72", "39593.44", "77735607.05", "17601697090.97", "4431712449.82", "0.00", "19766968648.57", "-6596984007.41", "54626652437.08", "48029668429.67", "0.00", "207246965671.96", "207246965671.96", "617976889497.60", "569947221067.93"], "<$0K_3": ["94422.60", "-13770613646.74", "5661.21", "1705209328.64", "62.98", "9118296.04", "0.00", "775681173.86", "192174324.80", "-13779062414.37", "0.00", "0.00", "192174324.80", "684060.00", "2474087.52", "185603.55", "193778748.77", "53524421.00", "247303169.77", "0.00", "1064781791.90", "1064781791.90", "-26384636400.99", "-26631939570.76"], "$75-100K_3": ["19715157.68", "1251754678175.32", "14596566.50", "330771360674.28", "4062810.18", "100372567563.20", "0.00", "860978233937.07", "109116960236.59", "1179501335336.05", "36926.71", "134616314.01", "109251576550.61", "17096677357.24", "0.00", "5849047924.50", "86305851268.86", "161075696156.09", "247381547424.95", "0.00", "396153413235.01", "396153413235.01", "1713112763155.17", "1465731215730.22"], "$500-1000K_3": ["1144877.43", "680499746818.25", "322887.50", "8113161276.73", "812410.81", "33494098737.57", "0.00", "636083107738.73", "153759512302.07", "655660362277.85", "28354.11", "145442004.63", "153904954306.70", "72977609.36", "1583014504.67", "98559931.83", "155316431270.17", "36521961643.78", "191838392913.95", "0.00", "55979437551.34", "55979437551.34", "764128077004.62", "572289684090.68"], "$20-30K_3": ["17853536.36", "252952634404.70", "13606954.22", "264285043627.96", "454267.31", "8890892275.05", "0.00", "80585155786.03", "7916673220.32", "245358333433.10", "37594.61", "40363678.13", "7957036898.45", "2061175944.13", "0.00", "20219723725.18", "-14323862770.86", "36491541212.91", "22167678442.05", "0.00", "177635304597.54", "177635304597.54", "448551530411.35", "426383851969.30"], "$100-200K_3": ["36262826.70", "3893817876304.43", "21177098.14", "525603091586.11", "13824546.26", "401087788807.61", "0.00", "3001974915478.23", "426808404355.44", "3622011269859.33", "69392.44", "211101605.72", "427019505961.15", "40497097877.67", "0.00", "4142682990.01", "382379725093.47", "477613373605.50", "859993098698.97", "0.00", "936586187959.96", "936586187959.96", "5036478434273.71", "4176485335574.74"], "$10-20K_3": ["13125254.12", "118673138319.96", "10211468.58", "183454148309.36", "146079.18", "3020859068.95", "0.00", "11947649068.52", "1072025902.26", "115913731926.35", "28402.40", "16038052.16", "1088063954.42", "289231580.12", "0.00", "13292777095.32", "-12493944721.03", "16580177264.41", "4086232543.38", "0.00", "79200368459.49", "79200368459.49", "202332035812.07", "198245803268.68"], "=$0K_3": ["1265191.47", "-15106832.09", "0.00", "22068566326.21", "0.00", "0.00", "0.00", "0.00", "0.00", "-15106832.09", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$50-75K_3": ["28403227.80", "1211733208154.83", "22972122.85", "481336801068.43", "3207468.38", "67897252076.44", "0.00", "743405572665.15", "84816299255.38", "1160972790425.53", "56149.06", "198908638.41", "85015207893.80", "17372404943.54", "0.00", "16506049218.66", "51136753731.59", "164227815033.74", "215364568765.33", "0.00", "462348079597.29", "462348079597.29", "1751906380077.03", "1536541811311.71"], "$40-50K_3": ["15518967.94", "451038942221.37", "12934760.62", "252678852580.11", "879718.32", "18032345166.93", "0.00", "236179698366.92", "25241264542.72", "436638523277.82", "19224.08", "47870314.76", "25289134857.49", "6186649396.91", "0.00", "14402500235.68", "4699985224.90", "63872945554.89", "68572930779.78", "0.00", "209232191733.35", "209232191733.35", "695474554785.59", "626901624005.81"], "$0-10K_3": ["11632502.57", "37219990970.71", "9797998.78", "114502100389.31", "25199.53", "209270286.09", "0.00", "1964743255.75", "130132897.04", "37016686609.37", "3273.75", "769288.54", "130902185.58", "57398110.10", "0.00", "3859436771.93", "-3785932696.45", "4896828922.38", "1110896225.92", "0.00", "17469051387.52", "17469051387.52", "54789006837.97", "53678110612.05"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_3\nind_tax,765894396.0322497\npayroll_tax,-197917645038.55484\ncombined_tax,-197151750642.52258\n", "aggr_1": ",0_3\nind_tax,1287401632852.075\npayroll_tax,1303235913589.5222\ncombined_tax,2590637546441.597\n", "aggr_2": ",0_3\nind_tax,1288167527248.1072\npayroll_tax,1105318268550.9673\ncombined_tax,2393485795799.074\n", "dist1_xbin": ",s006_3,c00100_3,num_returns_StandardDed_3,standard_3,num_returns_ItemDed_3,c04470_3,c04600_3,c04800_3,taxbc_3,c62100_3,num_returns_AMT_3,c09600_3,c05800_3,c07100_3,othertaxes_3,refund_3,iitax_3,payrolltax_3,combined_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,expanded_income_3,aftertax_income_3\n<$0K,61182.53805207166,-7483914162.685036,61182.53805207166,1365548029.1721723,0.0,0.0,0.0,0.0,0.0,-7483914162.685036,0.0,0.0,0.0,0.0,0.0,1222777.3486495407,-1222777.3486495407,18663137.44151614,17440360.092866596,0.0,806392077.8193978,806392077.8193978,-6593905535.338049,-6611345895.430916\n=$0K,1093005.801629754,0.0,1093005.801629754,17568979021.094345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11287313.460004035,35084151241.874725,11251229.618049894,104432374750.28084,36083.8419541418,138050919.16641158,0.0,1950693369.1019936,123955236.61282334,34954935082.75716,0.0,0.0,123955236.61282334,54011268.016513534,0.0,3687641270.0174284,-3617697301.4211183,4742980340.760437,1125283039.3393188,0.0,15774945009.24044,15774945009.24044,51302514067.32478,50177231027.98547\n$10-20K,12727845.420635447,110888532199.73477,12634925.921469035,174413493304.893,92919.49916641197,1596647054.2787893,0.0,10702450218.262047,927057914.6036401,109524546630.69762,18814.427770657665,3829777.94982585,930887692.5534658,258214913.68697196,0.0,13518352224.86537,-12845679445.998875,15557796427.147255,2712116981.1483793,0.0,81377729359.80228,81377729359.80228,196377426442.65906,193665309461.5107\n$20-30K,16870686.869712,236121149284.3877,16465637.241239456,244515910941.51587,405049.6284725416,6680922477.906284,0.0,76096830227.4504,7444166983.377153,230560281033.60553,71541.4075227334,181236211.26825786,7625403194.645411,1823309644.6657755,0.0,19868386756.847008,-14066293206.867373,33656131534.73721,19589838327.86983,0.0,168667889040.45544,168667889040.45544,422156794114.4168,402566955786.547\n$30-40K,17463678.30301845,372992820590.5703,16887163.59598224,266348225632.31763,576514.707036216,9944167360.909065,0.0,167222680391.87576,17459606227.926353,365110786618.5991,65156.8952732099,100358806.43917273,17559965034.365524,4281292873.3744087,0.0,17536154819.435673,-4257482658.4445543,53520724768.67752,49263242110.23297,0.0,205745710533.41693,205745710533.41693,608587487548.8999,559324245438.6669\n$40-50K,16538667.089046707,498820639361.4575,15494060.905772835,260651440361.72006,1044606.1832738732,18573100141.597755,0.0,269556952411.61145,28688284033.07294,484727613705.7558,25599.254033131903,45356269.381119676,28733640302.45406,7363635780.09044,0.0,13973986101.692852,7396018420.670771,69798041734.19324,77194060154.864,0.0,206958263509.22443,206958263509.22443,743360311766.717,666166251611.853\n$50-75K,29144476.948253136,1218796540674.3484,25540338.066404395,487236361521.7997,3604138.8818487385,72577230715.33849,0.0,745493251246.8508,85365231883.36842,1164254457451.8271,141182.48141704607,287254873.5007827,85652486756.8692,15990381711.824444,0.0,18326024959.88501,51336080085.15976,163728947343.72122,215065027428.88098,0.0,493969056074.0453,493969056074.0453,1792455762832.1792,1577390735403.2983\n$75-100K,19093247.804029968,1216603402579.882,15104224.533144532,314457455405.6476,3989023.270885435,90021624149.23987,0.0,843324795308.1606,107900364613.7012,1153777548704.748,99669.25659799961,538569606.637301,108438934220.3385,15063868704.204124,0.0,4961364674.243981,88413700841.89041,153444996051.34082,241858696893.23123,0.0,381664922427.8917,381664922427.8917,1653738984285.0212,1411880287391.79\n$100-200K,36449628.387218505,3923640784440.592,22904439.6801937,524860723649.29626,13545188.707024802,390729711987.5277,0.0,3042767226517.4883,436878703770.182,3658141721423.4014,129008.96536701672,92428349.79868618,436971132119.9808,37573945905.4628,0.0,2671472157.5205107,396725714056.99744,481878348455.6439,878604062512.6414,0.0,921216617963.1848,921216617963.1848,5057156583864.035,4178552521351.3945\n$200-500K,12457373.092366263,2730119971942.662,5545659.859631676,134310768446.98254,6911713.232734587,229950918770.78564,0.0,2365818527012.6846,433033111486.4141,2571009328057.968,86229.95425578055,301735744.3281778,433334847230.7423,13499886067.841614,1512624915.0880723,817193708.5549653,420530392369.43384,273786267383.98523,694316659753.4191,0.0,529212975644.1679,529212975644.1679,3425408543653.625,2731091883900.2056\n$500-1000K,978892.4876008318,596386658441.3213,270757.841486684,6913305697.520127,708134.6461141479,28736876911.901646,0.0,558395380307.3843,136636850299.04028,575047712863.7498,9431.861318357618,49268025.35372249,136686118324.394,40792089.37641711,1622847932.6031644,129583004.88623537,138138591162.7345,31380106721.209396,169518697883.9439,0.0,31604611250.635777,31604611250.635777,647507408068.808,477988710184.864\n>$1000K,346957.44843284413,725359587970.9521,21242.778890540678,424017537.6282786,325714.66954230354,17301161056.523445,0.0,704715678089.7352,213128075280.3849,711445074750.3318,30754.37217346121,466514952.1727576,213594590232.55765,6177599.537365023,6061098672.248551,0.0,219649511305.2688,21722909690.664433,241372420995.93323,0.0,4079999831.9743147,4079999831.9743147,746139044229.7998,504766623233.86664\nALL,174512955.65000004,11657330324565.098,143273868.38194683,2537498604299.8687,31239087.2680532,866250411545.175,0.0,8786044465100.606,1467585407728.6836,11051070092160.758,677388.8757293946,2066552616.829804,1469651960345.5137,95955516558.08087,9196571519.939789,95491382455.29768,1287401632852.075,1303235913589.5225,2590637546441.5967,0.0,3041079112721.859,3041079112721.859,15337596955338.148,12746959408896.55\n", "dist2_xbin": ",s006_3,c00100_3,num_returns_StandardDed_3,standard_3,num_returns_ItemDed_3,c04470_3,c04600_3,c04800_3,taxbc_3,c62100_3,num_returns_AMT_3,c09600_3,c05800_3,c07100_3,othertaxes_3,refund_3,iitax_3,payrolltax_3,combined_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,expanded_income_3,aftertax_income_3\n<$0K,61182.53805207166,-7483914162.685036,61182.53805207166,1365548029.1721723,0.0,0.0,0.0,0.0,0.0,-7483914162.685036,0.0,0.0,0.0,0.0,0.0,1207790.4209088325,-1207790.4209088325,15735586.470297921,14527796.049389089,0.0,806392077.8193978,806392077.8193978,-6595369310.823658,-6609897106.873047\n=$0K,1093005.801629754,0.0,1093005.801629754,17568979021.094345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11287313.460004035,35084160393.0255,11251229.618049894,104432374750.28084,36083.8419541418,138050919.16641158,0.0,1950693369.1019936,123955236.61282334,34954944233.90793,0.0,0.0,123955236.61282334,54011268.016513534,0.0,3683745715.3914547,-3613801746.7951446,3998984798.8333263,385183052.0381815,0.0,15774945009.24044,15774945009.24044,50930525447.51201,50545342395.47382\n$10-20K,12727845.420635447,110915001544.60286,12634130.586851569,174403558843.813,93714.83378387775,1608100347.4027984,0.0,10703477126.08207,927160605.3856423,109544545529.7793,18814.427770657665,3829777.94982585,930990383.335468,258274008.5946432,0.0,13518374102.475208,-12845657727.734383,13121332795.759441,275675068.02505714,0.0,81377729359.80228,81377729359.80228,195185663971.83328,194909988903.8082\n$20-30K,16870686.869712,236271754166.83643,16465478.438986385,244513207938.03516,405208.43072561297,6683828619.307932,0.0,76171757691.5961,7451607536.829201,230708732679.69073,71541.4075227334,181236211.26825786,7632843748.097459,1825600848.5915875,0.0,19864625889.473083,-14057382989.967213,28399355384.05849,14341972394.091278,0.0,168667889040.45544,168667889040.45544,419679010921.5262,405337038527.43494\n$30-40K,17463678.30301845,373361374078.77167,16885726.43559194,266330274176.8553,577951.8674265118,9961793780.119993,0.0,167483594063.1444,17487530829.228043,365468138412.58215,65156.8952732099,100358806.43917273,17587889635.667217,4288285718.326336,0.0,17514785753.40708,-4215181836.066199,45180664342.475716,40965482506.409515,0.0,205745710533.41693,205745710533.41693,604786010824.0002,563820528317.5908\n$40-50K,16538667.089046707,499192944673.7705,15494060.905772835,260651440361.72006,1044606.1832738732,18571550689.871628,0.0,269875500734.17572,28721883184.474716,485101855832.72644,25599.254033131903,45356269.381119676,28767239453.855835,7368366211.067852,0.0,13961896672.318802,7436976570.469179,58904455412.21676,66341431982.68594,0.0,206958263509.22443,206958263509.22443,738280598651.0104,671939166668.3245\n$50-75K,29144476.948253136,1219367304780.236,25540338.066404395,487236361521.7997,3604138.8818487385,72577102661.1725,0.0,746009043235.3386,85423210795.16101,1164825290142.6228,141182.48141704607,287239377.0250124,85710450172.18604,16008530603.71146,0.0,18295004223.59187,51406915344.88269,138126491373.10223,189533406717.98492,0.0,493969056074.0453,493969056074.0453,1780190685102.107,1590657278384.1218\n$75-100K,19093247.804029968,1217005438058.5981,15104224.533144532,314457455405.6476,3989023.270885435,90020996654.60883,0.0,843710847724.6495,107954623076.64507,1154180368551.753,99669.25659799961,538569606.637301,108493192683.28238,15068854808.491951,0.0,4953098038.399669,88471239836.39075,129431515416.15317,217902755252.54395,0.0,381664922427.8917,381664922427.8917,1642107291804.162,1424204536551.6184\n$100-200K,36449628.387218505,3924848154178.6133,22904439.6801937,524860723649.29626,13545188.707024802,390726366126.5259,0.0,3043933290651.328,437103133358.3651,3659352293049.5396,129008.96536701672,95156383.5306263,437198289741.89575,37578571132.24785,0.0,2664568150.373519,396955150459.2744,406614241210.9923,803569391670.2667,0.0,921216617963.1848,921216617963.1848,5020716718849.651,4217147327179.385\n$200-500K,12457373.092366263,2730790552151.96,5545659.859631676,134310768446.98254,6911713.232734587,229947667715.1504,0.0,2366555262748.2227,433222649333.7377,2571683631743.6177,89709.70862620692,285448834.37020314,433508098168.1078,13496801959.925568,1514249519.8692722,816951612.3986919,420708594115.65283,233094755843.8429,653803349959.4957,0.0,529212975644.1679,529212975644.1679,3405729848900.595,2751926498941.0996\n$500-1000K,978892.4876008318,596641904350.0393,270757.841486684,6913305697.520127,708134.6461141479,28736802307.80381,0.0,558651004037.9703,136724992634.67105,575303052027.5901,9431.861318357618,49088313.615792125,136774080948.28683,40683945.50295684,1622903444.43787,129568947.76791497,138226731499.45383,27868331625.40531,166095063124.85913,0.0,31604611250.635777,31604611250.635777,646002111383.0764,479907048258.21716\n>$1000K,346957.44843284413,725483375825.4407,21242.778890540678,424017537.6282786,325714.66954230354,17301161056.523445,0.0,704839465944.2236,213173918035.0818,711568862604.8203,30754.37217346121,466258774.34791255,213640176809.4297,6177599.537365023,6061152303.075016,0.0,219695151512.9673,20562404761.657387,240257556274.62473,0.0,4079999831.9743147,4079999831.9743147,745671950343.188,505414394068.5634\nALL,174512955.65000004,11661478050039.21,143271477.084686,2537468015379.845,31241478.565314032,866273420877.6537,0.0,8789883937325.833,1468314664626.1924,11055207800645.943,680868.630099821,2052542354.5652232,1470367206980.7573,95994158104.01408,9198305267.382158,95403826896.0182,1288167527248.1072,1105318268550.9673,2393485795799.0747,0.0,3041079112721.859,3041079112721.859,15242685046887.838,12849199251088.764\n", "diff_itax_xbin": ",count_3,tax_cut_3,perc_cut_3,tax_inc_3,perc_inc_3,mean_3,tot_change_3,share_of_change_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,pc_aftertaxinc_3\n<$0K,61182.53805207166,0.0,0.0,291.13746396417633,0.4758505829169641,0.24495433203429468,14986.92774070803,0.0019567877527696355,0.0,806392077.8193978,806392077.8193978,-0.02191367054127369\n=$0K,1093005.801629754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,11287313.460004035,21365.519798643756,0.1892879104877461,273191.1551769755,2.420338162353806,0.34512682223074576,3895554.6259735166,0.5086281667752908,0.0,15774945009.24044,15774945009.24044,0.7336223222103255\n$10-20K,12727845.420635447,103311.78327782414,0.8116989157514943,142279.87115337467,1.1178629724925686,0.0017063582857174808,21718.26449283259,0.002835673508690628,0.0,81377729359.80228,81377729359.80228,0.6426961265072917\n$20-30K,16870686.869712,66522.92548765091,0.3943107118363968,432496.9437257915,2.5636000897050297,0.5281478441851467,8910216.900161054,1.1633740821607825,0.0,168667889040.45544,168667889040.45544,0.6881048484159935\n$30-40K,17463678.30301845,30368.284195681445,0.17389397393121092,1070074.7562862483,6.127430531638313,2.4222172239077544,42300822.378355436,5.523062004043474,0.0,205745710533.41693,205745710533.41693,0.803877699847888\n$40-50K,16538667.089046707,49265.421473147115,0.29788024154482684,1010135.838378542,6.107722181840994,2.4765085105035696,40958149.79840947,5.347754208751886,0.0,206958263509.22443,206958263509.22443,0.8665877387969312\n$50-75K,29144476.948253136,7852.109738324729,0.02694201632874173,1423277.4341591517,4.883523683359361,2.430486566930192,70835259.72293589,9.248698004568402,0.0,493969056074.0453,493969056074.0453,0.8410435463494403\n$75-100K,19093247.804029968,0.0,0.0,993988.6267834287,5.205969340499681,3.013578155530246,57538994.50035055,7.512653806899998,0.0,381664922427.8917,381664922427.8917,0.8728961846046657\n$100-200K,36449628.387218505,31873.597219587133,0.08744560268483831,2973601.3025077796,8.15811143783981,6.294615677273269,229436402.2769704,29.956662885324132,0.0,921216617963.1848,921216617963.1848,0.9236405580827389\n$200-500K,12457373.092366263,114667.79856256316,0.9204813704490418,991345.2309458449,7.957899499320046,14.304921663479263,178201746.2190338,23.267143243535397,0.0,529212975644.1679,529212975644.1679,0.7628675975244192\n$500-1000K,978892.4876008318,13841.932221360426,1.4140400908873687,182699.34545439205,18.663882680535224,90.0408756178632,88140336.71932718,11.508157936125679,0.0,31604611250.635777,31604611250.635777,0.4013354358539667\n>$1000K,346957.44843284413,18367.79643389444,5.2939622760252245,98474.60048166478,28.382327840621407,131.54410693486747,45640207.698498815,5.959073200553491,0.0,4079999831.9743147,4079999831.9743147,0.12833075819211892\nALL,174512955.65000004,457437.1684086772,0.2621221826797231,9591856.242517158,5.496357681176639,4.388753792975195,765894396.0322497,100.00000000000001,0.0,3041079112721.859,3041079112721.859,0.8020723916391859\n", "diff_ptax_xbin": ",count_3,tax_cut_3,perc_cut_3,tax_inc_3,perc_inc_3,mean_3,tot_change_3,share_of_change_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,pc_aftertaxinc_3\n<$0K,61182.53805207166,4166.574114960042,6.810070728700278,0.0,0.0,-47.84945287373689,-2927550.9712182167,0.001479176336525186,0.0,806392077.8193978,806392077.8193978,-0.02191367054127369\n=$0K,1093005.801629754,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11287313.460004035,8336483.077234582,73.85710609326519,0.0,0.0,-65.91431562199608,-743995541.9271107,0.37591167870968684,0.0,15774945009.24044,15774945009.24044,0.7336223222103255\n$10-20K,12727845.420635447,8840248.48711064,69.45596992227837,0.0,0.0,-191.4278144388536,-2436463631.387815,1.2310492229801877,0.0,81377729359.80228,81377729359.80228,0.6426961265072917\n$20-30K,16870686.869712,11174335.912922602,66.23521614276372,0.0,0.0,-311.59230156279085,-5256776150.678718,2.6560421884843493,0.0,168667889040.45544,168667889040.45544,0.6881048484159935\n$30-40K,17463678.30301845,12383750.713652242,70.9114683560783,0.0,0.0,-477.5660820985401,-8340060426.201803,4.213904437159779,0.0,205745710533.41693,205745710533.41693,0.803877699847888\n$40-50K,16538667.089046707,12429322.990227398,75.15311193644581,0.0,0.0,-658.673777235115,-10893586321.976479,5.504100617130112,0.0,206958263509.22443,206958263509.22443,0.8665877387969312\n$50-75K,29144476.948253136,22736382.89498657,78.01266406446642,0.0,0.0,-878.4668194964315,-25602455970.618996,12.935913806791495,0.0,493969056074.0453,493969056074.0453,0.8410435463494403\n$75-100K,19093247.804029968,15103020.282725407,79.10136838813587,0.0,0.0,-1257.6949129691386,-24013480635.187668,12.133067079749148,0.0,381664922427.8917,381664922427.8917,0.8728961846046657\n$100-200K,36449628.387218505,29458016.447555274,80.81842737767137,0.0,0.0,-2064.879961054521,-75264107244.65152,38.02799251678136,0.0,921216617963.1848,921216617963.1848,0.9236405580827389\n$200-500K,12457373.092366263,10487162.171699792,84.18437895326589,0.0,0.0,-3266.4600504802784,-40691511540.142365,20.55981998584086,0.0,529212975644.1679,529212975644.1679,0.7628675975244192\n$500-1000K,978892.4876008318,848018.5882743082,86.63041130826508,0.0,0.0,-3587.498259804912,-3511775095.8040853,1.774361803425856,0.0,31604611250.635777,31604611250.635777,0.4013354358539667\n>$1000K,346957.44843284413,327892.24543754465,94.50503135718394,4152.017241761833,1.1966935024787293,-3344.8047714464205,-1160504929.0070524,0.5863574866106473,0.0,4079999831.9743147,4079999831.9743147,0.12833075819211892\nALL,174512955.65000004,132128800.38594134,75.71288899085316,4152.017241761833,0.0023792028656537357,-1134.1143372500937,-197917645038.5548,100.0,0.0,3041079112721.859,3041079112721.859,0.8020723916391859\n", "diff_comb_xbin": ",count_3,tax_cut_3,perc_cut_3,tax_inc_3,perc_inc_3,mean_3,tot_change_3,share_of_change_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,pc_aftertaxinc_3\n<$0K,61182.53805207166,4166.574114960042,6.810070728700278,0.0,0.0,-47.6044985417026,-2912564.0434775087,0.0014773209134513834,0.0,806392077.8193978,806392077.8193978,-0.02191367054127369\n=$0K,1093005.801629754,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11287313.460004035,8336483.077234582,73.85710609326519,0.0,0.0,-65.56918879976533,-740099987.3011371,0.3753961021848055,0.0,15774945009.24044,15774945009.24044,0.7336223222103255\n$10-20K,12727845.420635447,8840248.48711064,69.45596992227837,0.0,0.0,-191.42610808056793,-2436441913.1233225,1.2358205824614268,0.0,81377729359.80228,81377729359.80228,0.6426961265072917\n$20-30K,16870686.869712,11174335.912922602,66.23521614276372,0.0,0.0,-311.0641537186057,-5247865933.778557,2.661840900055733,0.0,168667889040.45544,168667889040.45544,0.6881048484159935\n$30-40K,17463678.30301845,12383750.713652242,70.9114683560783,0.0,0.0,-475.1438648746323,-8297759603.823446,4.208818626657301,0.0,205745710533.41693,205745710533.41693,0.803877699847888\n$40-50K,16538667.089046707,12429322.990227398,75.15311193644581,0.0,0.0,-656.1972687246116,-10852628172.178072,5.504707991082545,0.0,206958263509.22443,206958263509.22443,0.8665877387969312\n$50-75K,29144476.948253136,22736382.89498657,78.01266406446642,0.0,0.0,-876.0363329295013,-25531620710.89606,12.95023788918326,0.0,493969056074.0453,493969056074.0453,0.8410435463494403\n$75-100K,19093247.804029968,15103020.282725407,79.10136838813587,0.0,0.0,-1254.6813348136084,-23955941640.687317,12.15101644424373,0.0,381664922427.8917,381664922427.8917,0.8728961846046657\n$100-200K,36449628.387218505,29458016.447555274,80.81842737767137,0.0,0.0,-2058.5853453772484,-75034670842.37456,38.05934798845795,0.0,921216617963.1848,921216617963.1848,0.9236405580827389\n$200-500K,12457373.092366263,10487162.171699792,84.18437895326589,0.0,0.0,-3252.1551288167993,-40513309793.92333,20.549302586403325,0.0,529212975644.1679,529212975644.1679,0.7628675975244192\n$500-1000K,978892.4876008318,848018.5882743082,86.63041130826508,0.0,0.0,-3497.4573841870474,-3423634759.084757,1.7365479879975927,0.0,31604611250.635777,31604611250.635777,0.4013354358539667\n>$1000K,346957.44843284413,327892.24543754465,94.50503135718394,4152.017241761833,1.1966935024787293,-3213.26066451156,-1114864721.308556,0.5654855803588776,0.0,4079999831.9743147,4079999831.9743147,0.12833075819211892\nALL,174512955.65000004,132128800.38594134,75.71288899085316,4152.017241761833,0.0023792028656537357,-1129.7255834571188,-197151750642.52258,100.0,0.0,3041079112721.859,3041079112721.859,0.8020723916391859\n", "dist1_xdec": ",s006_3,c00100_3,num_returns_StandardDed_3,standard_3,num_returns_ItemDed_3,c04470_3,c04600_3,c04800_3,taxbc_3,c62100_3,num_returns_AMT_3,c09600_3,c05800_3,c07100_3,othertaxes_3,refund_3,iitax_3,payrolltax_3,combined_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,expanded_income_3,aftertax_income_3\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17448112.04299916,70694560945.42143,17394344.577651437,190825064816.847,53767.46534772043,453525373.31870955,0.0,2970079108.3748183,186289987.36462748,70277611519.15822,0.0,0.0,186289987.36462748,60844869.08883042,0.0,8930122958.744432,-8804677840.468636,10703678243.400158,1899000402.9315214,0.0,34323063844.92871,34323063844.92871,106495615508.15367,104596615105.22217\n10-20,17449853.905212536,190496393649.95557,17160214.80667369,246756350565.86237,289639.0985388425,4898669050.638726,0.0,44541878511.52132,4137513615.018312,186336200626.49097,24969.007591254907,8650501.460613312,4146164116.478925,907089150.860458,0.0,18410254369.14114,-15171179403.522675,27141033388.328506,11969853984.805832,0.0,155877777137.90796,155877777137.90796,357193777923.02356,345223923938.21765\n20-30,17452690.179619994,314275444473.36414,16938117.614746373,262261820389.448,514572.56487361965,8571667877.048433,0.0,125758641428.3295,13000519289.20346,307397088517.23,89179.37526855401,224932049.80748945,13225451339.01095,3376075342.573757,0.0,19455408209.15743,-9606032212.720236,45081233395.65816,35475201182.93793,0.0,197991200756.20422,197991200756.20422,537899621038.33655,502424419855.3987\n30-40,17427662.28285989,466176800886.2997,16564551.525459314,269624575568.92996,863110.7574005785,15584373048.62911,0.0,237408727935.12097,25054629958.838783,454053096828.23004,57230.677816785195,88167778.39017117,25142797737.22896,5955397162.755416,0.0,16439259908.397203,2748140666.076335,66115030833.52698,68863171499.6033,0.0,209851626195.2534,209851626195.2534,712363077613.982,643499906114.3787\n40-50,17469888.132789597,614125075097.678,15885802.57459997,284050840619.5598,1584085.5581896282,28373362768.44346,0.0,354427497853.641,38301664803.34991,592632803490.0872,110759.2781088441,178448242.94048628,38480113046.29039,9145388915.940956,0.0,13320472553.700415,16014251576.649021,83901936476.24191,99916188052.89093,0.0,250950811605.73828,250950811605.73828,908291114706.5841,808374926653.6931\n50-60,17414293.449017473,789994116291.9009,14997676.82312235,292319230571.4825,2416616.625895124,50670327462.5172,0.0,494303702740.33966,57947489023.11266,752221181111.3762,40156.127231340724,117837365.94039857,58065326389.05306,10035580315.358467,0.0,10075645425.109634,37954100648.58496,105717865829.47562,143671966478.06055,0.0,304967294266.2035,304967294266.2035,1146232766538.7104,1002560800060.6498\n60-70,17487420.894042756,1076297603532.3618,14036104.698761195,290814817511.13367,3451316.1952815615,75741800093.24327,0.0,743757197434.3978,94756939949.12836,1023615491150.1481,99669.2565979996,538569606.637301,95295509555.76566,13876222379.463478,0.0,4526165878.984496,76893121297.31767,136628340854.39525,213521462151.71292,0.0,357301731335.2484,357301731335.2484,1483083714369.9238,1269562252218.211\n70-80,17458919.85967277,1464213686866.6772,12360019.371120863,273963108182.6114,5098900.488551913,140442771908.39188,0.0,1075644447423.8206,140642351660.55264,1365392231019.4604,33855.64784073416,55313312.78827141,140697664973.34088,14670327829.99826,0.0,2102943397.9877443,123924393745.35489,178884431529.1491,302808825274.504,0.0,416658342737.147,416658342737.147,1938258148220.4717,1635449322945.9678\n80-90,17447003.4047699,2075669374390.9824,10199608.345246594,240482416136.51904,7247395.0595233105,214723593603.99835,0.0,1628575104116.352,237944285876.95547,1931234837157.516,88002.91524371694,31694274.96413798,237975980151.91962,19989630981.88248,0.0,1012665092.6015122,216973684077.4356,255369334440.43713,472343018517.8727,0.0,434714526036.50684,434714526036.50684,2631120624949.1084,2158777606431.2354\n90-100,17457111.499015924,4595387268430.457,7737428.044565021,186400379937.47476,9719683.454450902,326790320358.946,0.0,4078657188548.708,855613723565.1597,4367909550741.058,133566.59003016498,822939483.9009347,856436663049.0607,17938959610.15877,9196571519.939789,1218444661.4736714,846475830297.3679,393693028598.9094,1240168858896.2773,0.0,678442738806.7206,678442738806.7206,5516658494469.8545,4276489635573.577\nALL,174512955.65,11657330324565.098,143273868.3819468,2537498604299.8687,31239087.2680532,866250411545.1752,0.0,8786044465100.607,1467585407728.6838,11051070092160.758,677388.8757293946,2066552616.829804,1469651960345.5137,95955516558.08087,9196571519.939789,95491382455.29768,1287401632852.075,1303235913589.5222,2590637546441.597,0.0,3041079112721.859,3041079112721.859,15337596955338.148,12746959408896.55\n90-95,8719212.718199916,1416338596317.7178,4557781.149535168,110187155431.89822,4161431.5686647473,126217083796.66376,0.0,1182165204651.4568,195580206407.45367,1331964691958.4,18847.511573380863,51294906.941701636,195631501314.3954,9658950149.337143,28286237.36296979,513197696.7280449,185487639705.69318,164333064890.2444,349820704595.9375,0.0,295989843158.1907,295989843158.1907,1796074339486.9536,1446253634891.016\n95-99,6989506.155619897,1684824812273.9153,2758310.4413147066,65514708025.10298,4231195.71430519,144023885905.62866,0.0,1476550486111.398,277404872626.50146,1584491749539.3154,55886.4829121415,174158222.87056547,277579030849.372,7849538231.55512,1180472808.3647854,557792032.4907976,270352173393.69086,162573022505.12103,432925195898.81195,0.0,333762801141.0001,333762801141.0001,2134648408607.5898,1701723212708.7778\nTop 1%,1748392.6251961105,1494223859838.8237,421336.45371514664,10698516480.473549,1327056.171480964,56549350656.65356,0.0,1419941497785.8535,382628644531.2045,1451453109243.3428,58832.59554464263,597486354.0886676,383226130885.2933,430471229.2665063,7987812474.212034,147454932.25482893,390636017197.98395,66786941203.543976,457422958401.52795,0.0,48690094507.529816,48690094507.529816,1585935746375.311,1128512787973.7832\n", "dist2_xdec": ",s006_3,c00100_3,num_returns_StandardDed_3,standard_3,num_returns_ItemDed_3,c04470_3,c04600_3,c04800_3,taxbc_3,c62100_3,num_returns_AMT_3,c09600_3,c05800_3,c07100_3,othertaxes_3,refund_3,iitax_3,payrolltax_3,combined_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,expanded_income_3,aftertax_income_3\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17448112.04299916,70702316252.02647,17394344.577651437,190825064816.847,53767.46534772043,453525373.31870955,0.0,2970079108.3748183,186289987.36462748,70285366825.76324,0.0,0.0,186289987.36462748,60844869.08883042,0.0,8926332464.942856,-8800887346.667059,9025834541.729467,224947195.06240863,0.0,34323063844.92871,34323063844.92871,105664448963.92339,105439501768.861\n10-20,17449853.905212536,190594262497.41196,17159419.472056225,246746416104.78235,290434.43315630825,4910049339.0591135,0.0,44585036921.77787,4141829456.0439677,186427690284.0405,24969.007591254907,8650501.460613312,4150479957.5045805,907779042.1045635,0.0,18410176718.17559,-15167475802.775576,22898313803.37615,7730838000.600574,0.0,155877777137.90796,155877777137.90796,355170286978.0038,347439448977.40326\n20-30,17452690.179619994,314568088082.81085,16936521.652103007,262241165930.50488,516168.52751698694,8593076047.076042,0.0,125936691223.49995,13019146269.576712,307675282684.3261,89179.37526855401,224932049.80748945,13244078319.384201,3380058239.205573,0.0,19441297204.66005,-9577277124.481424,38053615016.13768,28476337891.656254,0.0,197991200756.20422,197991200756.20422,534678455458.0231,506202117566.3668\n30-40,17427662.28285989,466583989118.2355,16564551.525459314,269624575568.92996,863110.7574005785,15582100153.999931,0.0,237741622053.89325,25090051858.88327,454463126178.45233,57230.677816785195,88167778.39017117,25178219637.27344,5963697801.770389,0.0,16418878607.59835,2795643227.9046993,55804624351.85882,58600267579.76352,0.0,209851626195.2534,209851626195.2534,707611263084.593,649010995504.8295\n40-50,17469888.132789597,614402466101.1533,15885802.57459997,284050840619.5598,1584085.5581896282,28373283606.63511,0.0,354673839274.9376,38327975762.27682,592910293445.823,110759.2781088441,178448242.94048628,38506424005.2173,9154028606.305286,0.0,13301647648.126305,16050747750.785704,70781857572.76506,86832605323.55077,0.0,250950811605.73828,250950811605.73828,902004151829.1453,815171546505.5945\n50-60,17414293.449017473,790388340526.2169,14997676.82312235,292319230571.4825,2416616.625895124,50670199408.35122,0.0,494674467349.1301,57989859251.47246,752615473930.6003,40156.127231340724,117821869.46462828,58107681120.93709,10046189664.753082,0.0,10061500816.178188,37999990640.00583,89189691779.51486,127189682419.52069,0.0,304967294266.2035,304967294266.2035,1138335056930.5754,1011145374511.0549\n60-70,17487420.894042756,1076655677701.2079,14036104.698761195,290814817511.13367,3451316.1952815615,75741172598.61221,0.0,744088772962.8329,94807538037.46878,1023974349687.283,99669.2565979996,538569606.637301,95346107644.10608,13880592392.530321,0.0,4518768659.583696,76946746591.99207,115246846489.70276,192193593081.69482,0.0,357301731335.2484,357301731335.2484,1472728591405.3296,1280534998323.635\n70-80,17458919.85967277,1464589215029.8325,12360019.371120863,273963108182.6114,5098900.488551913,140441388739.5182,0.0,1075994680903.617,140690017397.42212,1365769461985.099,33855.64784073416,55313312.78827141,140745330710.2104,14671597780.435505,0.0,2100412969.3820004,123973319960.39288,150878324496.86115,274851644457.25403,0.0,416658342737.147,416658342737.147,1924615980931.8408,1649764336474.5864\n80-90,17447003.4047699,2076438276102.248,10199608.345246594,240482416136.51904,7247395.0595233105,214722398992.3529,0.0,1629324346271.9512,238099001838.3716,1932004701971.5244,88002.91524371694,34600015.16076398,238133601853.53238,19992471181.852814,0.0,1009005538.1344206,217132125133.54514,215478212378.29327,432610337511.8384,0.0,434714526036.50684,434714526036.50684,2611935235652.293,2179324898140.4546\n90-100,17457111.499015924,4596555418628.066,7737428.044565021,186400379937.47476,9719683.454450902,326786226618.73016,0.0,4079894401255.8184,855962954767.3118,4369082053653.0327,137046.34440059136,806038977.9154986,856768993745.2272,17936898525.96772,9198305267.382158,1215806269.2367353,846814594217.405,337960948120.72815,1184775542338.133,0.0,678442738806.7206,678442738806.7206,5489941575654.111,4305166033315.9785\nALL,174512955.65,11661478050039.21,143271477.08468598,2537468015379.8457,31241478.565314036,866273420877.6536,0.0,8789883937325.833,1468314664626.1921,11055207800645.945,680868.6300998209,2052542354.5652232,1470367206980.7573,95994158104.0141,9198305267.382158,95403826896.01819,1288167527248.1072,1105318268550.9675,2393485795799.074,0.0,3041079112721.859,3041079112721.859,15242685046887.838,12849199251088.766\n90-95,8719212.718199916,1416638308320.4556,4557781.149535168,110187155431.89822,4161431.5686647473,126215918766.35461,0.0,1182468734460.779,195647800575.58075,1332265436131.311,20930.136954806425,51564078.98077013,195699364654.56152,9659959645.205713,28312599.575501677,510815457.7657025,185556902151.1656,138996095894.5805,324552998045.7461,0.0,295989843158.1907,295989843158.1907,1783705050682.4,1459152052636.6538\n95-99,6989506.155619897,1685223742781.29,2758310.4413147066,65514708025.10298,4231195.71430519,144021293851.33508,0.0,1476993843189.2969,277518988989.9552,1584893907335.7598,57283.611901142314,160899521.4132646,277679888511.3684,7847452653.147001,1181949375.8008497,557792032.4907976,270456593201.53152,138665329244.61844,409121922446.14996,0.0,333762801141.0001,333762801141.0001,2123091255739.8948,1713969333293.7449\nTop 1%,1748392.6251961105,1494693367526.3203,421336.45371514664,10698516480.473549,1327056.171480964,56549014001.04044,0.0,1420431823605.7422,382796165201.77576,1451922710185.962,58832.59554464263,593575377.5214639,383389740579.29724,429486227.6150042,7988043292.005807,147198778.98023513,390801098864.7078,60299522981.529205,451100621846.237,0.0,48690094507.529816,48690094507.529816,1583145269231.817,1132044647385.5798\n", "diff_itax_xdec": ",count_3,tax_cut_3,perc_cut_3,tax_inc_3,perc_inc_3,mean_3,tot_change_3,share_of_change_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,pc_aftertaxinc_3\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,17448112.04299916,76156.26716459282,0.4364728228298464,353322.441238761,2.0249895253310646,0.2172437792831933,3790493.801577736,0.4949107633133967,0.0,34323063844.92871,34323063844.92871,0.8058450675396012\n10-20,17449853.905212536,77037.95050716616,0.44148192257445634,277653.498488281,1.5911508485772576,0.2122425074282735,3703600.747099359,0.48356545840863036,0.0,155877777137.90796,155877777137.90796,0.641764630304742\n20-30,17452690.179619994,68033.20108196506,0.38981498199864556,797621.3699100004,4.570191538960599,1.647602056924778,28755088.238812774,3.7544455721023424,0.0,197991200756.20422,197991200756.20422,0.7518937300172279\n30-40,17427662.28285989,48305.660356147026,0.2771780837390661,1175064.5500381934,6.742525365515428,2.7256990098484923,47502561.828365125,6.202233894705887,0.0,209851626195.2534,209851626195.2534,0.8564242726511351\n40-50,17469888.132789597,4359.121846809077,0.024952202404933267,839696.3576992869,4.806535401467416,2.089090316965645,36496174.13668378,4.76517054123308,0.0,250950811605.73828,250950811605.73828,0.840775688087736\n50-60,17414293.449017473,4793.843014591949,0.027528208529542273,880749.0559844264,5.0576215369456685,2.6351911178713627,45889991.420856304,5.9916865378035755,0.0,304967294266.2035,304967294266.2035,0.8562647222877473\n60-70,17487420.894042756,0.0,0.0,921254.8790105511,5.268100336764838,3.0665067764598093,53625294.67438697,7.001656488439557,0.0,357301731335.2484,357301731335.2484,0.8642936639185805\n70-80,17458919.85967277,9167.852572626467,0.05251099521799568,1337637.6949439528,7.661629159737858,2.8023620837509347,48926215.03799316,6.388115031453111,0.0,416658342737.147,416658342737.147,0.8752954510894195\n80-90,17447003.4047699,11933.989318313374,0.0684013698022819,1528192.7893549693,8.759055947321997,9.081276161510637,158441056.10953182,20.687062985490275,0.0,434714526036.50684,434714526036.50684,0.9518021517365582\n90-100,17457111.499015924,157649.2825464653,0.9030662521422985,1480663.6058487357,8.481721652131295,19.405496725849467,338763920.0369426,44.23115272705014,0.0,678442738806.7206,678442738806.7206,0.670559271414084\nALL,174512955.65,457437.1684086773,0.26212218267972315,9591856.242517158,5.49635768117664,4.388753792975196,765894396.0322497,100.00000000000001,0.0,3041079112721.859,3041079112721.859,0.8020723916392081\n90-95,8719212.718199916,11342.450925622525,0.13008572324364825,632057.4492380633,7.249019718474671,7.943658184627436,69262445.4724364,9.043341462119791,0.0,295989843158.1907,295989843158.1907,0.8918503251754695\n95-99,6989506.155619897,106240.03065685472,1.5199933770919232,490061.7679500811,7.01139332363343,14.939511535687386,104419807.84064144,13.633708299942256,0.0,333762801141.0001,333762801141.0001,0.7196305776116185\nTop 1%,1748392.6251961105,40066.80096398806,2.291636351388403,358544.3886605912,20.507086537291627,94.41910492235587,165081666.72386476,21.55410296498809,0.0,48690094507.529816,48690094507.529816,0.31296582984565724\n", "diff_ptax_xdec": ",count_3,tax_cut_3,perc_cut_3,tax_inc_3,perc_inc_3,mean_3,tot_change_3,share_of_change_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,pc_aftertaxinc_3\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17448112.04299916,12407373.872148715,71.11012264004242,0.0,0.0,-96.16190551366299,-1677843701.6706905,0.8477484164405061,0.0,34323063844.92871,34323063844.92871,0.8058450675396012\n10-20,17449853.905212536,11136687.207099654,63.82109138330927,0.0,0.0,-243.13782843104443,-4242719584.9523563,2.1436792985920303,0.0,155877777137.90796,155877777137.90796,0.641764630304742\n20-30,17452690.179619994,11940048.616782129,68.41380035912667,0.0,0.0,-402.6667698328153,-7027618379.52048,3.5507791021621555,0.0,197991200756.20422,197991200756.20422,0.7518937300172279\n30-40,17427662.28285989,13019600.559196465,74.70652315773438,0.0,0.0,-591.611560651393,-10310406481.66816,5.209442785992965,0.0,209851626195.2534,209851626195.2534,0.8564242726511351\n40-50,17469888.132789597,13184159.063103644,75.46790776729716,0.0,0.0,-751.0110427582812,-13120078903.476837,6.629059728818525,0.0,250950811605.73828,250950811605.73828,0.840775688087736\n50-60,17414293.449017473,13898493.944686146,79.81084036154398,0.0,0.0,-949.1153975525357,-16528174049.960735,8.351036132600004,0.0,304967294266.2035,304967294266.2035,0.8562647222877473\n60-70,17487420.894042756,13699999.730135644,78.34202546587456,0.0,0.0,-1222.6785467247653,-21381494364.692493,10.80322795904697,0.0,357301731335.2484,357301731335.2484,0.8642936639185805\n70-80,17458919.85967277,13556482.524760421,77.64788792045299,0.0,0.0,-1604.1145304170557,-28006107032.287994,14.150384129132263,0.0,416658342737.147,416658342737.147,0.8752954510894195\n80-90,17447003.4047699,14533610.653162025,83.30147198337008,0.0,0.0,-2286.416821082173,-39891122062.143845,20.155414669759715,0.0,434714526036.50684,434714526036.50684,0.9518021517365582\n90-100,17457111.499015924,14752344.214866474,84.5062152217913,4152.017241761833,0.02378410220955447,-3192.5144363844447,-55732080478.18123,28.159227777454852,0.0,678442738806.7206,678442738806.7206,0.670559271414084\nALL,174512955.65,132128800.38594134,75.71288899085317,4152.017241761833,0.002379202865653736,-1134.1143372500942,-197917645038.55484,100.0,0.0,3041079112721.859,3041079112721.859,0.8020723916392081\n90-95,8719212.718199916,7453858.16963575,85.48774310869894,0.0,0.0,-2905.878066580155,-25336968995.66387,12.801773682547692,0.0,295989843158.1907,295989843158.1907,0.8918503251754695\n95-99,6989506.155619897,5732563.494736133,82.01671716286963,0.0,0.0,-3420.51251235821,-23907693260.50259,12.079616880973553,0.0,333762801141.0001,333762801141.0001,0.7196305776116185\nTop 1%,1748392.6251961105,1565922.5504945903,89.56355271282084,4152.017241761833,0.23747625000969777,-3710.5042245800514,-6487418222.014774,3.277837213933608,0.0,48690094507.529816,48690094507.529816,0.31296582984565724\n", "diff_comb_xdec": ",count_3,tax_cut_3,perc_cut_3,tax_inc_3,perc_inc_3,mean_3,tot_change_3,share_of_change_3,ubi_3,benefit_cost_total_3,benefit_value_total_3,pc_aftertaxinc_3\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17448112.04299916,12407373.872148715,71.11012264004242,0.0,0.0,-95.94466173437979,-1674053207.8691127,0.8491191188581032,0.0,34323063844.92871,34323063844.92871,0.8058450675396012\n10-20,17449853.905212536,11136687.207099654,63.82109138330927,0.0,0.0,-242.92558592361618,-4239015984.2052574,2.150128502734668,0.0,155877777137.90796,155877777137.90796,0.641764630304742\n20-30,17452690.179619994,11940048.616782129,68.41380035912667,0.0,0.0,-401.01916777589054,-6998863291.281668,3.5499878994085483,0.0,197991200756.20422,197991200756.20422,0.7518937300172279\n30-40,17427662.28285989,13019600.559196465,74.70652315773438,0.0,0.0,-588.8858616415446,-10262903919.839796,5.205585994744013,0.0,209851626195.2534,209851626195.2534,0.8564242726511351\n40-50,17469888.132789597,13184159.063103644,75.46790776729716,0.0,0.0,-748.9219524413155,-13083582729.340153,6.636300558681534,0.0,250950811605.73828,250950811605.73828,0.840775688087736\n50-60,17414293.449017473,13898493.944686146,79.81084036154398,0.0,0.0,-946.4802064346643,-16482284058.539879,8.360201725231295,0.0,304967294266.2035,304967294266.2035,0.8562647222877473\n60-70,17487420.894042756,13699999.730135644,78.34202546587456,0.0,0.0,-1219.6120399483054,-21327869070.018105,10.817996289918822,0.0,357301731335.2484,357301731335.2484,0.8642936639185805\n70-80,17458919.85967277,13556482.524760421,77.64788792045299,0.0,0.0,-1601.3121683333047,-27957180817.25,14.18053896358355,0.0,416658342737.147,416658342737.147,0.8752954510894195\n80-90,17447003.4047699,14533610.653162025,83.30147198337008,0.0,0.0,-2277.3355449206624,-39732681006.03432,20.153349324337466,0.0,434714526036.50684,434714526036.50684,0.9518021517365582\n90-100,17457111.499015924,14752344.214866474,84.5062152217913,4152.017241761833,0.02378410220955447,-3173.1089396585953,-55393316558.14429,28.09679162250198,0.0,678442738806.7206,678442738806.7206,0.670559271414084\nALL,174512955.65,132128800.38594134,75.71288899085317,4152.017241761833,0.002379202865653736,-1129.7255834571192,-197151750642.5226,100.0,0.0,3041079112721.859,3041079112721.859,0.8020723916392081\n90-95,8719212.718199916,7453858.16963575,85.48774310869894,0.0,0.0,-2897.934408395527,-25267706550.19143,12.816374426219056,0.0,295989843158.1907,295989843158.1907,0.8918503251754695\n95-99,6989506.155619897,5732563.494736133,82.01671716286963,0.0,0.0,-3405.5730008225237,-23803273452.661953,12.073579552343043,0.0,333762801141.0001,333762801141.0001,0.7196305776116185\nTop 1%,1748392.6251961105,1565922.5504945903,89.56355271282084,4152.017241761833,0.23747625000969777,-3616.0851196576964,-6322336555.290911,3.2068376439398856,0.0,48690094507.529816,48690094507.529816,0.31296582984565724\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_3
ind_tax765,894,396.03
payroll_tax-197,917,645,038.55
combined_tax-197,151,750,642.52
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_3
ind_tax1,287,401,632,852.07
payroll_tax1,303,235,913,589.52
combined_tax2,590,637,546,441.60
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_3
ind_tax1,288,167,527,248.11
payroll_tax1,105,318,268,550.97
combined_tax2,393,485,795,799.07
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_3c00100_3num_returns_StandardDed_3standard_3num_returns_ItemDed_3c04470_3c04600_3c04800_3taxbc_3c62100_3num_returns_AMT_3c09600_3c05800_3c07100_3othertaxes_3refund_3iitax_3payrolltax_3combined_3ubi_3benefit_cost_total_3benefit_value_total_3expanded_income_3aftertax_income_3
<$0K61,182.54-7,483,914,162.6961,182.541,365,548,029.170.000.000.000.000.00-7,483,914,162.690.000.000.000.000.001,222,777.35-1,222,777.3518,663,137.4417,440,360.090.00806,392,077.82806,392,077.82-6,593,905,535.34-6,611,345,895.43
=$0K1,093,005.800.001,093,005.8017,568,979,021.090.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,287,313.4635,084,151,241.8711,251,229.62104,432,374,750.2836,083.84138,050,919.170.001,950,693,369.10123,955,236.6134,954,935,082.760.000.00123,955,236.6154,011,268.020.003,687,641,270.02-3,617,697,301.424,742,980,340.761,125,283,039.340.0015,774,945,009.2415,774,945,009.2451,302,514,067.3250,177,231,027.99
$10-20K12,727,845.42110,888,532,199.7312,634,925.92174,413,493,304.8992,919.501,596,647,054.280.0010,702,450,218.26927,057,914.60109,524,546,630.7018,814.433,829,777.95930,887,692.55258,214,913.690.0013,518,352,224.87-12,845,679,446.0015,557,796,427.152,712,116,981.150.0081,377,729,359.8081,377,729,359.80196,377,426,442.66193,665,309,461.51
$20-30K16,870,686.87236,121,149,284.3916,465,637.24244,515,910,941.52405,049.636,680,922,477.910.0076,096,830,227.457,444,166,983.38230,560,281,033.6171,541.41181,236,211.277,625,403,194.651,823,309,644.670.0019,868,386,756.85-14,066,293,206.8733,656,131,534.7419,589,838,327.870.00168,667,889,040.46168,667,889,040.46422,156,794,114.42402,566,955,786.55
$30-40K17,463,678.30372,992,820,590.5716,887,163.60266,348,225,632.32576,514.719,944,167,360.910.00167,222,680,391.8817,459,606,227.93365,110,786,618.6065,156.90100,358,806.4417,559,965,034.374,281,292,873.370.0017,536,154,819.44-4,257,482,658.4453,520,724,768.6849,263,242,110.230.00205,745,710,533.42205,745,710,533.42608,587,487,548.90559,324,245,438.67
$40-50K16,538,667.09498,820,639,361.4615,494,060.91260,651,440,361.721,044,606.1818,573,100,141.600.00269,556,952,411.6128,688,284,033.07484,727,613,705.7625,599.2545,356,269.3828,733,640,302.457,363,635,780.090.0013,973,986,101.697,396,018,420.6769,798,041,734.1977,194,060,154.860.00206,958,263,509.22206,958,263,509.22743,360,311,766.72666,166,251,611.85
$50-75K29,144,476.951,218,796,540,674.3525,540,338.07487,236,361,521.803,604,138.8872,577,230,715.340.00745,493,251,246.8585,365,231,883.371,164,254,457,451.83141,182.48287,254,873.5085,652,486,756.8715,990,381,711.820.0018,326,024,959.8951,336,080,085.16163,728,947,343.72215,065,027,428.880.00493,969,056,074.05493,969,056,074.051,792,455,762,832.181,577,390,735,403.30
$75-100K19,093,247.801,216,603,402,579.8815,104,224.53314,457,455,405.653,989,023.2790,021,624,149.240.00843,324,795,308.16107,900,364,613.701,153,777,548,704.7599,669.26538,569,606.64108,438,934,220.3415,063,868,704.200.004,961,364,674.2488,413,700,841.89153,444,996,051.34241,858,696,893.230.00381,664,922,427.89381,664,922,427.891,653,738,984,285.021,411,880,287,391.79
$100-200K36,449,628.393,923,640,784,440.5922,904,439.68524,860,723,649.3013,545,188.71390,729,711,987.530.003,042,767,226,517.49436,878,703,770.183,658,141,721,423.40129,008.9792,428,349.80436,971,132,119.9837,573,945,905.460.002,671,472,157.52396,725,714,057.00481,878,348,455.64878,604,062,512.640.00921,216,617,963.18921,216,617,963.185,057,156,583,864.044,178,552,521,351.39
$200-500K12,457,373.092,730,119,971,942.665,545,659.86134,310,768,446.986,911,713.23229,950,918,770.790.002,365,818,527,012.68433,033,111,486.412,571,009,328,057.9786,229.95301,735,744.33433,334,847,230.7413,499,886,067.841,512,624,915.09817,193,708.55420,530,392,369.43273,786,267,383.99694,316,659,753.420.00529,212,975,644.17529,212,975,644.173,425,408,543,653.622,731,091,883,900.21
$500-1000K978,892.49596,386,658,441.32270,757.846,913,305,697.52708,134.6528,736,876,911.900.00558,395,380,307.38136,636,850,299.04575,047,712,863.759,431.8649,268,025.35136,686,118,324.3940,792,089.381,622,847,932.60129,583,004.89138,138,591,162.7331,380,106,721.21169,518,697,883.940.0031,604,611,250.6431,604,611,250.64647,507,408,068.81477,988,710,184.86
>$1000K346,957.45725,359,587,970.9521,242.78424,017,537.63325,714.6717,301,161,056.520.00704,715,678,089.74213,128,075,280.38711,445,074,750.3330,754.37466,514,952.17213,594,590,232.566,177,599.546,061,098,672.250.00219,649,511,305.2721,722,909,690.66241,372,420,995.930.004,079,999,831.974,079,999,831.97746,139,044,229.80504,766,623,233.87
ALL174,512,955.6511,657,330,324,565.10143,273,868.382,537,498,604,299.8731,239,087.27866,250,411,545.180.008,786,044,465,100.611,467,585,407,728.6811,051,070,092,160.76677,388.882,066,552,616.831,469,651,960,345.5195,955,516,558.089,196,571,519.9495,491,382,455.301,287,401,632,852.071,303,235,913,589.522,590,637,546,441.600.003,041,079,112,721.863,041,079,112,721.8615,337,596,955,338.1512,746,959,408,896.55
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_3c00100_3num_returns_StandardDed_3standard_3num_returns_ItemDed_3c04470_3c04600_3c04800_3taxbc_3c62100_3num_returns_AMT_3c09600_3c05800_3c07100_3othertaxes_3refund_3iitax_3payrolltax_3combined_3ubi_3benefit_cost_total_3benefit_value_total_3expanded_income_3aftertax_income_3
<$0K61,182.54-7,483,914,162.6961,182.541,365,548,029.170.000.000.000.000.00-7,483,914,162.690.000.000.000.000.001,207,790.42-1,207,790.4215,735,586.4714,527,796.050.00806,392,077.82806,392,077.82-6,595,369,310.82-6,609,897,106.87
=$0K1,093,005.800.001,093,005.8017,568,979,021.090.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,287,313.4635,084,160,393.0311,251,229.62104,432,374,750.2836,083.84138,050,919.170.001,950,693,369.10123,955,236.6134,954,944,233.910.000.00123,955,236.6154,011,268.020.003,683,745,715.39-3,613,801,746.803,998,984,798.83385,183,052.040.0015,774,945,009.2415,774,945,009.2450,930,525,447.5150,545,342,395.47
$10-20K12,727,845.42110,915,001,544.6012,634,130.59174,403,558,843.8193,714.831,608,100,347.400.0010,703,477,126.08927,160,605.39109,544,545,529.7818,814.433,829,777.95930,990,383.34258,274,008.590.0013,518,374,102.48-12,845,657,727.7313,121,332,795.76275,675,068.030.0081,377,729,359.8081,377,729,359.80195,185,663,971.83194,909,988,903.81
$20-30K16,870,686.87236,271,754,166.8416,465,478.44244,513,207,938.04405,208.436,683,828,619.310.0076,171,757,691.607,451,607,536.83230,708,732,679.6971,541.41181,236,211.277,632,843,748.101,825,600,848.590.0019,864,625,889.47-14,057,382,989.9728,399,355,384.0614,341,972,394.090.00168,667,889,040.46168,667,889,040.46419,679,010,921.53405,337,038,527.43
$30-40K17,463,678.30373,361,374,078.7716,885,726.44266,330,274,176.86577,951.879,961,793,780.120.00167,483,594,063.1417,487,530,829.23365,468,138,412.5865,156.90100,358,806.4417,587,889,635.674,288,285,718.330.0017,514,785,753.41-4,215,181,836.0745,180,664,342.4840,965,482,506.410.00205,745,710,533.42205,745,710,533.42604,786,010,824.00563,820,528,317.59
$40-50K16,538,667.09499,192,944,673.7715,494,060.91260,651,440,361.721,044,606.1818,571,550,689.870.00269,875,500,734.1828,721,883,184.47485,101,855,832.7325,599.2545,356,269.3828,767,239,453.867,368,366,211.070.0013,961,896,672.327,436,976,570.4758,904,455,412.2266,341,431,982.690.00206,958,263,509.22206,958,263,509.22738,280,598,651.01671,939,166,668.32
$50-75K29,144,476.951,219,367,304,780.2425,540,338.07487,236,361,521.803,604,138.8872,577,102,661.170.00746,009,043,235.3485,423,210,795.161,164,825,290,142.62141,182.48287,239,377.0385,710,450,172.1916,008,530,603.710.0018,295,004,223.5951,406,915,344.88138,126,491,373.10189,533,406,717.980.00493,969,056,074.05493,969,056,074.051,780,190,685,102.111,590,657,278,384.12
$75-100K19,093,247.801,217,005,438,058.6015,104,224.53314,457,455,405.653,989,023.2790,020,996,654.610.00843,710,847,724.65107,954,623,076.651,154,180,368,551.7599,669.26538,569,606.64108,493,192,683.2815,068,854,808.490.004,953,098,038.4088,471,239,836.39129,431,515,416.15217,902,755,252.540.00381,664,922,427.89381,664,922,427.891,642,107,291,804.161,424,204,536,551.62
$100-200K36,449,628.393,924,848,154,178.6122,904,439.68524,860,723,649.3013,545,188.71390,726,366,126.530.003,043,933,290,651.33437,103,133,358.373,659,352,293,049.54129,008.9795,156,383.53437,198,289,741.9037,578,571,132.250.002,664,568,150.37396,955,150,459.27406,614,241,210.99803,569,391,670.270.00921,216,617,963.18921,216,617,963.185,020,716,718,849.654,217,147,327,179.38
$200-500K12,457,373.092,730,790,552,151.965,545,659.86134,310,768,446.986,911,713.23229,947,667,715.150.002,366,555,262,748.22433,222,649,333.742,571,683,631,743.6289,709.71285,448,834.37433,508,098,168.1113,496,801,959.931,514,249,519.87816,951,612.40420,708,594,115.65233,094,755,843.84653,803,349,959.500.00529,212,975,644.17529,212,975,644.173,405,729,848,900.602,751,926,498,941.10
$500-1000K978,892.49596,641,904,350.04270,757.846,913,305,697.52708,134.6528,736,802,307.800.00558,651,004,037.97136,724,992,634.67575,303,052,027.599,431.8649,088,313.62136,774,080,948.2940,683,945.501,622,903,444.44129,568,947.77138,226,731,499.4527,868,331,625.41166,095,063,124.860.0031,604,611,250.6431,604,611,250.64646,002,111,383.08479,907,048,258.22
>$1000K346,957.45725,483,375,825.4421,242.78424,017,537.63325,714.6717,301,161,056.520.00704,839,465,944.22213,173,918,035.08711,568,862,604.8230,754.37466,258,774.35213,640,176,809.436,177,599.546,061,152,303.080.00219,695,151,512.9720,562,404,761.66240,257,556,274.620.004,079,999,831.974,079,999,831.97745,671,950,343.19505,414,394,068.56
ALL174,512,955.6511,661,478,050,039.21143,271,477.082,537,468,015,379.8531,241,478.57866,273,420,877.650.008,789,883,937,325.831,468,314,664,626.1911,055,207,800,645.94680,868.632,052,542,354.571,470,367,206,980.7695,994,158,104.019,198,305,267.3895,403,826,896.021,288,167,527,248.111,105,318,268,550.972,393,485,795,799.070.003,041,079,112,721.863,041,079,112,721.8615,242,685,046,887.8412,849,199,251,088.76
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_3tax_cut_3perc_cut_3tax_inc_3perc_inc_3mean_3tot_change_3share_of_change_3ubi_3benefit_cost_total_3benefit_value_total_3pc_aftertaxinc_3
<$0K61,182.540.000.00291.140.480.2414,986.930.000.00806,392,077.82806,392,077.82-0.02
=$0K1,093,005.800.000.000.000.000.000.000.000.000.000.00nan
$0-10K11,287,313.4621,365.520.19273,191.162.420.353,895,554.630.510.0015,774,945,009.2415,774,945,009.240.73
$10-20K12,727,845.42103,311.780.81142,279.871.120.0021,718.260.000.0081,377,729,359.8081,377,729,359.800.64
$20-30K16,870,686.8766,522.930.39432,496.942.560.538,910,216.901.160.00168,667,889,040.46168,667,889,040.460.69
$30-40K17,463,678.3030,368.280.171,070,074.766.132.4242,300,822.385.520.00205,745,710,533.42205,745,710,533.420.80
$40-50K16,538,667.0949,265.420.301,010,135.846.112.4840,958,149.805.350.00206,958,263,509.22206,958,263,509.220.87
$50-75K29,144,476.957,852.110.031,423,277.434.882.4370,835,259.729.250.00493,969,056,074.05493,969,056,074.050.84
$75-100K19,093,247.800.000.00993,988.635.213.0157,538,994.507.510.00381,664,922,427.89381,664,922,427.890.87
$100-200K36,449,628.3931,873.600.092,973,601.308.166.29229,436,402.2829.960.00921,216,617,963.18921,216,617,963.180.92
$200-500K12,457,373.09114,667.800.92991,345.237.9614.30178,201,746.2223.270.00529,212,975,644.17529,212,975,644.170.76
$500-1000K978,892.4913,841.931.41182,699.3518.6690.0488,140,336.7211.510.0031,604,611,250.6431,604,611,250.640.40
>$1000K346,957.4518,367.805.2998,474.6028.38131.5445,640,207.705.960.004,079,999,831.974,079,999,831.970.13
ALL174,512,955.65457,437.170.269,591,856.245.504.39765,894,396.03100.000.003,041,079,112,721.863,041,079,112,721.860.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_3tax_cut_3perc_cut_3tax_inc_3perc_inc_3mean_3tot_change_3share_of_change_3ubi_3benefit_cost_total_3benefit_value_total_3pc_aftertaxinc_3
<$0K61,182.544,166.576.810.000.00-47.85-2,927,550.970.000.00806,392,077.82806,392,077.82-0.02
=$0K1,093,005.800.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,287,313.468,336,483.0873.860.000.00-65.91-743,995,541.930.380.0015,774,945,009.2415,774,945,009.240.73
$10-20K12,727,845.428,840,248.4969.460.000.00-191.43-2,436,463,631.391.230.0081,377,729,359.8081,377,729,359.800.64
$20-30K16,870,686.8711,174,335.9166.240.000.00-311.59-5,256,776,150.682.660.00168,667,889,040.46168,667,889,040.460.69
$30-40K17,463,678.3012,383,750.7170.910.000.00-477.57-8,340,060,426.204.210.00205,745,710,533.42205,745,710,533.420.80
$40-50K16,538,667.0912,429,322.9975.150.000.00-658.67-10,893,586,321.985.500.00206,958,263,509.22206,958,263,509.220.87
$50-75K29,144,476.9522,736,382.8978.010.000.00-878.47-25,602,455,970.6212.940.00493,969,056,074.05493,969,056,074.050.84
$75-100K19,093,247.8015,103,020.2879.100.000.00-1,257.69-24,013,480,635.1912.130.00381,664,922,427.89381,664,922,427.890.87
$100-200K36,449,628.3929,458,016.4580.820.000.00-2,064.88-75,264,107,244.6538.030.00921,216,617,963.18921,216,617,963.180.92
$200-500K12,457,373.0910,487,162.1784.180.000.00-3,266.46-40,691,511,540.1420.560.00529,212,975,644.17529,212,975,644.170.76
$500-1000K978,892.49848,018.5986.630.000.00-3,587.50-3,511,775,095.801.770.0031,604,611,250.6431,604,611,250.640.40
>$1000K346,957.45327,892.2594.514,152.021.20-3,344.80-1,160,504,929.010.590.004,079,999,831.974,079,999,831.970.13
ALL174,512,955.65132,128,800.3975.714,152.020.00-1,134.11-197,917,645,038.55100.000.003,041,079,112,721.863,041,079,112,721.860.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_3tax_cut_3perc_cut_3tax_inc_3perc_inc_3mean_3tot_change_3share_of_change_3ubi_3benefit_cost_total_3benefit_value_total_3pc_aftertaxinc_3
<$0K61,182.544,166.576.810.000.00-47.60-2,912,564.040.000.00806,392,077.82806,392,077.82-0.02
=$0K1,093,005.800.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,287,313.468,336,483.0873.860.000.00-65.57-740,099,987.300.380.0015,774,945,009.2415,774,945,009.240.73
$10-20K12,727,845.428,840,248.4969.460.000.00-191.43-2,436,441,913.121.240.0081,377,729,359.8081,377,729,359.800.64
$20-30K16,870,686.8711,174,335.9166.240.000.00-311.06-5,247,865,933.782.660.00168,667,889,040.46168,667,889,040.460.69
$30-40K17,463,678.3012,383,750.7170.910.000.00-475.14-8,297,759,603.824.210.00205,745,710,533.42205,745,710,533.420.80
$40-50K16,538,667.0912,429,322.9975.150.000.00-656.20-10,852,628,172.185.500.00206,958,263,509.22206,958,263,509.220.87
$50-75K29,144,476.9522,736,382.8978.010.000.00-876.04-25,531,620,710.9012.950.00493,969,056,074.05493,969,056,074.050.84
$75-100K19,093,247.8015,103,020.2879.100.000.00-1,254.68-23,955,941,640.6912.150.00381,664,922,427.89381,664,922,427.890.87
$100-200K36,449,628.3929,458,016.4580.820.000.00-2,058.59-75,034,670,842.3738.060.00921,216,617,963.18921,216,617,963.180.92
$200-500K12,457,373.0910,487,162.1784.180.000.00-3,252.16-40,513,309,793.9220.550.00529,212,975,644.17529,212,975,644.170.76
$500-1000K978,892.49848,018.5986.630.000.00-3,497.46-3,423,634,759.081.740.0031,604,611,250.6431,604,611,250.640.40
>$1000K346,957.45327,892.2594.514,152.021.20-3,213.26-1,114,864,721.310.570.004,079,999,831.974,079,999,831.970.13
ALL174,512,955.65132,128,800.3975.714,152.020.00-1,129.73-197,151,750,642.52100.000.003,041,079,112,721.863,041,079,112,721.860.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_3c00100_3num_returns_StandardDed_3standard_3num_returns_ItemDed_3c04470_3c04600_3c04800_3taxbc_3c62100_3num_returns_AMT_3c09600_3c05800_3c07100_3othertaxes_3refund_3iitax_3payrolltax_3combined_3ubi_3benefit_cost_total_3benefit_value_total_3expanded_income_3aftertax_income_3
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,448,112.0470,694,560,945.4217,394,344.58190,825,064,816.8553,767.47453,525,373.320.002,970,079,108.37186,289,987.3670,277,611,519.160.000.00186,289,987.3660,844,869.090.008,930,122,958.74-8,804,677,840.4710,703,678,243.401,899,000,402.930.0034,323,063,844.9334,323,063,844.93106,495,615,508.15104,596,615,105.22
10-2017,449,853.91190,496,393,649.9617,160,214.81246,756,350,565.86289,639.104,898,669,050.640.0044,541,878,511.524,137,513,615.02186,336,200,626.4924,969.018,650,501.464,146,164,116.48907,089,150.860.0018,410,254,369.14-15,171,179,403.5227,141,033,388.3311,969,853,984.810.00155,877,777,137.91155,877,777,137.91357,193,777,923.02345,223,923,938.22
20-3017,452,690.18314,275,444,473.3616,938,117.61262,261,820,389.45514,572.568,571,667,877.050.00125,758,641,428.3313,000,519,289.20307,397,088,517.2389,179.38224,932,049.8113,225,451,339.013,376,075,342.570.0019,455,408,209.16-9,606,032,212.7245,081,233,395.6635,475,201,182.940.00197,991,200,756.20197,991,200,756.20537,899,621,038.34502,424,419,855.40
30-4017,427,662.28466,176,800,886.3016,564,551.53269,624,575,568.93863,110.7615,584,373,048.630.00237,408,727,935.1225,054,629,958.84454,053,096,828.2357,230.6888,167,778.3925,142,797,737.235,955,397,162.760.0016,439,259,908.402,748,140,666.0866,115,030,833.5368,863,171,499.600.00209,851,626,195.25209,851,626,195.25712,363,077,613.98643,499,906,114.38
40-5017,469,888.13614,125,075,097.6815,885,802.57284,050,840,619.561,584,085.5628,373,362,768.440.00354,427,497,853.6438,301,664,803.35592,632,803,490.09110,759.28178,448,242.9438,480,113,046.299,145,388,915.940.0013,320,472,553.7016,014,251,576.6583,901,936,476.2499,916,188,052.890.00250,950,811,605.74250,950,811,605.74908,291,114,706.58808,374,926,653.69
50-6017,414,293.45789,994,116,291.9014,997,676.82292,319,230,571.482,416,616.6350,670,327,462.520.00494,303,702,740.3457,947,489,023.11752,221,181,111.3840,156.13117,837,365.9458,065,326,389.0510,035,580,315.360.0010,075,645,425.1137,954,100,648.58105,717,865,829.48143,671,966,478.060.00304,967,294,266.20304,967,294,266.201,146,232,766,538.711,002,560,800,060.65
60-7017,487,420.891,076,297,603,532.3614,036,104.70290,814,817,511.133,451,316.2075,741,800,093.240.00743,757,197,434.4094,756,939,949.131,023,615,491,150.1599,669.26538,569,606.6495,295,509,555.7713,876,222,379.460.004,526,165,878.9876,893,121,297.32136,628,340,854.40213,521,462,151.710.00357,301,731,335.25357,301,731,335.251,483,083,714,369.921,269,562,252,218.21
70-8017,458,919.861,464,213,686,866.6812,360,019.37273,963,108,182.615,098,900.49140,442,771,908.390.001,075,644,447,423.82140,642,351,660.551,365,392,231,019.4633,855.6555,313,312.79140,697,664,973.3414,670,327,830.000.002,102,943,397.99123,924,393,745.35178,884,431,529.15302,808,825,274.500.00416,658,342,737.15416,658,342,737.151,938,258,148,220.471,635,449,322,945.97
80-9017,447,003.402,075,669,374,390.9810,199,608.35240,482,416,136.527,247,395.06214,723,593,604.000.001,628,575,104,116.35237,944,285,876.961,931,234,837,157.5288,002.9231,694,274.96237,975,980,151.9219,989,630,981.880.001,012,665,092.60216,973,684,077.44255,369,334,440.44472,343,018,517.870.00434,714,526,036.51434,714,526,036.512,631,120,624,949.112,158,777,606,431.24
90-10017,457,111.504,595,387,268,430.467,737,428.04186,400,379,937.479,719,683.45326,790,320,358.950.004,078,657,188,548.71855,613,723,565.164,367,909,550,741.06133,566.59822,939,483.90856,436,663,049.0617,938,959,610.169,196,571,519.941,218,444,661.47846,475,830,297.37393,693,028,598.911,240,168,858,896.280.00678,442,738,806.72678,442,738,806.725,516,658,494,469.854,276,489,635,573.58
ALL174,512,955.6511,657,330,324,565.10143,273,868.382,537,498,604,299.8731,239,087.27866,250,411,545.180.008,786,044,465,100.611,467,585,407,728.6811,051,070,092,160.76677,388.882,066,552,616.831,469,651,960,345.5195,955,516,558.089,196,571,519.9495,491,382,455.301,287,401,632,852.071,303,235,913,589.522,590,637,546,441.600.003,041,079,112,721.863,041,079,112,721.8615,337,596,955,338.1512,746,959,408,896.55
90-958,719,212.721,416,338,596,317.724,557,781.15110,187,155,431.904,161,431.57126,217,083,796.660.001,182,165,204,651.46195,580,206,407.451,331,964,691,958.4018,847.5151,294,906.94195,631,501,314.409,658,950,149.3428,286,237.36513,197,696.73185,487,639,705.69164,333,064,890.24349,820,704,595.940.00295,989,843,158.19295,989,843,158.191,796,074,339,486.951,446,253,634,891.02
95-996,989,506.161,684,824,812,273.922,758,310.4465,514,708,025.104,231,195.71144,023,885,905.630.001,476,550,486,111.40277,404,872,626.501,584,491,749,539.3255,886.48174,158,222.87277,579,030,849.377,849,538,231.561,180,472,808.36557,792,032.49270,352,173,393.69162,573,022,505.12432,925,195,898.810.00333,762,801,141.00333,762,801,141.002,134,648,408,607.591,701,723,212,708.78
Top 1%1,748,392.631,494,223,859,838.82421,336.4510,698,516,480.471,327,056.1756,549,350,656.650.001,419,941,497,785.85382,628,644,531.201,451,453,109,243.3458,832.60597,486,354.09383,226,130,885.29430,471,229.277,987,812,474.21147,454,932.25390,636,017,197.9866,786,941,203.54457,422,958,401.530.0048,690,094,507.5348,690,094,507.531,585,935,746,375.311,128,512,787,973.78
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_3c00100_3num_returns_StandardDed_3standard_3num_returns_ItemDed_3c04470_3c04600_3c04800_3taxbc_3c62100_3num_returns_AMT_3c09600_3c05800_3c07100_3othertaxes_3refund_3iitax_3payrolltax_3combined_3ubi_3benefit_cost_total_3benefit_value_total_3expanded_income_3aftertax_income_3
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,448,112.0470,702,316,252.0317,394,344.58190,825,064,816.8553,767.47453,525,373.320.002,970,079,108.37186,289,987.3670,285,366,825.760.000.00186,289,987.3660,844,869.090.008,926,332,464.94-8,800,887,346.679,025,834,541.73224,947,195.060.0034,323,063,844.9334,323,063,844.93105,664,448,963.92105,439,501,768.86
10-2017,449,853.91190,594,262,497.4117,159,419.47246,746,416,104.78290,434.434,910,049,339.060.0044,585,036,921.784,141,829,456.04186,427,690,284.0424,969.018,650,501.464,150,479,957.50907,779,042.100.0018,410,176,718.18-15,167,475,802.7822,898,313,803.387,730,838,000.600.00155,877,777,137.91155,877,777,137.91355,170,286,978.00347,439,448,977.40
20-3017,452,690.18314,568,088,082.8116,936,521.65262,241,165,930.50516,168.538,593,076,047.080.00125,936,691,223.5013,019,146,269.58307,675,282,684.3389,179.38224,932,049.8113,244,078,319.383,380,058,239.210.0019,441,297,204.66-9,577,277,124.4838,053,615,016.1428,476,337,891.660.00197,991,200,756.20197,991,200,756.20534,678,455,458.02506,202,117,566.37
30-4017,427,662.28466,583,989,118.2416,564,551.53269,624,575,568.93863,110.7615,582,100,154.000.00237,741,622,053.8925,090,051,858.88454,463,126,178.4557,230.6888,167,778.3925,178,219,637.275,963,697,801.770.0016,418,878,607.602,795,643,227.9055,804,624,351.8658,600,267,579.760.00209,851,626,195.25209,851,626,195.25707,611,263,084.59649,010,995,504.83
40-5017,469,888.13614,402,466,101.1515,885,802.57284,050,840,619.561,584,085.5628,373,283,606.640.00354,673,839,274.9438,327,975,762.28592,910,293,445.82110,759.28178,448,242.9438,506,424,005.229,154,028,606.310.0013,301,647,648.1316,050,747,750.7970,781,857,572.7786,832,605,323.550.00250,950,811,605.74250,950,811,605.74902,004,151,829.15815,171,546,505.59
50-6017,414,293.45790,388,340,526.2214,997,676.82292,319,230,571.482,416,616.6350,670,199,408.350.00494,674,467,349.1357,989,859,251.47752,615,473,930.6040,156.13117,821,869.4658,107,681,120.9410,046,189,664.750.0010,061,500,816.1837,999,990,640.0189,189,691,779.51127,189,682,419.520.00304,967,294,266.20304,967,294,266.201,138,335,056,930.581,011,145,374,511.05
60-7017,487,420.891,076,655,677,701.2114,036,104.70290,814,817,511.133,451,316.2075,741,172,598.610.00744,088,772,962.8394,807,538,037.471,023,974,349,687.2899,669.26538,569,606.6495,346,107,644.1113,880,592,392.530.004,518,768,659.5876,946,746,591.99115,246,846,489.70192,193,593,081.690.00357,301,731,335.25357,301,731,335.251,472,728,591,405.331,280,534,998,323.64
70-8017,458,919.861,464,589,215,029.8312,360,019.37273,963,108,182.615,098,900.49140,441,388,739.520.001,075,994,680,903.62140,690,017,397.421,365,769,461,985.1033,855.6555,313,312.79140,745,330,710.2114,671,597,780.440.002,100,412,969.38123,973,319,960.39150,878,324,496.86274,851,644,457.250.00416,658,342,737.15416,658,342,737.151,924,615,980,931.841,649,764,336,474.59
80-9017,447,003.402,076,438,276,102.2510,199,608.35240,482,416,136.527,247,395.06214,722,398,992.350.001,629,324,346,271.95238,099,001,838.371,932,004,701,971.5288,002.9234,600,015.16238,133,601,853.5319,992,471,181.850.001,009,005,538.13217,132,125,133.55215,478,212,378.29432,610,337,511.840.00434,714,526,036.51434,714,526,036.512,611,935,235,652.292,179,324,898,140.45
90-10017,457,111.504,596,555,418,628.077,737,428.04186,400,379,937.479,719,683.45326,786,226,618.730.004,079,894,401,255.82855,962,954,767.314,369,082,053,653.03137,046.34806,038,977.92856,768,993,745.2317,936,898,525.979,198,305,267.381,215,806,269.24846,814,594,217.41337,960,948,120.731,184,775,542,338.130.00678,442,738,806.72678,442,738,806.725,489,941,575,654.114,305,166,033,315.98
ALL174,512,955.6511,661,478,050,039.21143,271,477.082,537,468,015,379.8531,241,478.57866,273,420,877.650.008,789,883,937,325.831,468,314,664,626.1911,055,207,800,645.95680,868.632,052,542,354.571,470,367,206,980.7695,994,158,104.019,198,305,267.3895,403,826,896.021,288,167,527,248.111,105,318,268,550.972,393,485,795,799.070.003,041,079,112,721.863,041,079,112,721.8615,242,685,046,887.8412,849,199,251,088.77
90-958,719,212.721,416,638,308,320.464,557,781.15110,187,155,431.904,161,431.57126,215,918,766.350.001,182,468,734,460.78195,647,800,575.581,332,265,436,131.3120,930.1451,564,078.98195,699,364,654.569,659,959,645.2128,312,599.58510,815,457.77185,556,902,151.17138,996,095,894.58324,552,998,045.750.00295,989,843,158.19295,989,843,158.191,783,705,050,682.401,459,152,052,636.65
95-996,989,506.161,685,223,742,781.292,758,310.4465,514,708,025.104,231,195.71144,021,293,851.340.001,476,993,843,189.30277,518,988,989.961,584,893,907,335.7657,283.61160,899,521.41277,679,888,511.377,847,452,653.151,181,949,375.80557,792,032.49270,456,593,201.53138,665,329,244.62409,121,922,446.150.00333,762,801,141.00333,762,801,141.002,123,091,255,739.891,713,969,333,293.74
Top 1%1,748,392.631,494,693,367,526.32421,336.4510,698,516,480.471,327,056.1756,549,014,001.040.001,420,431,823,605.74382,796,165,201.781,451,922,710,185.9658,832.60593,575,377.52383,389,740,579.30429,486,227.627,988,043,292.01147,198,778.98390,801,098,864.7160,299,522,981.53451,100,621,846.240.0048,690,094,507.5348,690,094,507.531,583,145,269,231.821,132,044,647,385.58
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_3tax_cut_3perc_cut_3tax_inc_3perc_inc_3mean_3tot_change_3share_of_change_3ubi_3benefit_cost_total_3benefit_value_total_3pc_aftertaxinc_3
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p17,448,112.0476,156.270.44353,322.442.020.223,790,493.800.490.0034,323,063,844.9334,323,063,844.930.81
10-2017,449,853.9177,037.950.44277,653.501.590.213,703,600.750.480.00155,877,777,137.91155,877,777,137.910.64
20-3017,452,690.1868,033.200.39797,621.374.571.6528,755,088.243.750.00197,991,200,756.20197,991,200,756.200.75
30-4017,427,662.2848,305.660.281,175,064.556.742.7347,502,561.836.200.00209,851,626,195.25209,851,626,195.250.86
40-5017,469,888.134,359.120.02839,696.364.812.0936,496,174.144.770.00250,950,811,605.74250,950,811,605.740.84
50-6017,414,293.454,793.840.03880,749.065.062.6445,889,991.425.990.00304,967,294,266.20304,967,294,266.200.86
60-7017,487,420.890.000.00921,254.885.273.0753,625,294.677.000.00357,301,731,335.25357,301,731,335.250.86
70-8017,458,919.869,167.850.051,337,637.697.662.8048,926,215.046.390.00416,658,342,737.15416,658,342,737.150.88
80-9017,447,003.4011,933.990.071,528,192.798.769.08158,441,056.1120.690.00434,714,526,036.51434,714,526,036.510.95
90-10017,457,111.50157,649.280.901,480,663.618.4819.41338,763,920.0444.230.00678,442,738,806.72678,442,738,806.720.67
ALL174,512,955.65457,437.170.269,591,856.245.504.39765,894,396.03100.000.003,041,079,112,721.863,041,079,112,721.860.80
90-958,719,212.7211,342.450.13632,057.457.257.9469,262,445.479.040.00295,989,843,158.19295,989,843,158.190.89
95-996,989,506.16106,240.031.52490,061.777.0114.94104,419,807.8413.630.00333,762,801,141.00333,762,801,141.000.72
Top 1%1,748,392.6340,066.802.29358,544.3920.5194.42165,081,666.7221.550.0048,690,094,507.5348,690,094,507.530.31
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_3tax_cut_3perc_cut_3tax_inc_3perc_inc_3mean_3tot_change_3share_of_change_3ubi_3benefit_cost_total_3benefit_value_total_3pc_aftertaxinc_3
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,448,112.0412,407,373.8771.110.000.00-96.16-1,677,843,701.670.850.0034,323,063,844.9334,323,063,844.930.81
10-2017,449,853.9111,136,687.2163.820.000.00-243.14-4,242,719,584.952.140.00155,877,777,137.91155,877,777,137.910.64
20-3017,452,690.1811,940,048.6268.410.000.00-402.67-7,027,618,379.523.550.00197,991,200,756.20197,991,200,756.200.75
30-4017,427,662.2813,019,600.5674.710.000.00-591.61-10,310,406,481.675.210.00209,851,626,195.25209,851,626,195.250.86
40-5017,469,888.1313,184,159.0675.470.000.00-751.01-13,120,078,903.486.630.00250,950,811,605.74250,950,811,605.740.84
50-6017,414,293.4513,898,493.9479.810.000.00-949.12-16,528,174,049.968.350.00304,967,294,266.20304,967,294,266.200.86
60-7017,487,420.8913,699,999.7378.340.000.00-1,222.68-21,381,494,364.6910.800.00357,301,731,335.25357,301,731,335.250.86
70-8017,458,919.8613,556,482.5277.650.000.00-1,604.11-28,006,107,032.2914.150.00416,658,342,737.15416,658,342,737.150.88
80-9017,447,003.4014,533,610.6583.300.000.00-2,286.42-39,891,122,062.1420.160.00434,714,526,036.51434,714,526,036.510.95
90-10017,457,111.5014,752,344.2184.514,152.020.02-3,192.51-55,732,080,478.1828.160.00678,442,738,806.72678,442,738,806.720.67
ALL174,512,955.65132,128,800.3975.714,152.020.00-1,134.11-197,917,645,038.55100.000.003,041,079,112,721.863,041,079,112,721.860.80
90-958,719,212.727,453,858.1785.490.000.00-2,905.88-25,336,968,995.6612.800.00295,989,843,158.19295,989,843,158.190.89
95-996,989,506.165,732,563.4982.020.000.00-3,420.51-23,907,693,260.5012.080.00333,762,801,141.00333,762,801,141.000.72
Top 1%1,748,392.631,565,922.5589.564,152.020.24-3,710.50-6,487,418,222.013.280.0048,690,094,507.5348,690,094,507.530.31
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_3tax_cut_3perc_cut_3tax_inc_3perc_inc_3mean_3tot_change_3share_of_change_3ubi_3benefit_cost_total_3benefit_value_total_3pc_aftertaxinc_3
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,448,112.0412,407,373.8771.110.000.00-95.94-1,674,053,207.870.850.0034,323,063,844.9334,323,063,844.930.81
10-2017,449,853.9111,136,687.2163.820.000.00-242.93-4,239,015,984.212.150.00155,877,777,137.91155,877,777,137.910.64
20-3017,452,690.1811,940,048.6268.410.000.00-401.02-6,998,863,291.283.550.00197,991,200,756.20197,991,200,756.200.75
30-4017,427,662.2813,019,600.5674.710.000.00-588.89-10,262,903,919.845.210.00209,851,626,195.25209,851,626,195.250.86
40-5017,469,888.1313,184,159.0675.470.000.00-748.92-13,083,582,729.346.640.00250,950,811,605.74250,950,811,605.740.84
50-6017,414,293.4513,898,493.9479.810.000.00-946.48-16,482,284,058.548.360.00304,967,294,266.20304,967,294,266.200.86
60-7017,487,420.8913,699,999.7378.340.000.00-1,219.61-21,327,869,070.0210.820.00357,301,731,335.25357,301,731,335.250.86
70-8017,458,919.8613,556,482.5277.650.000.00-1,601.31-27,957,180,817.2514.180.00416,658,342,737.15416,658,342,737.150.88
80-9017,447,003.4014,533,610.6583.300.000.00-2,277.34-39,732,681,006.0320.150.00434,714,526,036.51434,714,526,036.510.95
90-10017,457,111.5014,752,344.2184.514,152.020.02-3,173.11-55,393,316,558.1428.100.00678,442,738,806.72678,442,738,806.720.67
ALL174,512,955.65132,128,800.3975.714,152.020.00-1,129.73-197,151,750,642.52100.000.003,041,079,112,721.863,041,079,112,721.860.80
90-958,719,212.727,453,858.1785.490.000.00-2,897.93-25,267,706,550.1912.820.00295,989,843,158.19295,989,843,158.190.89
95-996,989,506.165,732,563.4982.020.000.00-3,405.57-23,803,273,452.6612.070.00333,762,801,141.00333,762,801,141.000.72
Top 1%1,748,392.631,565,922.5589.564,152.020.24-3,616.09-6,322,336,555.293.210.0048,690,094,507.5348,690,094,507.530.31
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_4.json b/webapp/apps/taxbrain/tests/response_year_4.json index f2d28c1b..db58a286 100644 --- a/webapp/apps/taxbrain/tests/response_year_4.json +++ b/webapp/apps/taxbrain/tests/response_year_4.json @@ -1 +1 @@ -{"aggr_1": {"ind_tax_4": "1430190947811.38", "combined_tax_4": "2847692813539.56", "payroll_tax_4": "1417501865728.18"}, "aggr_2": {"ind_tax_4": "1943876106392.17", "combined_tax_4": "4040509514084.57", "payroll_tax_4": "2096633407692.40"}, "diff_ptax_xdec": {"20-30_4": ["17926159.36", "0.00", "0.00", "12648307.66", "70.56", "1334.84", "23928608562.70", "3.52", "319507143603.53", "187542524307.10", "187542524307.10", "51.56"], "40-50_4": ["17926926.71", "0.00", "0.00", "13738273.11", "76.63", "2457.31", "44051934903.14", "6.49", "376276369491.18", "263204287230.56", "263204287230.56", "35.69"], "0-10p_4": ["16549618.88", "0.00", "0.00", "12193817.75", "73.68", "316.34", "5235314516.21", "0.77", "229400929808.10", "36404560425.20", "36404560425.20", "186.07"], "ALL_4": ["179256603.79", "1394.75", "0.00", "136141022.58", "75.95", "3788.60", "679131541964.23", "100.00", "3912023329441.82", "3141098984033.64", "3141098984033.64", "21.60"], "0-10n_4": ["95697.31", "0.00", "0.00", "20641.49", "21.57", "274.00", "26221367.04", "0.00", "2064346855.87", "1035245386.60", "1035245386.60", "-7.06"], "30-40_4": ["17924120.80", "0.00", "0.00", "13079989.25", "72.97", "1813.46", "32504612255.85", "4.79", "343859796039.32", "232707773322.17", "232707773322.17", "42.03"], "Top 1%_4": ["1792584.26", "1394.75", "0.08", "1577436.76", "88.00", "12080.42", "21655162224.08", "3.19", "51738454273.58", "76499040831.11", "76499040831.11", "1.78"], "10-20_4": ["17925369.41", "0.00", "0.00", "11666182.85", "65.08", "802.86", "14391562163.88", "2.12", "291031831689.67", "148131731864.85", "148131731864.85", "70.91"], "90-95_4": ["8962290.47", "0.00", "0.00", "7627996.60", "85.11", "9891.73", "88652593682.53", "13.05", "258711881722.52", "289993743113.51", "289993743113.51", "9.90"], "0-10z_4": ["1280047.26", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "24934531331.50", "0.00", "0.00", "inf"], "50-60_4": ["17925777.08", "0.00", "0.00", "14013888.25", "78.18", "3192.97", "57236420208.36", "8.43", "404889214632.90", "309474898174.78", "309474898174.78", "29.90"], "90-100_4": ["17925671.42", "1394.75", "0.01", "15396204.05", "85.89", "10916.00", "195676703943.33", "28.81", "521730128745.20", "674101483637.81", "674101483637.81", "6.27"], "80-90_4": ["17926373.46", "0.00", "0.00", "14773217.41", "82.41", "7494.25", "134344809617.76", "19.78", "497619201809.37", "499593590630.58", "499593590630.58", "14.11"], "60-70_4": ["17924431.35", "0.00", "0.00", "14232371.97", "79.40", "4146.82", "74329326350.78", "10.94", "434636821451.55", "359865050059.42", "359865050059.42", "24.71"], "95-99_4": ["7170796.69", "0.00", "0.00", "6190770.69", "86.33", "11905.09", "85368948036.72", "12.57", "211279792749.10", "307608699693.19", "307608699693.19", "6.28"], "70-80_4": ["17926410.75", "0.00", "0.00", "14378128.79", "80.21", "5433.66", "97406028075.17", "14.34", "466073013983.62", "429037838994.57", "429037838994.57", "19.22"]}, "diff_comb_xbin": {">$1000K_4": ["431726.28", "134.77", "0.03", "431196.67", "99.88", "21939.15", "9471708741.70", "0.79", "12457793059.27", "8126312978.16", "8126312978.16", "0.81"], "$10-20K_4": ["12619228.12", "0.00", "0.00", "9440516.43", "74.81", "1608.61", "20299459655.20", "1.70", "196992098909.37", "71163930623.23", "71163930623.23", "92.57"], "ALL_4": ["179256603.79", "134.77", "0.00", "152384509.97", "85.01", "6654.24", "1192816700545.01", "100.00", "3912023329441.82", "3141098984033.64", "3141098984033.64", "21.60"], "<$0K_4": ["95697.31", "0.00", "0.00", "23871.46", "24.94", "453.72", "43419981.82", "0.00", "2064346855.87", "1035245386.60", "1035245386.60", "-7.06"], "$30-40K_4": ["17440577.42", "0.00", "0.00", "13436310.72", "77.04", "3335.00", "58164304246.85", "4.88", "318786346153.60", "197768408995.20", "197768408995.20", "47.18"], "$100-200K_4": ["37781655.44", "0.00", "0.00", "35620404.34", "94.28", "11069.65", "418229597651.83", "35.06", "1017439093693.01", "980513191379.15", "980513191379.15", "16.14"], "$500-1000K_4": ["1232795.89", "0.00", "0.00", "1221023.53", "99.05", "20707.37", "25527956917.17", "2.14", "35494753099.46", "60711579838.80", "60711579838.80", "2.60"], "$75-100K_4": ["20087587.44", "0.00", "0.00", "18275388.16", "90.98", "6885.72", "138317427419.38", "11.60", "483735023590.25", "397445836310.05", "397445836310.05", "25.17"], "$20-30K_4": ["17430676.04", "0.00", "0.00", "12181245.33", "69.88", "2439.73", "42526213086.85", "3.57", "293869939532.63", "167981176012.46", "167981176012.46", "60.45"], "$0-10K_4": ["11452638.15", "0.00", "0.00", "9173878.65", "80.10", "778.68", "8917892351.87", "0.75", "152543201500.16", "16973159972.25", "16973159972.25", "274.79"], "$40-50K_4": ["15614029.08", "0.00", "0.00", "12681306.16", "81.22", "3943.02", "61566447036.90", "5.16", "307545743795.36", "208951211409.36", "208951211409.36", "40.08"], "$50-75K_4": ["28835417.60", "0.00", "0.00", "25029803.41", "86.80", "5218.34", "150473054718.02", "12.61", "630329024110.20", "464256743114.07", "464256743114.07", "32.33"], "=$0K_4": ["1280047.26", "0.00", "0.00", "381926.60", "29.84", "386.56", "494819049.31", "0.04", "24934531331.50", "0.00", "0.00", "inf"], "$200-500K_4": ["14954527.76", "0.00", "0.00", "14487638.51", "96.88", "17304.75", "258784399688.12", "21.70", "435831433811.13", "566172188014.32", "566172188014.32", "7.66"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"20-30_4": ["17926159.36", "655827279997.53", "17446630.53", "341851247728.68", "471370.34", "10703285154.58", "0.00", "318403244723.26", "34501199014.78", "646614862540.42", "611828.96", "1107720174.13", "35608919188.92", "10662989537.28", "0.00", "5426479004.73", "19519450646.90", "72642692338.61", "92162142985.51", "319507143603.53", "187542524307.10", "187542524307.10", "881356736798.04", "789194593812.54"], "40-50_4": ["17926926.71", "1018777067916.87", "17009414.36", "377873663400.43", "908152.76", "21300644510.15", "0.00", "624328094017.64", "73238893069.10", "1001866354189.61", "260484.43", "638187979.40", "73877081048.51", "16028081648.75", "0.00", "1810274863.15", "56038724536.61", "133369646356.44", "189408370893.05", "376276369491.18", "263204287230.56", "263204287230.56", "1349243269406.20", "1159834898513.15"], "0-10p_4": ["16549618.88", "308031601463.97", "16139996.09", "220130040616.57", "401159.65", "4834825167.51", "0.00", "100722323555.42", "10092222150.46", "303515899225.59", "4329646.07", "4172960641.91", "14265182792.37", "4815579309.57", "0.00", "7329240207.79", "2120363275.01", "15782802189.47", "17903165464.47", "229400929808.10", "36404560425.20", "36404560425.20", "347781823284.88", "329878657820.41"], "ALL_4": ["179256603.79", "16641751641575.89", "155974584.74", "3489492285309.05", "23139237.49", "743751917932.49", "0.00", "12475267650776.78", "2101708319861.56", "16104076943259.07", "7921842.83", "11519848489.77", "2113228168351.33", "151112585620.57", "11005008379.03", "29244484717.62", "1943876106392.17", "2096633407692.40", "4040509514084.57", "3912023329441.82", "3141098984033.64", "3141098984033.64", "20803274322373.80", "16762764808289.22"], "0-10n_4": ["95697.31", "-12131722576.04", "17868.02", "2110077719.32", "63.83", "9621927.82", "0.00", "916740485.93", "224506297.08", "-12140651146.66", "0.00", "0.00", "224506297.08", "1615276.67", "2688240.29", "272360.10", "225306900.60", "82105572.42", "307412473.01", "2064346855.87", "1035245386.60", "1035245386.60", "-25523469322.29", "-25830881795.30"], "30-40_4": ["17924120.80", "806881872318.00", "17279456.02", "358935223037.60", "635819.70", "14165989812.60", "0.00", "442807383782.22", "49123629761.70", "795175521124.57", "365723.96", "751248142.30", "49874877903.99", "12892218476.86", "0.00", "2857647343.83", "34125012083.30", "98648708221.01", "132773720304.30", "343859796039.32", "232707773322.17", "232707773322.17", "1092765785348.89", "959992065044.59"], "Top 1%_4": ["1792584.26", "1709100511755.28", "558629.34", "16443176395.36", "1233819.20", "58433346767.66", "0.00", "1628153479006.79", "438522513962.55", "1664134890083.00", "94543.22", "1046829210.00", "439569343172.55", "156063978.39", "8762869745.81", "22536600.22", "448153612339.76", "93555221814.01", "541708834153.77", "51738454273.58", "76499040831.11", "76499040831.11", "1851795466559.16", "1310086632405.39"], "10-20_4": ["17925369.41", "495036371229.78", "17590080.89", "324247729440.34", "329338.52", "5846201448.40", "0.00", "188757233806.97", "19704518068.88", "489852831344.68", "1403559.15", "1751006769.35", "21455524838.23", "6863956556.30", "0.00", "9212064478.85", "5379503803.09", "43500557392.37", "48880061195.46", "291031831689.67", "148131731864.85", "148131731864.85", "661875359807.54", "612995298612.08"], "90-95_4": ["8962290.47", "1856769195060.72", "5374355.20", "159894375652.44", "3584656.99", "126639648791.57", "0.00", "1565081083835.08", "275353395984.80", "1768394164222.43", "46432.80", "99593309.95", "275452989294.75", "11233229716.48", "227370385.01", "72246185.88", "264374883777.40", "270771612691.86", "535146496469.25", "258711881722.52", "289993743113.51", "289993743113.51", "2287754982947.56", "1752608486478.31"], "0-10z_4": ["1280047.26", "24918848435.70", "1268053.83", "27207049371.34", "11656.89", "18062489.36", "0.00", "2422508042.97", "251506662.18", "24903104506.48", "326676.47", "470421596.58", "721928258.77", "227109209.45", "0.00", "0.00", "494819049.31", "0.00", "494819049.31", "24934531331.50", "0.00", "0.00", "24934531331.50", "24439712282.19"], "50-60_4": ["17925777.08", "1269742576631.33", "16573562.04", "392924241698.16", "1346571.35", "34606205479.15", "0.00", "845692724018.74", "107491877798.22", "1243096700574.13", "159449.68", "463570231.74", "107955448029.96", "17812995289.63", "0.00", "1133087244.66", "89009365495.68", "173068167327.70", "262077532823.38", "404889214632.90", "309474898174.78", "309474898174.78", "1659129105045.87", "1397051572222.48"], "90-100_4": ["17925671.42", "5711613784667.82", "9437422.87", "280593827816.73", "8484025.21", "323450971264.65", "0.00", "5088150564983.08", "1084247963455.08", "5479319199588.44", "224674.30", "1413956314.48", "1085661919769.56", "19903394045.20", "11001644057.67", "164866287.91", "1076595303494.12", "634464390739.21", "1711059694233.33", "521730128745.20", "674101483637.81", "674101483637.81", "6749842784704.63", "5038783090471.30"], "80-90_4": ["17926373.46", "2725913201928.12", "12735883.05", "364061467352.98", "5185658.94", "173508777426.45", "0.00", "2180886574790.26", "347920879134.74", "2605963954546.88", "93554.07", "226406796.21", "348147285930.95", "22035327030.34", "676081.07", "236513646.55", "325876121335.12", "406282724702.72", "732158846037.84", "497619201809.37", "499593590630.58", "499593590630.58", "3415408909762.96", "2683250063725.12"], "60-70_4": ["17924431.35", "1601012337427.75", "15832816.46", "403443874973.62", "2085866.49", "56902635007.08", "0.00", "1141526719784.21", "152489010146.62", "1559215620113.31", "85028.52", "293958866.42", "152782969013.04", "19361006859.89", "0.00", "694553976.78", "132727408176.37", "224610547313.07", "357337955489.44", "434636821451.55", "359865050059.42", "359865050059.42", "2057612581175.08", "1700274625685.64"], "95-99_4": ["7170796.69", "2145744077851.82", "3504438.33", "104256275768.93", "3665549.02", "138377975705.43", "0.00", "1894916002141.22", "370372053507.73", "2046790145283.01", "83698.28", "267533794.53", "370639587302.26", "8514100350.34", "2011403926.85", "70083501.81", "364066807376.97", "270137556233.34", "634204363610.31", "211279792749.10", "307608699693.19", "307608699693.19", "2610292335197.91", "1976087971587.60"], "70-80_4": ["17926410.75", "2036128422135.06", "14643400.58", "396113842153.28", "3279553.81", "98404698244.72", "0.00", "1540653538786.07", "222422114302.72", "1966693546651.62", "61217.22", "230410977.24", "222652525279.96", "20508312380.63", "0.00", "379485303.27", "201764727596.06", "294181065539.40", "495945793135.46", "466073013983.62", "429037838994.57", "429037838994.57", "2588846905030.48", "2092901111895.02"]}, "aggr_d": {"ind_tax_4": "513685158580.79", "combined_tax_4": "1192816700545.01", "payroll_tax_4": "679131541964.23"}, "dropq_version": "0.17.0", "dist1_xdec": {"20-30_4": ["17926159.36", "337272629418.92", "14235337.13", "277270420010.73", "642982.01", "13438212263.42", "0.00", "132166221013.91", "13504339104.28", "325938156009.50", "36227.03", "55238365.89", "13559577470.17", "3538168139.61", "0.00", "21835273420.38", "-11813864089.82", "48714083775.90", "36900219686.09", "0.00", "194311892248.92", "194311892248.92", "557605804065.41", "520705584379.32"], "40-50_4": ["17926926.71", "643660221358.92", "14825225.47", "304772140768.31", "1469812.15", "30486120666.56", "0.00", "366272364707.33", "39584237973.14", "620217736087.84", "32291.04", "114907377.89", "39699145351.03", "9036089531.83", "0.00", "13941389628.40", "16721666190.80", "89317711453.30", "106039377644.11", "0.00", "271985941355.15", "271985941355.15", "960835519330.25", "854796141686.15"], "0-10p_4": ["16549618.88", "78644662786.10", "13964700.74", "184743729152.92", "32814.32", "328244775.95", "0.00", "2872460342.92", "185261889.99", "78327823522.62", "10128.70", "4637468.07", "189899358.07", "80517128.93", "0.00", "9089017957.58", "-8979635728.44", "10547487673.26", "1567851944.81", "0.00", "37508698869.45", "37508698869.45", "116881365793.16", "115313513848.35"], "ALL_4": ["179256603.79", "12743412488398.00", "126288217.40", "2675989396858.30", "33867015.66", "1005705493901.86", "0.00", "9656719729422.14", "1626621392936.01", "12034810853117.41", "476338.68", "2036006960.76", "1628657399896.77", "107375831971.94", "10391303130.27", "101481923243.72", "1430190947811.38", "1417501865728.18", "2847692813539.56", "0.00", "3208524337469.45", "3208524337469.45", "16632498756494.77", "13784805942955.21"], "0-10n_4": ["95697.31", "-14193308198.88", "5737.64", "1765904883.94", "63.83", "9621927.82", "0.00", "832345138.52", "206308811.17", "-14202236769.50", "0.00", "0.00", "206308811.17", "693295.00", "2688240.29", "195470.64", "208108285.82", "55884205.37", "263992491.20", "0.00", "1103565618.57", "1103565618.57", "-27529845396.69", "-27793837887.88"], "30-40_4": ["17924120.80", "464276961560.44", "14751852.99", "292051406184.21", "850842.30", "17593563393.84", "0.00", "228738348916.46", "24275286610.72", "450004642841.28", "28840.03", "70521258.14", "24345807868.86", "5820343838.35", "0.00", "17985472417.06", "539991613.45", "66144095965.15", "66684087578.60", "0.00", "241411373694.56", "241411373694.56", "742598263236.33", "675914175657.73"], "Top 1%_4": ["1792584.26", "1659077059775.43", "442192.25", "11424774763.49", "1337298.64", "61345928106.94", "0.00", "1580505548388.46", "422660013843.55", "1612273770499.95", "92939.42", "978136639.96", "423638150483.51", "126251548.44", "8691030758.77", "120049941.67", "432082879752.17", "71900059589.93", "503982939342.10", "0.00", "76805575800.06", "76805575800.06", "1791191435884.88", "1287208496542.77"], "10-20_4": ["17925369.41", "204244088379.06", "13311044.35", "264220680769.90", "329710.54", "6659056528.05", "0.00", "46232387017.65", "4417365107.37", "198357630286.02", "51003.65", "39833232.03", "4457198339.41", "1130975758.21", "0.00", "19311554617.13", "-15985332035.93", "29108995228.49", "13123663192.56", "0.00", "156026050763.82", "156026050763.82", "371781614773.86", "358657951581.30"], "90-95_4": ["8962290.47", "1599265203657.81", "3932277.02", "104700407084.16", "4848550.42", "162284316628.17", "0.00", "1333670612236.34", "222822129758.52", "1488169593706.81", "29103.42", "64284726.39", "222886414484.91", "11049887381.62", "62514675.49", "453005328.44", "211446036450.34", "182119019009.33", "393565055459.67", "0.00", "292391927380.92", "292391927380.92", "1988312982146.45", "1594747926686.78"], "0-10z_4": ["1280047.26", "-15682895.80", "0.00", "22802272035.65", "0.00", "0.00", "0.00", "0.00", "0.00", "-15682895.80", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "50-60_4": ["17925777.08", "865966261512.74", "14114898.64", "309011960906.01", "2506049.84", "55689017222.45", "0.00", "550126272923.69", "64690959269.74", "824812314015.14", "36632.32", "127306052.94", "64818265322.68", "12400475958.59", "0.00", "8744163048.30", "43673626315.79", "115831747119.34", "159505373435.13", "0.00", "317774845853.55", "317774845853.55", "1234984697193.10", "1075479323757.97"], "90-100_4": ["17925671.42", "5194463874799.30", "6933517.03", "185230195633.77", "10639883.93", "384244728794.90", "0.00", "4616874848281.19", "968665650177.69", "4923686994678.58", "186067.91", "1288811531.47", "969954461709.16", "20045406949.64", "10388614889.97", "1026908714.08", "959270760935.41", "438787686795.88", "1398058447731.29", "0.00", "678714930577.16", "678714930577.16", "6139384586672.66", "4741326138941.37"], "80-90_4": ["17926373.46", "2230255710474.25", "9386776.24", "243278314923.32", "7988119.31", "247817221458.48", "0.00", "1751121521222.24", "257613753860.83", "2063577939441.30", "42154.76", "115182180.15", "257728936040.97", "21015150678.90", "0.00", "1453651487.53", "235260133874.54", "271937915084.95", "507198048959.49", "0.00", "505781809425.45", "505781809425.45", "2858745753231.65", "2351547704272.16"], "60-70_4": ["17924431.35", "1167552430667.01", "13167393.38", "304453728972.74", "3816518.87", "96374201542.64", "0.00", "803338888375.70", "102032679619.87", "1098241446479.56", "28323.74", "113655105.61", "102146334725.48", "15763518028.19", "0.00", "5268805938.30", "81114010758.98", "150281220962.29", "231395231721.28", "0.00", "367664398757.47", "367664398757.47", "1594741522733.58", "1363346291012.31"], "95-99_4": ["7170796.69", "1936121611366.06", "2559047.76", "69105013786.13", "4454034.87", "160614484059.80", "0.00", "1702698687656.38", "323183506575.61", "1823243630471.82", "64025.07", "246390165.13", "323429896740.74", "8869268019.58", "1635069455.71", "453853443.98", "315741844732.90", "184768608196.63", "500510452929.52", "0.00", "309517427396.18", "309517427396.18", "2359880168641.33", "1859369715711.81"], "70-80_4": ["17926410.75", "1571284638535.95", "11591733.79", "286388642616.78", "5590218.56", "153065505327.74", "0.00", "1158144071482.52", "151445550511.21", "1465864089420.86", "24669.50", "105914388.57", "151551464899.78", "18544492664.68", "0.00", "2825490544.33", "130181481690.77", "196775037464.23", "326956519155.00", "0.00", "436240830305.35", "436240830305.35", "2082469474861.45", "1755512955706.45"]}, "diff_comb_xdec": {"20-30_4": ["17926159.36", "0.00", "0.00", "13449865.98", "75.03", "3082.75", "55261923299.42", "4.63", "319507143603.53", "187542524307.10", "187542524307.10", "51.56"], "40-50_4": ["17926926.71", "0.00", "0.00", "15268339.53", "85.17", "4650.49", "83368993248.94", "6.99", "376276369491.18", "263204287230.56", "263204287230.56", "35.69"], "0-10p_4": ["16549618.88", "0.00", "0.00", "13356579.99", "80.71", "987.05", "16335313519.66", "1.37", "229400929808.10", "36404560425.20", "36404560425.20", "186.07"], "ALL_4": ["179256603.79", "134.77", "0.00", "152384509.97", "85.01", "6654.24", "1192816700545.01", "100.00", "3912023329441.82", "3141098984033.64", "3141098984033.64", "21.60"], "0-10n_4": ["95697.31", "0.00", "0.00", "23871.46", "24.94", "453.72", "43419981.82", "0.00", "2064346855.87", "1035245386.60", "1035245386.60", "-7.06"], "30-40_4": ["17924120.80", "0.00", "0.00", "14194823.76", "79.19", "3687.19", "66089632725.70", "5.54", "343859796039.32", "232707773322.17", "232707773322.17", "42.03"], "Top 1%_4": ["1792584.26", "134.77", "0.01", "1777139.41", "99.14", "21045.54", "37725894811.67", "3.16", "51738454273.58", "76499040831.11", "76499040831.11", "1.78"], "10-20_4": ["17925369.41", "0.00", "0.00", "12360119.12", "68.95", "1994.74", "35756398002.90", "3.00", "291031831689.67", "148131731864.85", "148131731864.85", "70.91"], "90-95_4": ["8962290.47", "0.00", "0.00", "8691859.88", "96.98", "15797.46", "141581441009.59", "11.87", "258711881722.52", "289993743113.51", "289993743113.51", "9.90"], "0-10z_4": ["1280047.26", "0.00", "0.00", "381926.60", "29.84", "386.56", "494819049.31", "0.04", "24934531331.50", "0.00", "0.00", "inf"], "50-60_4": ["17925777.08", "0.00", "0.00", "15822073.63", "88.26", "5722.05", "102572159388.25", "8.60", "404889214632.90", "309474898174.78", "309474898174.78", "29.90"], "90-100_4": ["17925671.42", "134.77", "0.00", "17407722.45", "97.11", "17461.06", "313001246502.04", "26.24", "521730128745.20", "674101483637.81", "674101483637.81", "6.27"], "80-90_4": ["17926373.46", "0.00", "0.00", "17088208.22", "95.32", "12549.15", "224960797078.35", "18.86", "497619201809.37", "499593590630.58", "499593590630.58", "14.11"], "60-70_4": ["17924431.35", "0.00", "0.00", "16342269.44", "91.17", "7026.32", "125942723768.17", "10.56", "434636821451.55", "359865050059.42", "359865050059.42", "24.71"], "95-99_4": ["7170796.69", "0.00", "0.00", "6938723.16", "96.76", "18644.22", "133693910680.78", "11.21", "211279792749.10", "307608699693.19", "307608699693.19", "6.28"], "70-80_4": ["17926410.75", "0.00", "0.00", "16688709.79", "93.10", "9426.83", "168989273980.45", "14.17", "466073013983.62", "429037838994.57", "429037838994.57", "19.22"]}, "diff_ptax_xbin": {">$1000K_4": ["431726.28", "1394.75", "0.32", "393536.91", "91.15", "12167.86", "5253186403.44", "0.77", "12457793059.27", "8126312978.16", "8126312978.16", "0.81"], "$10-20K_4": ["12619228.12", "0.00", "0.00", "8905981.06", "70.57", "627.45", "7917915527.35", "1.17", "196992098909.37", "71163930623.23", "71163930623.23", "92.57"], "ALL_4": ["179256603.79", "1394.75", "0.00", "136141022.58", "75.95", "3788.60", "679131541964.23", "100.00", "3912023329441.82", "3141098984033.64", "3141098984033.64", "21.60"], "<$0K_4": ["95697.31", "0.00", "0.00", "20641.49", "21.57", "274.00", "26221367.04", "0.00", "2064346855.87", "1035245386.60", "1035245386.60", "-7.06"], "$30-40K_4": ["17440577.42", "0.00", "0.00", "12528109.50", "71.83", "1515.48", "26430765336.01", "3.89", "318786346153.60", "197768408995.20", "197768408995.20", "47.18"], "$100-200K_4": ["37781655.44", "0.00", "0.00", "30758610.65", "81.41", "6525.15", "246530909889.62", "36.30", "1017439093693.01", "980513191379.15", "980513191379.15", "16.14"], "$500-1000K_4": ["1232795.89", "0.00", "0.00", "1075061.59", "87.21", "11957.11", "14740674259.30", "2.17", "35494753099.46", "60711579838.80", "60711579838.80", "2.60"], "$75-100K_4": ["20087587.44", "0.00", "0.00", "15952858.63", "79.42", "4048.15", "81317572683.02", "11.97", "483735023590.25", "397445836310.05", "397445836310.05", "25.17"], "$20-30K_4": ["17430676.04", "0.00", "0.00", "11504425.46", "66.00", "1002.34", "17471454390.19", "2.57", "293869939532.63", "167981176012.46", "167981176012.46", "60.45"], "$0-10K_4": ["11452638.15", "0.00", "0.00", "8240275.53", "71.95", "207.50", "2376410896.24", "0.35", "152543201500.16", "16973159972.25", "16973159972.25", "274.79"], "$40-50K_4": ["15614029.08", "0.00", "0.00", "11638391.25", "74.54", "2001.71", "31254744274.00", "4.60", "307545743795.36", "208951211409.36", "208951211409.36", "40.08"], "$50-75K_4": ["28835417.60", "0.00", "0.00", "22292604.30", "77.31", "2841.10", "81924353396.63", "12.06", "630329024110.20", "464256743114.07", "464256743114.07", "32.33"], "=$0K_4": ["1280047.26", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "24934531331.50", "0.00", "0.00", "inf"], "$200-500K_4": ["14954527.76", "0.00", "0.00", "12830526.21", "85.80", "10959.04", "163887333541.39", "24.13", "435831433811.13", "566172188014.32", "566172188014.32", "7.66"]}, "dist2_xbin": {">$1000K_4": ["431726.28", "885300202911.05", "69036.57", "1960376995.08", "362566.33", "20675606498.81", "0.00", "860149815882.49", "251967032272.86", "868567491137.24", "63150.11", "893497847.07", "252860530119.93", "8753048.56", "6923130912.99", "22361.54", "259774885622.82", "32863805460.16", "292638691082.98", "12457793059.27", "8126312978.16", "8126312978.16", "918195597596.25", "625556906513.26"], "$10-20K_4": ["12619228.12", "311907039641.52", "12332197.12", "218140539954.71", "278612.48", "4360383963.54", "0.00", "103444012251.06", "10453520217.21", "307923099538.91", "2313509.98", "2101359609.40", "12554879826.61", "4145303180.07", "0.00", "8419971679.36", "-10395032.82", "23895697585.65", "23885302552.83", "196992098909.37", "71163930623.23", "71163930623.23", "390774839956.46", "366889537403.63"], "ALL_4": ["179256603.79", "16641751641575.89", "155974584.74", "3489492285309.05", "23139237.49", "743751917932.49", "0.00", "12475267650776.78", "2101708319861.56", "16104076943259.07", "7921842.83", "11519848489.77", "2113228168351.33", "151112585620.57", "11005008379.03", "29244484717.62", "1943876106392.17", "2096633407692.40", "4040509514084.57", "3912023329441.82", "3141098984033.64", "3141098984033.64", "20803274322373.79", "16762764808289.22"], "<$0K_4": ["95697.31", "-12131722576.04", "17868.02", "2110077719.32", "63.83", "9621927.82", "0.00", "916740485.93", "224506297.08", "-12140651146.66", "0.00", "0.00", "224506297.08", "1615276.67", "2688240.29", "272360.10", "225306900.60", "82105572.42", "307412473.01", "2064346855.87", "1035245386.60", "1035245386.60", "-25523469322.29", "-25830881795.30"], "$30-40K_4": ["17440577.42", "691783130867.58", "16928662.70", "338720659476.50", "503709.86", "11303875365.82", "0.00", "353318746540.68", "38665475619.29", "682179114210.05", "454444.95", "920796340.99", "39586271960.27", "11167923441.11", "0.00", "4113358373.63", "24304990145.53", "80273138613.37", "104578128758.90", "318786346153.60", "197768408995.20", "197768408995.20", "932624566682.64", "828046437923.74"], "$100-200K_4": ["37781655.44", "5067340551478.74", "28725370.00", "798316177601.16", "9047528.47", "291717145925.50", "0.00", "3968089186416.34", "610268301384.75", "4864073983026.53", "165793.96", "481660101.22", "610749961485.97", "44963085286.65", "1977745.22", "640766440.09", "565148087504.44", "745289893599.55", "1310437981104.00", "1017439093693.01", "980513191379.15", "980513191379.15", "6383562791076.85", "5073124809972.85"], "$500-1000K_4": ["1232795.89", "767434684563.57", "432714.08", "12713861687.97", "800069.47", "34842836663.72", "0.00", "716589865162.03", "175342866701.20", "741341453617.08", "28978.55", "145318083.16", "175488184784.36", "120156178.79", "1741752143.94", "20264148.62", "177089516600.89", "55126756658.95", "232216273259.84", "35494753099.46", "60711579838.80", "60711579838.80", "866242253766.01", "634025980506.17"], "$75-100K_4": ["20087587.44", "1756250340742.55", "17852160.43", "451921649007.23", "2229029.67", "60084538624.62", "0.00", "1245470068307.63", "165605366003.41", "1712011094390.81", "107727.32", "361044221.07", "165966410224.48", "21495436035.38", "0.00", "801937113.44", "143669037075.66", "245725877038.49", "389394914114.15", "483735023590.25", "397445836310.05", "397445836310.05", "2259513237534.92", "1870118323420.78"], "$20-30K_4": ["17430676.04", "539589200225.09", "17080798.30", "323707641764.98", "345286.58", "7024948284.77", "0.00", "230358677038.10", "24525996532.99", "533509780879.86", "837801.44", "1322353695.13", "25848350228.12", "8120798688.99", "0.00", "7367689845.94", "10359861693.19", "52924566442.46", "63284428135.65", "293869939532.63", "167981176012.46", "167981176012.46", "733080437698.15", "669796009562.49"], "$0-10K_4": ["11452638.15", "189003531792.16", "11173966.58", "134994280362.51", "274846.98", "2970659491.80", "0.00", "64287307883.30", "6463105261.45", "186203711483.69", "2875026.78", "2989181225.36", "9452286486.81", "3247004368.87", "0.00", "3298206177.89", "2907075940.04", "7162886590.80", "10069962530.85", "152543201500.16", "16973159972.25", "16973159972.25", "207260428049.07", "197190465518.22"], "$40-50K_4": ["15614029.08", "754627960980.25", "14977094.86", "316689918625.20", "628494.48", "14253632327.07", "0.00", "430491685847.53", "48120426598.21", "742992125060.16", "316760.48", "622287102.81", "48742713701.02", "12091492217.60", "0.00", "2125254308.45", "34525967174.96", "94755481865.33", "129281449040.30", "307545743795.36", "208951211409.36", "208951211409.36", "1013964122306.36", "884682673266.06"], "$50-75K_4": ["28835417.60", "1849454991327.13", "27002689.47", "621452904468.89", "1820577.68", "45344913316.55", "0.00", "1188885174402.69", "146488946395.73", "1814060382549.49", "309108.23", "858466216.16", "147347412611.88", "27437465633.10", "0.00", "2315041106.89", "117594905871.89", "247873067467.35", "365467973339.24", "630329024110.20", "464256743114.07", "464256743114.07", "2432969916185.83", "2067501942846.59"], "=$0K_4": ["1280047.26", "24918848435.70", "1268053.83", "27207049371.34", "11656.89", "18062489.36", "0.00", "2422508042.97", "251506662.18", "24903104506.48", "326676.47", "470421596.58", "721928258.77", "227109209.45", "0.00", "0.00", "494819049.31", "0.00", "494819049.31", "24934531331.50", "0.00", "0.00", "24934531331.50", "24439712282.19"], "$200-500K_4": ["14954527.76", "3816272881186.57", "8113972.78", "241557148274.16", "6836794.77", "251145693053.11", "0.00", "3310843862516.02", "623331269915.22", "3638452254005.42", "122864.56", "353462450.82", "623684732366.03", "18086443055.32", "2335459336.59", "141700801.67", "607792047845.63", "510660130797.88", "1118452178643.50", "435831433811.13", "566172188014.32", "566172188014.32", "4665675069512.05", "3547222890868.54"]}, "diff_itax_xdec": {"20-30_4": ["17926159.36", "10235.26", "0.06", "13116718.31", "73.17", "1747.91", "31333314736.72", "6.10", "319507143603.53", "187542524307.10", "187542524307.10", "51.56"], "40-50_4": ["17926926.71", "3992.06", "0.02", "15129827.92", "84.40", "2193.18", "39317058345.81", "7.65", "376276369491.18", "263204287230.56", "263204287230.56", "35.69"], "0-10p_4": ["16549618.88", "349710.64", "2.11", "9377748.05", "56.66", "670.71", "11099999003.45", "2.16", "229400929808.10", "36404560425.20", "36404560425.20", "186.07"], "ALL_4": ["179256603.79", "422606.16", "0.24", "146716010.39", "81.85", "2865.64", "513685158580.79", "100.00", "3912023329441.82", "3141098984033.64", "3141098984033.64", "21.60"], "0-10n_4": ["95697.31", "844.34", "0.88", "5156.85", "5.39", "179.72", "17198614.77", "0.00", "2064346855.87", "1035245386.60", "1035245386.60", "-7.06"], "30-40_4": ["17924120.80", "8951.33", "0.05", "13943913.73", "77.79", "1873.73", "33585020469.85", "6.54", "343859796039.32", "232707773322.17", "232707773322.17", "42.03"], "Top 1%_4": ["1792584.26", "13.27", "0.00", "1776613.27", "99.11", "8965.12", "16070732587.59", "3.13", "51738454273.58", "76499040831.11", "76499040831.11", "1.78"], "10-20_4": ["17925369.41", "35394.72", "0.20", "11779315.68", "65.71", "1191.88", "21364835839.02", "4.16", "291031831689.67", "148131731864.85", "148131731864.85", "70.91"], "90-95_4": ["8962290.47", "63.93", "0.00", "8672824.82", "96.77", "5905.73", "52928847327.05", "10.30", "258711881722.52", "289993743113.51", "289993743113.51", "9.90"], "0-10z_4": ["1280047.26", "0.00", "0.00", "381926.60", "29.84", "386.56", "494819049.31", "0.10", "24934531331.50", "0.00", "0.00", "inf"], "50-60_4": ["17925777.08", "58.36", "0.00", "15715221.15", "87.67", "2529.08", "45335739179.89", "8.83", "404889214632.90", "309474898174.78", "309474898174.78", "29.90"], "90-100_4": ["17925671.42", "182.93", "0.00", "17377598.47", "96.94", "6545.06", "117324542558.71", "22.84", "521730128745.20", "674101483637.81", "674101483637.81", "6.27"], "80-90_4": ["17926373.46", "1832.64", "0.01", "17044039.82", "95.08", "5054.90", "90615987460.58", "17.64", "497619201809.37", "499593590630.58", "499593590630.58", "14.11"], "60-70_4": ["17924431.35", "9297.44", "0.05", "16231645.96", "90.56", "2879.50", "51613397417.39", "10.05", "434636821451.55", "359865050059.42", "359865050059.42", "24.71"], "95-99_4": ["7170796.69", "105.73", "0.00", "6928160.38", "96.62", "6739.13", "48324962644.07", "9.41", "211279792749.10", "307608699693.19", "307608699693.19", "6.28"], "70-80_4": ["17926410.75", "2106.44", "0.01", "16612897.85", "92.67", "3993.17", "71583245905.29", "13.94", "466073013983.62", "429037838994.57", "429037838994.57", "19.22"]}, "diff_itax_xbin": {">$1000K_4": ["431726.28", "0.00", "0.00", "431207.12", "99.88", "9771.29", "4218522338.26", "0.82", "12457793059.27", "8126312978.16", "8126312978.16", "0.81"], "$10-20K_4": ["12619228.12", "51260.46", "0.41", "8516803.65", "67.49", "981.16", "12381544127.85", "2.41", "196992098909.37", "71163930623.23", "71163930623.23", "92.57"], "ALL_4": ["179256603.79", "422606.16", "0.24", "146716010.39", "81.85", "2865.64", "513685158580.79", "100.00", "3912023329441.82", "3141098984033.64", "3141098984033.64", "21.60"], "<$0K_4": ["95697.31", "844.34", "0.88", "5156.85", "5.39", "179.72", "17198614.77", "0.00", "2064346855.87", "1035245386.60", "1035245386.60", "-7.06"], "$30-40K_4": ["17440577.42", "10201.37", "0.06", "13143562.28", "75.36", "1819.52", "31733538910.84", "6.18", "318786346153.60", "197768408995.20", "197768408995.20", "47.18"], "$100-200K_4": ["37781655.44", "3939.08", "0.01", "35496551.38", "93.95", "4544.50", "171698687762.21", "33.42", "1017439093693.01", "980513191379.15", "980513191379.15", "16.14"], "$500-1000K_4": ["1232795.89", "13.27", "0.00", "1220690.94", "99.02", "8750.26", "10787282657.87", "2.10", "35494753099.46", "60711579838.80", "60711579838.80", "2.60"], "$75-100K_4": ["20087587.44", "9297.44", "0.05", "18153972.10", "90.37", "2837.57", "56999854736.35", "11.10", "483735023590.25", "397445836310.05", "397445836310.05", "25.17"], "$20-30K_4": ["17430676.04", "16891.10", "0.10", "11767766.99", "67.51", "1437.39", "25054758696.66", "4.88", "293869939532.63", "167981176012.46", "167981176012.46", "60.45"], "$0-10K_4": ["11452638.15", "322111.83", "2.81", "5808318.36", "50.72", "571.18", "6541481455.64", "1.27", "152543201500.16", "16973159972.25", "16973159972.25", "274.79"], "$40-50K_4": ["15614029.08", "6700.82", "0.04", "12489337.85", "79.99", "1941.31", "30311702762.90", "5.90", "307545743795.36", "208951211409.36", "208951211409.36", "40.08"], "$50-75K_4": ["28835417.60", "1176.79", "0.00", "24841700.64", "86.15", "2377.24", "68548701321.39", "13.34", "630329024110.20", "464256743114.07", "464256743114.07", "32.33"], "=$0K_4": ["1280047.26", "0.00", "0.00", "381926.60", "29.84", "386.56", "494819049.31", "0.10", "24934531331.50", "0.00", "0.00", "inf"], "$200-500K_4": ["14954527.76", "169.66", "0.00", "14459015.63", "96.69", "6345.71", "94897066146.73", "18.47", "435831433811.13", "566172188014.32", "566172188014.32", "7.66"]}, "dist1_xbin": {">$1000K_4": ["431726.28", "873424953374.77", "55879.10", "1375376787.63", "374849.71", "21003776180.31", "0.00", "848550190579.10", "247843980733.65", "856486519752.26", "60910.61", "817707084.54", "248661687818.19", "8627833.86", "6903345856.60", "42556.36", "255556363284.56", "27610619056.72", "283166982341.28", "0.00", "8178617075.77", "8178617075.77", "903707783512.38", "620540801171.10"], "$10-20K_4": ["12619228.12", "114981217007.05", "9890259.61", "179583152376.43", "134676.02", "2712531346.81", "0.00", "10462815804.03", "927229017.36", "112510781757.76", "29735.14", "16214871.58", "943443888.94", "252123783.03", "0.00", "13083259266.57", "-12391939160.67", "15977782058.30", "3585842897.63", "0.00", "75381256436.89", "75381256436.89", "194107385371.99", "190521542474.36"], "ALL_4": ["179256603.79", "12743412488398.00", "126288217.40", "2675989396858.30", "33867015.66", "1005705493901.86", "0.00", "9656719729422.13", "1626621392936.01", "12034810853117.41", "476338.68", "2036006960.76", "1628657399896.77", "107375831971.94", "10391303130.27", "101481923243.72", "1430190947811.38", "1417501865728.18", "2847692813539.56", "0.00", "3208524337469.45", "3208524337469.45", "16632498756494.77", "13784805942955.22"], "<$0K_4": ["95697.31", "-14193308198.88", "5737.64", "1765904883.94", "63.83", "9621927.82", "0.00", "832345138.52", "206308811.17", "-14202236769.50", "0.00", "0.00", "206308811.17", "693295.00", "2688240.29", "195470.64", "208108285.82", "55884205.37", "263992491.20", "0.00", "1103565618.57", "1103565618.57", "-27529845396.69", "-27793837887.88"], "$30-40K_4": ["17440577.42", "374112463536.32", "14138014.81", "275205129936.43", "670693.49", "13940558582.64", "0.00", "162412225144.45", "16939311191.55", "362511223872.08", "40956.43", "82726787.28", "17022037978.83", "4282351679.97", "0.00", "20168235064.17", "-7428548765.31", "53842373277.36", "46413824512.05", "0.00", "205050672124.34", "205050672124.34", "609016030510.11", "562602205998.06"], "$100-200K_4": ["37781655.44", "4053315352296.21", "22002464.98", "555765445013.88", "14424567.72", "427888574124.12", "0.00", "3109195571618.32", "439566636814.74", "3762634361614.85", "71921.37", "233746398.90", "439800383213.64", "41847363380.23", "0.00", "4503620091.18", "393449399742.23", "498758983709.94", "892208383452.17", "0.00", "994584472812.70", "994584472812.70", "5260284651826.79", "4368076268374.62"], "$500-1000K_4": ["1232795.89", "732997960499.03", "341869.92", "8799918111.80", "881217.56", "37129028092.93", "0.00", "684011972612.77", "164646837808.42", "705463497928.47", "29015.34", "147815858.97", "164794653667.39", "84818889.92", "1694187824.49", "101788658.94", "166302233943.02", "40386082399.65", "206688316342.67", "0.00", "60935336260.42", "60935336260.42", "824638504974.17", "617950188631.50"], "$75-100K_4": ["20087587.44", "1273799651244.11", "14896726.46", "342546477843.12", "4112380.38", "102388356275.83", "0.00", "870980434912.74", "110026452770.01", "1200112087597.24", "38912.09", "136381317.45", "110162834087.46", "17267705776.59", "0.00", "6225945971.57", "86669182339.31", "164408304355.46", "251077486694.77", "0.00", "406234786471.86", "406234786471.86", "1745142358728.09", "1494064872033.32"], "$20-30K_4": ["17430676.04", "246211167287.44", "13199336.05", "262898662787.61", "437782.03", "8835234756.14", "0.00", "76406337504.51", "7482435606.64", "238644057333.25", "40995.25", "42085253.63", "7524520860.27", "1946320926.18", "0.00", "20273096937.56", "-14694897003.47", "35453112052.27", "20758215048.81", "0.00", "175225920384.17", "175225920384.17", "438211421937.11", "417453206888.30"], "$0-10K_4": ["11452638.15", "36464516155.54", "9616970.03", "113824175649.71", "24736.67", "210250805.62", "0.00", "2069539537.06", "139874370.63", "36260015526.32", "3209.67", "779673.03", "140654043.67", "61682800.33", "0.00", "3713376758.93", "-3634405515.59", "4786475694.57", "1152070178.97", "0.00", "17206191363.20", "17206191363.20", "53766238355.28", "52614168176.30"], "$40-50K_4": ["15614029.08", "448119196209.30", "12942030.72", "257453035717.46", "868513.31", "18119574119.12", "0.00", "232131025133.69", "24771695015.10", "433610283090.45", "16550.08", "43044811.82", "24814739826.93", "5892473512.91", "0.00", "14708001901.95", "4214264412.06", "63500737591.33", "67715002003.40", "0.00", "216426757616.22", "216426757616.22", "699284358559.19", "631569356555.79"], "$50-75K_4": ["28835417.60", "1221001969800.09", "23256699.31", "494752034088.42", "3235949.27", "69777347370.78", "0.00", "742010411687.12", "84105937476.01", "1168656050832.15", "53087.85", "204866145.78", "84310803621.78", "17455514260.33", "0.00", "17809084810.95", "49046204550.50", "165948714070.72", "214994918621.23", "0.00", "478169918683.16", "478169918683.16", "1777385424797.75", "1562390506176.53"], "=$0K_4": ["1280047.26", "-15682895.80", "0.00", "22802272035.65", "0.00", "0.00", "0.00", "0.00", "0.00", "-15682895.80", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$200-500K_4": ["14954527.76", "3383193032082.81", "5942228.77", "159217811626.23", "8701585.67", "303690640319.75", "0.00", "2917656859749.83", "529964693320.72", "3172139893477.87", "91044.85", "310638757.78", "530275332078.51", "18276155833.58", "1791081208.89", "895275754.91", "512894981698.90", "346772797256.48", "859667778955.38", "0.00", "570026842622.16", "570026842622.16", "4154484443318.61", "3294816664363.23"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_4\nind_tax,820253950.0048964\npayroll_tax,-206230726930.5796\ncombined_tax,-205410472980.57468\n", "aggr_1": ",0_4\nind_tax,1367066783058.9502\npayroll_tax,1359481493301.343\ncombined_tax,2726548276360.2935\n", "aggr_2": ",0_4\nind_tax,1367887037008.955\npayroll_tax,1153250766370.7637\ncombined_tax,2521137803379.7188\n", "dist1_xbin": ",s006_4,c00100_4,num_returns_StandardDed_4,standard_4,num_returns_ItemDed_4,c04470_4,c04600_4,c04800_4,taxbc_4,c62100_4,num_returns_AMT_4,c09600_4,c05800_4,c07100_4,othertaxes_4,refund_4,iitax_4,payrolltax_4,combined_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,expanded_income_4,aftertax_income_4\n<$0K,62007.962794122315,-7773991240.2335005,62007.962794122315,1413444059.0291383,0.0,0.0,0.0,0.0,0.0,-7773991240.2335005,0.0,0.0,0.0,0.0,0.0,1238061.7433356163,-1238061.7433356163,19449361.086493067,18211299.343157448,0.0,852959620.0686239,852959620.0686239,-6834583453.305824,-6852794752.648983\n=$0K,1107762.212731292,0.0,1107762.212731292,18185442682.242027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11249618.486990932,35402695455.58441,11195916.21070914,105483507072.48294,53702.2762817925,287868695.39475155,0.0,2105312829.3954086,138317697.1627604,35128624714.9128,0.0,0.0,138317697.1627604,57620992.38196881,0.0,3644378534.250596,-3563681829.469805,4749460083.468739,1185778253.9989333,0.0,15967738036.52845,15967738036.52845,51641163848.48665,50455385594.48772\n$10-20K,12143997.175283428,108290062878.70401,12062031.082852071,169721722073.21674,81966.09243135827,1250484536.0631557,0.0,9820301870.152344,837544439.9111881,107211289982.2957,33797.08071513901,6271715.360314724,843816155.2715029,242034004.4810751,0.0,13411023717.493992,-12809241566.703564,15167559283.960537,2358317717.256973,0.0,75778782113.17882,75778782113.17882,187701710885.71658,185343393168.45966\n$20-30K,16533557.955875767,229177499562.07056,16183363.679313064,242434606354.0214,350194.2765627046,6099551409.531643,0.0,73397362519.55649,7170128641.640839,224064700264.85223,90198.33292075491,55811825.9786558,7225940467.619494,1654051042.9342427,0.0,18447551009.843697,-12875661585.158443,32719116802.805435,19843455217.64699,0.0,168997837979.8139,168997837979.8139,414221879964.8196,394378424747.1726\n$30-40K,17586733.23167066,372672244441.155,16961140.18944033,273588996849.41168,625593.0422303281,10787991768.232536,0.0,164224767514.06363,17058229145.157745,364139579970.46533,96822.37017826807,255230997.2951197,17313460142.452866,4277041430.834968,0.0,18895774180.973152,-5859355469.355256,53010421606.291214,47151066136.93596,0.0,213736474210.6366,213736474210.6366,615581716855.9565,568430650719.0205\n$40-50K,16019986.640515579,483915641496.55005,14992126.75313881,254728895494.95566,1027859.8873767675,18578835616.289345,0.0,258414847990.01178,27449544482.371994,469787413338.1051,16080.708967070428,38898830.71086894,27488443313.082863,6549724277.25371,0.0,14170346349.893402,6768372685.935752,68506164440.21338,75274537126.14912,0.0,202607192925.01447,202607192925.01447,722582917367.4691,647308380241.32\n$50-75K,29933848.03007929,1248148488727.5972,26124946.213389535,505413253297.63806,3808901.8166897576,77885003776.0559,0.0,755071311272.5972,85835700962.00487,1189932653595.818,132609.11027142545,196717923.21486536,86032418885.21974,16585252744.906948,0.0,19554372963.036724,49892793177.27606,168456702530.97568,218349495708.25177,0.0,510505481393.60077,510505481393.60077,1838659851799.1616,1620310356090.9097\n$75-100K,19221820.685489163,1216004526041.4424,15386137.537464092,323970609436.5251,3835683.1480250736,84658961381.59973,0.0,843125428373.9163,107357279432.60214,1157427726022.1057,121358.30440706378,681564818.7963514,108038844251.3985,15308453652.428082,0.0,4942875188.192679,87787515410.77774,153202218929.84647,240989734340.62424,0.0,392534346441.8962,392534346441.8962,1663371616765.4395,1422381882424.8154\n$100-200K,37986115.326199085,4111977401221.151,23660185.68664471,553989738940.6602,14325929.639554381,423116297122.1394,0.0,3168937711451.382,451954222034.81866,3823371183326.997,127061.28883644205,96360979.3347806,452050583014.15344,38386474671.69643,0.0,3217765551.1004686,410446342791.3565,504001839899.53174,914448182690.8882,0.0,952192658365.2415,952192658365.2415,5281288078714.011,4366839896023.123\n$200-500K,13628275.462012496,2975780827998.0107,6097626.783333185,149598800379.31476,7530648.678679313,256568608043.51862,0.0,2572316938499.6235,469574015835.3023,2797842708350.2427,93822.00089006576,297271839.46415126,469871287674.7664,14909959084.139248,1685140963.7922633,914050527.3263594,455732419027.0931,301411022008.8992,757143441035.9922,0.0,610206761616.0305,610206761616.0305,3770236511299.5415,3013093070263.549\n$500-1000K,1015307.8958899004,626113650511.1653,282930.953073567,7345386668.396428,732376.9428163336,30459242166.097717,0.0,585788533073.9772,142901852499.1798,603464593968.5032,10349.603312695228,55195457.71804662,142957047956.89786,39168020.103373796,1653722802.2835393,133024003.39825845,144438578735.67978,33520781977.02159,177959360712.7014,0.0,33612171538.966118,33612171538.966118,680580325924.3478,502620965211.6464\n>$1000K,379840.6644682961,809761972395.7317,24422.12597704341,494744654.44265133,355418.5384912527,19390582467.220543,0.0,786794774989.516,239993680245.63525,794146099349.3977,31041.862341321736,481167922.7355153,240474848168.3708,6485373.357721578,6641576948.248768,0.0,247109939743.2618,24716756377.24266,271826696120.50452,0.0,4483969647.446539,4483969647.446539,832837090111.5673,561010393991.0629\nALL,176868871.73000002,12209471019488.93,144140597.39086094,2606369147962.3374,32728274.33913906,929083426982.1432,0.0,9219997290384.193,1550270515415.7876,11558742581643.465,753140.6628402466,2164492310.6086698,1552435007726.3965,98016265294.51778,9980440714.32457,97332400087.25264,1367066783058.9502,1359481493301.343,2726548276360.293,0.0,3181476373888.423,3181476373888.423,16051868280083.209,13325320003722.918\n", "dist2_xbin": ",s006_4,c00100_4,num_returns_StandardDed_4,standard_4,num_returns_ItemDed_4,c04470_4,c04600_4,c04800_4,taxbc_4,c62100_4,num_returns_AMT_4,c09600_4,c05800_4,c07100_4,othertaxes_4,refund_4,iitax_4,payrolltax_4,combined_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,expanded_income_4,aftertax_income_4\n<$0K,62007.962794122315,-7773991240.2335005,62007.962794122315,1413444059.0291383,0.0,0.0,0.0,0.0,0.0,-7773991240.2335005,0.0,0.0,0.0,0.0,0.0,1238061.7433356163,-1238061.7433356163,16398480.916062782,15160419.172727166,0.0,852959620.0686239,852959620.0686239,-6836108893.391041,-6851269312.563767\n=$0K,1107762.212731292,0.0,1107762.212731292,18185442682.242027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11249618.486990932,35402704984.85526,11195916.21070914,105483507072.48294,53702.2762817925,287868695.39475155,0.0,2105312829.3954086,138317697.1627604,35128634244.183655,0.0,0.0,138317697.1627604,57620992.38196881,0.0,3640318222.1922646,-3559621517.4114723,4004448168.0969143,444826650.6854414,0.0,15967738036.52845,15967738036.52845,51268667420.07159,50823840769.38614\n$10-20K,12143997.175283428,108307735340.72302,12061225.161627453,169711440952.2727,82772.01365597629,1262794605.505163,0.0,9823766506.109451,837890903.5068989,107221824284.15427,33797.08071513901,6271715.360314724,844162618.8672135,242095409.56622636,0.0,13410473841.992954,-12808406632.691965,12790988253.538628,-17418379.15333879,0.0,75778782113.17882,75778782113.17882,186531097832.5247,186548516211.678\n$20-30K,16533557.955875767,229332514011.26956,16183363.679313064,242434889352.10742,350194.2765627046,6099234299.637359,0.0,73470322749.50865,7177382293.110033,224220111101.41913,90198.33292075491,55811825.9786558,7233194119.08869,1656075470.3662076,0.0,18443405340.35164,-12866286691.629158,27609985560.193222,14743698868.56406,0.0,168997837979.8139,168997837979.8139,411822328792.7125,397078629924.14844\n$30-40K,17586733.23167066,373011801100.5769,16959683.840823427,273570418239.23285,627049.390847228,10807335765.376656,0.0,164463520640.3648,17083950111.086063,364466353410.89,96822.37017826807,255230997.2951197,17339181108.381184,4282156616.069946,0.0,18878897807.633484,-5821873315.322249,44746054147.182434,38924180831.86018,0.0,213736474210.6366,213736474210.6366,611789089785.8239,572864908953.9637\n$40-50K,16019986.640515579,484329249322.62585,14992126.75313881,254728895494.95566,1027859.8873767675,18576391809.321217,0.0,258757256261.40497,27485733786.824978,470204075922.891,16080.708967070428,38898830.71086894,27524632617.535847,6557054068.9398,0.0,14151902521.643925,6815676026.952124,57820702696.911804,64636378723.86393,0.0,202607192925.01447,202607192925.01447,717643738482.5713,653007359758.7073\n$50-75K,29933848.03007929,1248745467955.945,26124946.213389535,505413253297.63806,3808901.8166897576,77884870721.5519,0.0,755619401143.3981,85897275789.95045,1190529704079.5273,132609.11027142545,196701822.11181858,86093977612.06227,16603529441.46265,0.0,19523956210.103798,49966491960.49582,142116645490.1288,192083137450.62466,0.0,510505481393.60077,510505481393.60077,1826052659711.3882,1633969522260.7634\n$75-100K,19221820.685489163,1216397627860.4526,15386137.537464092,323970609436.5251,3835683.1480250736,84658309410.76859,0.0,843490998035.7206,107412005820.11398,1157821642804.6553,121358.30440706378,681564818.7963514,108093570638.91034,15314391633.002876,0.0,4931370923.794121,87847808082.11334,129226541947.98065,217074350030.09396,0.0,392534346441.8962,392534346441.8962,1651756968058.2646,1434682618028.171\n$100-200K,37986115.326199085,4113243431047.098,23660185.68664471,553989738940.6602,14325929.639554381,423113219187.6673,0.0,3170159322432.926,452181948706.3091,3824640041159.979,130134.44247169525,99122999.07448927,452281071705.38354,38391932700.50174,0.0,3208843901.661558,410680295103.2203,425238220664.52405,835918515767.7444,0.0,952192658365.2415,952192658365.2415,5243147909906.318,4407229394138.573\n$200-500K,13628275.462012496,2976510546936.082,6097626.783333185,149598800379.31476,7530648.678679313,256564800374.1875,0.0,2573119565248.7266,469780336449.6384,2798576833259.504,67917.39009877219,291345186.6065757,470071681636.245,14906476323.972626,1687126284.3466039,913798951.167006,455938532645.4519,256517895002.20667,712456427647.6586,0.0,610206761616.0305,610206761616.0305,3748516061276.163,3036059633628.5044\n$500-1000K,1015307.8958899004,626366804447.7268,282930.953073567,7345386668.396428,732376.9428163336,30459165165.908752,0.0,586042087177.4099,142989692819.68634,603717844155.3009,10349.603312695228,54955713.71872151,143044648533.40506,38815386.83429201,1653780494.3654938,133007392.57187852,144526606248.3644,29752374222.555107,174278980470.9195,0.0,33612171538.966118,33612171538.966118,678944552065.5298,504665571594.61035\n>$1000K,379840.6644682961,809922191589.6614,24422.12597704341,494744654.44265133,355418.5384912527,19390582467.220543,0.0,786954994183.4457,240053034609.0632,794306318543.3274,31041.862341321736,480871282.5871984,240533905891.6504,6485373.357721578,6641632642.862892,0.0,247169053161.15555,23410511736.529167,270579564897.68475,0.0,4483969647.446539,4483969647.446539,832331055810.9648,561751490913.2802\nALL,176868871.73000002,12213796083356.783,144138335.12101942,2606340571229.301,32730536.60898058,929104572502.5397,0.0,9224006547208.41,1551037568986.4521,11563059391725.6,730309.2056842061,2160775192.2401137,1553198344178.6921,98056633416.45605,9982539421.57499,97237213174.85599,1367887037008.9553,1153250766370.7634,2521137803379.7188,0.0,3181476373888.423,3181476373888.423,15952968020248.943,13431830216869.22\n", "diff_itax_xbin": ",count_4,tax_cut_4,perc_cut_4,tax_inc_4,perc_inc_4,mean_4,tot_change_4,share_of_change_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,pc_aftertaxinc_4\n<$0K,62007.962794122315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,852959620.0686239,852959620.0686239,-0.02226011635071412\n=$0K,1107762.212731292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,11249618.486990932,21654.004923521657,0.19248657142073186,276878.6037783444,2.46122661047152,0.3609288673235854,4060312.0583321042,0.49500670594854995,0.0,15967738036.52845,15967738036.52845,0.7302593579597394\n$10-20K,12143997.175283428,81908.19579165871,0.6744747599115533,109304.88569749548,0.9000733788044909,0.0687528166837643,834934.0116004131,0.10178969715359847,0.0,75778782113.17882,75778782113.17882,0.650210953094521\n$20-30K,16533557.955875767,70979.29524402662,0.42930442094468657,455175.4412074361,2.7530398624554606,0.5670221469755329,9374893.52928508,1.1429257401599977,0.0,168997837979.8139,168997837979.8139,0.6846736554381394\n$30-40K,17586733.23167066,31427.288542750306,0.17869884150033732,973520.0863823975,5.535536779674672,2.131274383892321,37482154.03300749,4.569579217848782,0.0,213736474210.6366,213736474210.6366,0.7800878135853839\n$40-50K,16019986.640515579,29806.51346910347,0.18605829166998725,1078628.6236344678,6.733018246760247,2.9527703160961187,47303341.01637079,5.766914138735744,0.0,202607192925.01447,202607192925.01447,0.8804118239999825\n$50-75K,29933848.03007929,8073.769115590396,0.026972038835359216,1502291.7509482806,5.018705745544942,2.4620551004901645,73698783.21975417,8.984873918536353,0.0,510505481393.60077,510505481393.60077,0.8429969060252951\n$75-100K,19221820.685489163,0.0,0.0,994794.9510253721,5.175341957988182,3.136678482341408,60292671.33559883,7.350488386583072,0.0,392534346441.8962,392534346441.8962,0.8647983889098487\n$100-200K,37986115.326199085,22055.311346124967,0.058061507887102584,3088316.9306094917,8.130120450825553,6.158890159067279,233952311.86372226,28.521936634663653,0.0,952192658365.2415,952192658365.2415,0.9249136464158703\n$200-500K,13628275.462012496,126237.8332009436,0.926293525199277,1041273.3808623638,7.640536645776005,15.123969201632194,206113618.35883674,25.128025089986625,0.0,610206761616.0305,610206761616.0305,0.7622254882072577\n$500-1000K,1015307.8958899004,14255.145207857686,1.4040218997177492,181359.40425022843,17.86250308742748,86.70031331477699,88027512.68462135,10.731738955246222,0.0,33612171538.966118,33612171538.966118,0.40678891739085454\n>$1000K,379840.6644682961,18615.920110029336,4.900981345977804,118943.18743673884,31.31396887251038,155.62688101473972,59113417.89376719,7.206721515137393,0.0,4483969647.446539,4483969647.446539,0.1321003906799456\nALL,176868871.73000002,425013.2769516068,0.24029851765007737,9820487.245832618,5.552411314538223,4.637638844991667,820253950.0048965,100.0,0.0,3181476373888.423,3181476373888.423,0.7993069818701848\n", "diff_ptax_xbin": ",count_4,tax_cut_4,perc_cut_4,tax_inc_4,perc_inc_4,mean_4,tot_change_4,share_of_change_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,pc_aftertaxinc_4\n<$0K,62007.962794122315,4222.4846427749635,6.809584531577627,0.0,0.0,-49.20142563882899,-3050880.1704302835,0.0014793528664898015,0.0,852959620.0686239,852959620.0686239,-0.02226011635071412\n=$0K,1107762.212731292,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11249618.486990932,8276933.386865306,73.57523631967393,0.0,0.0,-66.22552722417714,-745011915.3718245,0.3612516555899098,0.0,15967738036.52845,15967738036.52845,0.7302593579597394\n$10-20K,12143997.175283428,8546975.555427924,70.38024986388756,0.0,0.0,-195.69924104222676,-2376571030.4219127,1.1523845480222272,0.0,75778782113.17882,75778782113.17882,0.650210953094521\n$20-30K,16533557.955875767,10919192.108249309,66.04260339722461,0.0,0.0,-309.01583653363065,-5109131242.612215,2.47738604166974,0.0,168997837979.8139,168997837979.8139,0.6846736554381394\n$30-40K,17586733.23167066,12242487.299522985,69.61206005829659,0.0,0.0,-469.92055603743864,-8264367459.108776,4.007340507455366,0.0,213736474210.6366,213736474210.6366,0.7800878135853839\n$40-50K,16019986.640515579,12187256.551953126,76.07532281662937,0.0,0.0,-667.0081556920497,-10685461743.301573,5.181314105001659,0.0,202607192925.01447,202607192925.01447,0.8804118239999825\n$50-75K,29933848.03007929,23209551.988693252,77.536145588001,0.0,0.0,-879.942231763147,-26340057040.84685,12.77213024115137,0.0,510505481393.60077,510505481393.60077,0.8429969060252951\n$75-100K,19221820.685489163,15159710.396357894,78.86719288668728,0.0,0.0,-1247.3156093878993,-23975676981.86584,11.625657019546086,0.0,392534346441.8962,392534346441.8962,0.8647983889098487\n$100-200K,37986115.326199085,30786617.230514564,81.04702722597429,0.0,0.0,-2073.484444477644,-78763619235.00763,38.191990304878615,0.0,952192658365.2415,952192658365.2415,0.9249136464158703\n$200-500K,13628275.462012496,11337186.658279622,83.18871077915131,0.0,0.0,-3294.116495651103,-44893127006.69252,21.768398761356373,0.0,610206761616.0305,610206761616.0305,0.7622254882072577\n$500-1000K,1015307.8958899004,884362.9004624113,87.10292750036008,0.0,0.0,-3711.591104256643,-3768407754.466484,1.8272775403322847,0.0,33612171538.966118,33612171538.966118,0.40678891739085454\n>$1000K,379840.6644682961,358052.6701786126,94.26391212742254,4207.927773364786,1.1078139248874461,-3438.9278529248227,-1306244640.7134955,0.633389922129886,0.0,4483969647.446539,4483969647.446539,0.1321003906799456\nALL,176868871.73000002,133912549.23114778,75.71289844352748,4207.927773364786,0.002379122867809332,-1166.009173425395,-206230726930.57953,100.0,0.0,3181476373888.423,3181476373888.423,0.7993069818701848\n", "diff_comb_xbin": ",count_4,tax_cut_4,perc_cut_4,tax_inc_4,perc_inc_4,mean_4,tot_change_4,share_of_change_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,pc_aftertaxinc_4\n<$0K,62007.962794122315,4222.4846427749635,6.809584531577627,0.0,0.0,-49.20142563882899,-3050880.1704302835,0.0014852602820883433,0.0,852959620.0686239,852959620.0686239,-0.02226011635071412\n=$0K,1107762.212731292,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11249618.486990932,8276933.386865306,73.57523631967393,0.0,0.0,-65.86459835685355,-740951603.3134923,0.3607175391605095,0.0,15967738036.52845,15967738036.52845,0.7302593579597394\n$10-20K,12143997.175283428,8546975.555427924,70.38024986388756,0.0,0.0,-195.63048822554296,-2375736096.4103117,1.1565798286414446,0.0,75778782113.17882,75778782113.17882,0.650210953094521\n$20-30K,16533557.955875767,10919192.108249309,66.04260339722461,0.0,0.0,-308.4488143866551,-5099756349.08293,2.4827148660356793,0.0,168997837979.8139,168997837979.8139,0.6846736554381394\n$30-40K,17586733.23167066,12242487.299522985,69.61206005829659,0.0,0.0,-467.78928165354625,-8226885305.0757675,4.0050953516151875,0.0,213736474210.6366,213736474210.6366,0.7800878135853839\n$40-50K,16019986.640515579,12187256.551953126,76.07532281662937,0.0,0.0,-664.0553853759536,-10638158402.285202,5.178975661718687,0.0,202607192925.01447,202607192925.01447,0.8804118239999825\n$50-75K,29933848.03007929,23209551.988693252,77.536145588001,0.0,0.0,-877.4801766626568,-26266358257.627098,12.787253676257814,0.0,510505481393.60077,510505481393.60077,0.8429969060252951\n$75-100K,19221820.685489163,15159710.396357894,78.86719288668728,0.0,0.0,-1244.1789309055578,-23915384310.530243,11.642728807109988,0.0,392534346441.8962,392534346441.8962,0.8647983889098487\n$100-200K,37986115.326199085,30786617.230514564,81.04702722597429,0.0,0.0,-2067.325554318577,-78529666923.1439,38.23060517979058,0.0,952192658365.2415,952192658365.2415,0.9249136464158703\n$200-500K,13628275.462012496,11337186.658279622,83.18871077915131,0.0,0.0,-3278.992526449472,-44687013388.333694,21.754982956764657,0.0,610206761616.0305,610206761616.0305,0.7622254882072577\n$500-1000K,1015307.8958899004,884362.9004624113,87.10292750036008,0.0,0.0,-3624.890790941866,-3680380241.7818627,1.791719861396702,0.0,33612171538.966118,33612171538.966118,0.40678891739085454\n>$1000K,379840.6644682961,355534.33177065186,93.60091349575,6726.266181325534,1.7708125565600021,-3283.3009719100924,-1247131222.819732,0.6071410112266628,0.0,4483969647.446539,4483969647.446539,0.1321003906799456\nALL,176868871.73000002,133910030.89273983,75.71147459862853,6726.266181325534,0.0038029677667608727,-1161.3715345804035,-205410472980.57468,100.0,0.0,3181476373888.423,3181476373888.423,0.7993069818701848\n", "dist1_xdec": ",s006_4,c00100_4,num_returns_StandardDed_4,standard_4,num_returns_ItemDed_4,c04470_4,c04600_4,c04800_4,taxbc_4,c62100_4,num_returns_AMT_4,c09600_4,c05800_4,c07100_4,othertaxes_4,refund_4,iitax_4,payrolltax_4,combined_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,expanded_income_4,aftertax_income_4\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17681497.78985503,73857854875.59622,17627795.513573237,197289116829.40927,53702.2762817925,287868695.39475155,0.0,3301819460.091377,215845005.86162186,73583784134.92462,14728.905139570741,178699.5601611868,216023705.42178303,67015568.288659364,0.0,9220027149.468946,-9071019012.335823,11121706938.162462,2050687925.82664,0.0,36282576864.38553,36282576864.38553,111338935513.29044,109288247587.4638\n10-20,17681327.408315342,198556349096.81284,17369727.362614315,255466016051.7037,311600.0457010297,5427249932.208985,0.0,46964528797.534515,4367891569.290024,193933881346.80676,73782.15428136813,18182068.99645342,4386073638.286477,944197277.439619,0.0,19302444207.75353,-15860567846.90667,28181294542.85062,12320726695.943954,0.0,163551169924.20892,163551169924.20892,372713534410.71545,360392807714.7715\n20-30,17669026.522825804,331333381115.7821,17140991.634354837,270106452411.97913,528034.8884709637,9128642477.112602,0.0,134684343115.07239,13937533219.420576,324012847906.43945,90383.60216779355,244439526.352437,14181972745.773014,3674817490.931269,0.0,19892843129.212837,-9385687874.371094,47497809154.31584,38112121279.94475,0.0,203494926018.14703,203494926018.14703,561213130821.1847,523101009541.23987\n30-40,17698404.270323187,487266231758.5003,16739075.477426007,279727243744.97327,959328.7928971798,17429077603.07621,0.0,248033819287.3986,26203112247.28714,473789428179.00745,58003.831192500016,93413074.43590762,26296525321.72305,6045053275.207231,0.0,16850044647.573563,3401427398.9422584,68929780349.91827,72331207748.86052,0.0,220871551561.0849,220871551561.0849,745513259049.5181,673182051300.6576\n40-50,17690284.183895838,634416208679.6198,16080539.578044564,292129202925.56433,1609744.6058512721,29670972325.733658,0.0,369037132095.60657,39928707747.4886,611936416876.8605,80063.77426980095,178904534.8618656,40107612282.35047,9590001666.321262,0.0,13500264800.553637,17017345815.475573,86709958528.40338,103727304343.87894,0.0,269185565234.65167,269185565234.65167,946940133255.4651,843212828911.5863\n50-60,17693635.57223959,824756092624.6415,15037549.148267683,302391894060.9876,2656086.4239719072,56058307129.05755,0.0,516582143575.31793,60679473941.386505,783468426272.8267,72888.89184028903,132807039.8351061,60812280981.2216,10255554846.717653,0.0,10020060726.088894,40536665408.41506,110541656579.42065,151078321987.83572,0.0,321184453327.94324,321184453327.94324,1197855008307.9375,1046776686320.1018\n60-70,17693995.19308161,1130797323794.8774,14053068.400895305,297149718513.2277,3640926.792186306,81112533963.60043,0.0,783816698460.2922,100177485028.86972,1074594376837.8406,101014.74856839926,566571167.3142452,100744056196.18396,14010051031.119175,0.0,4267039452.1846256,82466965712.88016,142339413108.3029,224806378821.183,0.0,366410569790.31647,366410569790.31647,1546243810339.9556,1321437431518.7725\n70-80,17678734.631370626,1527307418162.5916,12332211.872512028,280437378111.4662,5346522.758858599,151121197644.49896,0.0,1122520297475.7449,147157765582.51572,1420898524867.109,34312.52622743576,56484081.047118306,147214249663.56284,15071028750.453663,0.0,2210971577.2229114,129932249335.88625,186691934646.938,316624183982.8242,0.0,436202315316.27783,436202315316.27783,2023199078492.2837,1706574894509.4595\n80-90,17681423.020480335,2171822266707.719,10144454.675449356,244667736708.54202,7536968.345030976,229250341486.98755,0.0,1705686555701.7708,250148437194.78717,2017524998307.995,89190.93138998239,36048004.14642038,250184485198.93356,20348034748.43284,0.0,832478321.6460105,229003972128.85474,266214414593.12427,495218386721.979,0.0,449293441781.4701,449293441781.4701,2746855803088.759,2251637416366.7793\n90-100,17700543.13761266,4829357892672.787,7615183.727723625,187004388604.4835,10085359.409889035,349597235724.47266,0.0,4289369952415.362,907454263878.8805,4584999896913.652,138771.2977631066,837464114.0589552,908291727992.9395,18010510639.6064,9980440714.32457,1236226075.5477083,899025431992.11,411253524859.9067,1310278956852.0166,0.0,714999804069.9366,714999804069.9366,5799995586804.103,4489716629952.086\nALL,176868871.73000002,12209471019488.928,144140597.39086094,2606369147962.3374,32728274.33913906,929083426982.1432,0.0,9219997290384.191,1550270515415.7876,11558742581643.46,753140.6628402463,2164492310.60867,1552435007726.3965,98016265294.51779,9980440714.32457,97332400087.25267,1367066783058.9504,1359481493301.3433,2726548276360.2935,0.0,3181476373888.4224,3181476373888.4224,16051868280083.21,13325320003722.918\n90-95,8844367.104070798,1480606186711.3638,4480699.0241038725,110466698101.60284,4363668.079966925,136979917609.5375,0.0,1235544333498.16,205061227339.0421,1388553217878.344,21212.336272099223,53822650.117597155,205115049989.15973,9833899358.113613,34303504.682000816,562917532.2448072,194752536603.4833,171750103436.73975,366502640040.223,0.0,309731148677.0971,309731148677.0971,1878451710130.8057,1511949070090.5825\n95-99,7073168.951211832,1752783294233.3496,2706141.5427905675,65420931777.72939,4367027.408421265,152854733985.73358,0.0,1536039870262.3442,289419931528.4839,1645874324921.8552,58058.750290729324,171382155.3365561,289591313683.82043,7826567818.119454,1365446653.3045185,522041975.71408707,282608150543.2914,168431378963.52078,451039529506.8122,0.0,354210150772.5943,354210150772.5943,2227938085995.3184,1776898556488.5059\nTop 1%,1783007.0823300304,1595968411728.074,428343.1608291849,11116758725.151253,1354663.9215008456,59762584129.20153,0.0,1517785748654.858,412973105011.3545,1550572354113.4531,59500.21120027806,612259308.6048019,413585364319.95935,350043463.37333155,8580690556.338051,151266567.58881402,421664744845.3353,71072042459.64616,492736787304.9814,0.0,51058504620.24521,51058504620.24521,1693605790677.9785,1200869003372.997\n", "dist2_xdec": ",s006_4,c00100_4,num_returns_StandardDed_4,standard_4,num_returns_ItemDed_4,c04470_4,c04600_4,c04800_4,taxbc_4,c62100_4,num_returns_AMT_4,c09600_4,c05800_4,c07100_4,othertaxes_4,refund_4,iitax_4,payrolltax_4,combined_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,expanded_income_4,aftertax_income_4\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17681497.78985503,73866414841.85773,17627795.513573237,197289116829.40927,53702.2762817925,287868695.39475155,0.0,3304188924.005623,216081952.25304645,73592344101.18613,14728.905139570741,178699.5601611868,216260651.81320763,67015568.288659364,0.0,9214935238.225239,-9065690154.700691,9378410947.361076,312720792.66038454,0.0,36282576864.38553,36282576864.38553,110475847484.15126,110163126691.49086\n10-20,17681327.408315342,198660316769.52838,17368921.441389695,255455734930.75967,312405.96692564775,5439253097.545433,0.0,47009484425.652756,4372387132.101849,194031094489.49377,73782.15428136813,18182068.99645342,4390569201.098303,944873528.9118383,0.0,19302386879.2176,-15856691207.03114,23776312626.35689,7919621419.325751,0.0,163551169924.20892,163551169924.20892,370615011125.18414,362695389705.85834\n20-30,17669026.522825804,331635719586.90137,17139535.28573794,270088156799.8863,529491.2370878637,9147976268.467999,0.0,134870461228.24295,13957011374.050726,324302415915.79736,90383.60216779355,244439526.352437,14201450900.403162,3678981410.3617377,0.0,19877851172.579205,-9355381682.53778,40092575989.73859,30737194307.200813,0.0,203494926018.14703,203494926018.14703,557812852710.0154,527075658402.8145\n30-40,17698404.270323187,487717062325.615,16739075.477426007,279727243744.97327,959328.7928971798,17426633796.10808,0.0,248406854942.20694,26242676593.759964,474243313504.8323,58003.831192500016,93413074.43590762,26336089668.195873,6054361910.392885,0.0,16827253568.59684,3454474189.2061477,58183629310.16221,61638103499.36836,0.0,220871551561.0849,220871551561.0849,740582092583.2905,678943989083.9221\n40-50,17690284.183895838,634677730240.8917,16080539.578044564,292129202925.56433,1609744.6058512721,29670972325.733658,0.0,369267811437.7906,39953396888.29438,612197938438.1326,80063.77426980095,178904534.8618656,40132301423.15625,9598624898.207981,0.0,13482428875.053837,17051247649.894426,73146925494.54205,90198173144.43648,0.0,269185565234.65167,269185565234.65167,940415178651.7063,850217005507.2698\n50-60,17693635.57223959,825186447492.2534,15037549.148267683,302391894060.9876,2656086.4239719072,56058174074.55356,0.0,516973660293.4424,60724674937.33291,783898852395.7998,72888.89184028903,132790938.73205933,60857465876.06497,10266987853.964804,0.0,10002450077.46529,40588027944.63488,93261170420.28459,133849198364.91948,0.0,321184453327.94324,321184453327.94324,1189610181837.001,1055760983472.0815\n60-70,17693995.19308161,1131155692662.1274,14053068.400895305,297149718513.2277,3640926.792186306,81111881992.76927,0.0,784159269336.1814,100229631482.71492,1074953560668.6294,101014.74856839926,566571167.3142452,100796202650.02917,14014591472.465649,0.0,4259421225.7259645,82522189951.83757,120063183583.89967,202585373535.73724,0.0,366410569790.31647,366410569790.31647,1535448773195.276,1332863399659.5386\n70-80,17678734.631370626,1527697062399.6355,12332211.872512028,280437378111.4662,5346522.758858599,151119760549.93396,0.0,1122883674511.9429,147207812045.88617,1421289938320.1062,34312.52622743576,56484081.047118306,147264296126.9333,15072359737.234394,0.0,2208331997.749057,129983604391.94984,157463155356.9369,287446759748.8867,0.0,436202315316.27783,436202315316.27783,2008959120064.5042,1721512360315.6174\n80-90,17681423.020480335,2172617176387.7822,10144454.675449356,244667736708.54202,7536968.345030976,229249183860.6551,0.0,1706460951811.6611,250308865547.64966,2018320804175.9695,89190.93138998239,39071142.66036208,250347936690.31,20350986496.802025,0.0,828671420.1192064,229168278773.3888,224630232872.0813,453798511645.4701,0.0,449293441781.4701,449293441781.4701,2726849679959.6816,2273051168314.212\n90-100,17700543.13761266,4830582460650.189,7615183.727723625,187004388604.4835,10085359.409889035,349592867841.3779,0.0,4290670190297.283,907825031032.4087,4586229129715.65,115939.84060706626,830739958.2795045,908655770990.6881,18007850539.826088,9982539421.57499,1233482720.1237235,899396977152.3132,353255169769.40027,1252652146921.7134,0.0,714999804069.9366,714999804069.9366,5772199282638.131,4519547135716.418\nALL,176868871.73000002,12213796083356.783,144138335.12101942,2606340571229.3003,32730536.60898058,929104572502.5399,0.0,9224006547208.408,1551037568986.4524,11563059391725.6,730309.205684206,2160775192.240114,1553198344178.6924,98056633416.45605,9982539421.57499,97237213174.85594,1367887037008.9553,1153250766370.7637,2521137803379.7188,0.0,3181476373888.4224,3181476373888.4224,15952968020248.941,13431830216869.223\n90-95,8844367.104070798,1480909163433.748,4480699.0241038725,110466698101.60284,4363668.079966925,136978592523.44504,0.0,1235851478184.7493,205129551092.92932,1388857409544.5457,24285.489907352425,54205484.732195035,205183756577.6615,9835074651.769003,34330744.88065441,560442363.8065557,194822570306.9666,145274250271.92838,340096820578.895,0.0,309731148677.0971,309731148677.0971,1865516219961.0403,1525419399382.1455\n95-99,7073168.951211832,1753206238714.263,2706141.5427905675,65420931777.72939,4367027.408421265,152852040459.89984,0.0,1536512114007.939,289543646087.0077,1646300623033.311,33781.20049396427,167620440.9299276,289711266527.9376,7823800633.895004,1367312724.1276035,522041975.71408707,282732736642.45605,143702573764.25177,426435310406.7078,0.0,354210150772.5943,354210150772.5943,2215994218943.165,1789558908536.457\nTop 1%,1783007.0823300304,1596467058502.1792,428343.1608291849,11116758725.151253,1354663.9215008456,59762234858.03305,0.0,1518306598104.5945,413151833852.4716,1551071097137.7944,57873.15020574957,608914032.6173819,413760747885.089,348975254.162078,8580895952.5667305,150998380.60308078,421841670202.8906,64278345733.22011,486120015936.1106,0.0,51058504620.24521,51058504620.24521,1690688843733.9263,1204568827797.8157\n", "diff_itax_xdec": ",count_4,tax_cut_4,perc_cut_4,tax_inc_4,perc_inc_4,mean_4,tot_change_4,share_of_change_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,pc_aftertaxinc_4\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,17681497.78985503,77184.49166805603,0.43652688581813215,357796.27077422873,2.0235631337720643,0.30138044290518756,5328857.635133604,0.6496594908322958,0.0,36282576864.38553,36282576864.38553,0.8005244144178247\n10-20,17681327.408315342,78628.26844319273,0.4446966374606846,281402.48178549827,1.59152350548725,0.21925050003348692,3876639.8755289363,0.47261459399321337,0.0,163551169924.20892,163551169924.20892,0.6389089742626641\n20-30,17669026.522825804,49810.2987422168,0.28190743093780046,810032.5477125735,4.58447751304312,1.7152157077902266,30306191.833312947,3.694732812092162,0.0,203494926018.14703,203494926018.14703,0.7598243530557269\n30-40,17698404.270323187,30152.23911759519,0.1703669927359196,1272170.1425533684,7.188049968361003,2.9972640162163704,53046790.263889834,6.467117928974702,0.0,220871551561.0849,220871551561.0849,0.8559256403422921\n40-50,17690284.183895838,3215.413949943577,0.018176157694915353,786227.1036578157,4.444400640966239,1.916409825101441,33901834.41885461,4.133090053227082,0.0,269185565234.65167,269185565234.65167,0.8306534667794852\n50-60,17693635.57223959,4858.355165646818,0.027458207476983017,977070.308328775,5.5221568475262846,2.90288200014722,51362536.21981886,6.261784685037147,0.0,321184453327.94324,321184453327.94324,0.858282121620757\n60-70,17693995.19308161,0.0,0.0,905895.4878615343,5.119790516365357,3.121072338654352,55224238.95741008,6.732578240809499,0.0,366410569790.31647,366410569790.31647,0.8646620617999146\n70-80,17678734.631370626,9291.25273898708,0.052556095969108006,1378856.7767846787,7.799521886243599,2.9049056470628867,51355056.06359475,6.260872753284296,0.0,436202315316.27783,436202315316.27783,0.8752892037856785\n80-90,17681423.020480335,12095.104290151994,0.06840571754966936,1568287.9651228506,8.869693142380608,9.29261430732962,164306644.53406286,20.031192112282064,0.0,449293441781.4701,449293441781.4701,0.9510302054753339\n90-100,17700543.13761266,159777.85283581648,0.9026720343755866,1482748.161251294,8.376851205771972,20.990607876533307,371545160.20328987,45.29635732946753,0.0,714999804069.9366,714999804069.9366,0.6644184527220487\nALL,176868871.73000002,425013.2769516067,0.2402985176500773,9820487.245832618,5.552411314538223,4.637638844991666,820253950.0048964,100.0,0.0,3181476373888.4224,3181476373888.4224,0.799306981870207\n90-95,8844367.104070798,11495.295102864442,0.1299730661063752,611412.6663971681,6.913017734369632,7.918452802693768,70033703.48328197,8.53805135383547,0.0,309731148677.0971,309731148677.0971,0.8909248041507167\n95-99,7073168.951211832,107674.8471614967,1.5222999465190064,498054.0234068792,7.041455206885007,17.613901212319416,124586099.16469014,15.188722853934008,0.0,354210150772.5943,354210150772.5943,0.7124971767082933\nTop 1%,1783007.0823300304,40607.71057145534,2.2774845357534566,373281.4714472465,20.93550133067576,99.22863420380364,176925357.5553178,21.569583121698063,0.0,51058504620.24521,51058504620.24521,0.3080955886467729\n", "diff_ptax_xdec": ",count_4,tax_cut_4,perc_cut_4,tax_inc_4,perc_inc_4,mean_4,tot_change_4,share_of_change_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,pc_aftertaxinc_4\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17681497.78985503,12555830.861173825,71.01112705722183,0.0,0.0,-98.59436183068301,-1743295990.8013887,0.8453134102505536,0.0,36282576864.38553,36282576864.38553,0.8005244144178247\n10-20,17681327.408315342,11291243.855069336,63.859706877885095,0.0,0.0,-249.13185615363437,-4404981916.493731,2.135948402090691,0.0,163551169924.20892,163551169924.20892,0.6389089742626641\n20-30,17669026.522825804,12210890.952792313,69.10901931703835,0.0,0.0,-419.1081582797316,-7405233164.577252,3.5907516182445343,0.0,203494926018.14703,203494926018.14703,0.7598243530557269\n30-40,17698404.270323187,13129343.06387189,74.1837674365212,0.0,0.0,-607.1819173989194,-10746151039.756056,5.2107419683262695,0.0,220871551561.0849,220871551561.0849,0.8559256403422921\n40-50,17690284.183895838,13321395.812055659,75.30345851754406,0.0,0.0,-766.6939034370224,-13563033033.86132,6.576630570878435,0.0,269185565234.65167,269185565234.65167,0.8306534667794852\n50-60,17693635.57223959,14080828.681698455,79.58131964575192,0.0,0.0,-976.6498291763327,-17280486159.136078,8.379200527646375,0.0,321184453327.94324,321184453327.94324,0.858282121620757\n60-70,17693995.19308161,13905635.10415726,78.58957206902821,0.0,0.0,-1258.9711527170105,-22276229524.4032,10.801605491068129,0.0,366410569790.31647,366410569790.31647,0.8646620617999146\n70-80,17678734.631370626,13728166.023256902,77.65355558251605,0.0,0.0,-1653.329828150435,-29228779290.001144,14.172853737668296,0.0,436202315316.27783,436202315316.27783,0.8752892037856785\n80-90,17681423.020480335,14751494.092515929,83.42933753368901,0.0,0.0,-2351.8571821326914,-41584181721.042984,20.163911721574284,0.0,449293441781.4701,449293441781.4701,0.9510302054753339\n90-100,17700543.13761266,14937720.784556214,84.39131312764295,4207.927773364786,0.023772873751106403,-3276.642679244298,-57998355090.50642,28.123042552252436,0.0,714999804069.9366,714999804069.9366,0.6644184527220487\nALL,176868871.73000002,133912549.23114777,75.71289844352746,4207.927773364786,0.002379122867809332,-1166.0091734253951,-206230726930.57956,100.0,0.0,3181476373888.4224,3181476373888.4224,0.799306981870207\n90-95,8844367.104070798,7567153.006266803,85.55901080568974,0.0,0.0,-2993.5271629131385,-26475853164.811344,12.83797693916073,0.0,309731148677.0971,309731148677.0971,0.8909248041507167\n95-99,7073168.951211832,5773312.304716188,81.62271175110357,0.0,0.0,-3496.1423047914454,-24728805199.269028,11.990844219636157,0.0,354210150772.5943,354210150772.5943,0.7124971767082933\nTop 1%,1783007.0823300304,1597255.473573222,89.582116044426,4207.927773364786,0.23600174194854423,-3810.246629838429,-6793696726.426048,3.29422139345555,0.0,51058504620.24521,51058504620.24521,0.3080955886467729\n", "diff_comb_xdec": ",count_4,tax_cut_4,perc_cut_4,tax_inc_4,perc_inc_4,mean_4,tot_change_4,share_of_change_4,ubi_4,benefit_cost_total_4,benefit_value_total_4,pc_aftertaxinc_4\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17681497.78985503,12555830.861173825,71.01112705722183,0.0,0.0,-98.29298138777781,-1737967133.166255,0.8460947039105506,0.0,36282576864.38553,36282576864.38553,0.8005244144178247\n10-20,17681327.408315342,11291243.855069336,63.859706877885095,0.0,0.0,-248.91260565360085,-4401105276.618201,2.1425904983113524,0.0,163551169924.20892,163551169924.20892,0.6389089742626641\n20-30,17669026.522825804,12210890.952792313,69.10901931703835,0.0,0.0,-417.39294257194143,-7374926972.74394,3.5903363960616432,0.0,203494926018.14703,203494926018.14703,0.7598243530557269\n30-40,17698404.270323187,13129343.06387189,74.1837674365212,0.0,0.0,-604.1846533827031,-10693104249.492167,5.2057249537142125,0.0,220871551561.0849,220871551561.0849,0.8559256403422921\n40-50,17690284.183895838,13321395.812055659,75.30345851754406,0.0,0.0,-764.777493611921,-13529131199.442467,6.586388222143811,0.0,269185565234.65167,269185565234.65167,0.8306534667794852\n50-60,17693635.57223959,14080828.681698455,79.58131964575192,0.0,0.0,-973.7469471761852,-17229123622.916256,8.387655883809577,0.0,321184453327.94324,321184453327.94324,0.858282121620757\n60-70,17693995.19308161,13905635.10415726,78.58957206902821,0.0,0.0,-1255.850080378356,-22221005285.445786,10.817854105981825,0.0,366410569790.31647,366410569790.31647,0.8646620617999146\n70-80,17678734.631370626,13728166.023256902,77.65355558251605,0.0,0.0,-1650.424922503372,-29177424233.937546,14.204448200991584,0.0,436202315316.27783,436202315316.27783,0.8752892037856785\n80-90,17681423.020480335,14751494.092515929,83.42933753368901,0.0,0.0,-2342.564567825362,-41419875076.50892,20.16444170323581,0.0,449293441781.4701,449293441781.4701,0.9510302054753339\n90-100,17700543.13761266,14935202.446148252,84.37708566361326,6726.266181325533,0.03800033778078027,-3255.6520713677655,-57626809930.30314,28.05446533183963,0.0,714999804069.9366,714999804069.9366,0.6644184527220487\nALL,176868871.73000002,133910030.8927398,75.71147459862851,6726.266181325533,0.003802967766760872,-1161.3715345804035,-205410472980.57468,100.0,0.0,3181476373888.4224,3181476373888.4224,0.799306981870207\n90-95,8844367.104070798,7567153.006266803,85.55901080568974,0.0,0.0,-2985.608710110445,-26405819461.328064,12.855147587253363,0.0,309731148677.0971,309731148677.0971,0.8909248041507167\n95-99,7073168.951211832,5773312.304716188,81.62271175110357,0.0,0.0,-3478.5284035791265,-24604219100.10434,11.978074312905711,0.0,354210150772.5943,354210150772.5943,0.7124971767082933\nTop 1%,1783007.0823300304,1594737.1351652613,89.44087496731991,6726.266181325533,0.37724281905463103,-3711.0179956346274,-6616771368.870734,3.22124343168056,0.0,51058504620.24521,51058504620.24521,0.3080955886467729\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_4
ind_tax820,253,950.00
payroll_tax-206,230,726,930.58
combined_tax-205,410,472,980.57
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_4
ind_tax1,367,066,783,058.95
payroll_tax1,359,481,493,301.34
combined_tax2,726,548,276,360.29
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_4
ind_tax1,367,887,037,008.96
payroll_tax1,153,250,766,370.76
combined_tax2,521,137,803,379.72
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_4c00100_4num_returns_StandardDed_4standard_4num_returns_ItemDed_4c04470_4c04600_4c04800_4taxbc_4c62100_4num_returns_AMT_4c09600_4c05800_4c07100_4othertaxes_4refund_4iitax_4payrolltax_4combined_4ubi_4benefit_cost_total_4benefit_value_total_4expanded_income_4aftertax_income_4
<$0K62,007.96-7,773,991,240.2362,007.961,413,444,059.030.000.000.000.000.00-7,773,991,240.230.000.000.000.000.001,238,061.74-1,238,061.7419,449,361.0918,211,299.340.00852,959,620.07852,959,620.07-6,834,583,453.31-6,852,794,752.65
=$0K1,107,762.210.001,107,762.2118,185,442,682.240.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,249,618.4935,402,695,455.5811,195,916.21105,483,507,072.4853,702.28287,868,695.390.002,105,312,829.40138,317,697.1635,128,624,714.910.000.00138,317,697.1657,620,992.380.003,644,378,534.25-3,563,681,829.474,749,460,083.471,185,778,254.000.0015,967,738,036.5315,967,738,036.5351,641,163,848.4950,455,385,594.49
$10-20K12,143,997.18108,290,062,878.7012,062,031.08169,721,722,073.2281,966.091,250,484,536.060.009,820,301,870.15837,544,439.91107,211,289,982.3033,797.086,271,715.36843,816,155.27242,034,004.480.0013,411,023,717.49-12,809,241,566.7015,167,559,283.962,358,317,717.260.0075,778,782,113.1875,778,782,113.18187,701,710,885.72185,343,393,168.46
$20-30K16,533,557.96229,177,499,562.0716,183,363.68242,434,606,354.02350,194.286,099,551,409.530.0073,397,362,519.567,170,128,641.64224,064,700,264.8590,198.3355,811,825.987,225,940,467.621,654,051,042.930.0018,447,551,009.84-12,875,661,585.1632,719,116,802.8119,843,455,217.650.00168,997,837,979.81168,997,837,979.81414,221,879,964.82394,378,424,747.17
$30-40K17,586,733.23372,672,244,441.1616,961,140.19273,588,996,849.41625,593.0410,787,991,768.230.00164,224,767,514.0617,058,229,145.16364,139,579,970.4796,822.37255,230,997.3017,313,460,142.454,277,041,430.830.0018,895,774,180.97-5,859,355,469.3653,010,421,606.2947,151,066,136.940.00213,736,474,210.64213,736,474,210.64615,581,716,855.96568,430,650,719.02
$40-50K16,019,986.64483,915,641,496.5514,992,126.75254,728,895,494.961,027,859.8918,578,835,616.290.00258,414,847,990.0127,449,544,482.37469,787,413,338.1116,080.7138,898,830.7127,488,443,313.086,549,724,277.250.0014,170,346,349.896,768,372,685.9468,506,164,440.2175,274,537,126.150.00202,607,192,925.01202,607,192,925.01722,582,917,367.47647,308,380,241.32
$50-75K29,933,848.031,248,148,488,727.6026,124,946.21505,413,253,297.643,808,901.8277,885,003,776.060.00755,071,311,272.6085,835,700,962.001,189,932,653,595.82132,609.11196,717,923.2186,032,418,885.2216,585,252,744.910.0019,554,372,963.0449,892,793,177.28168,456,702,530.98218,349,495,708.250.00510,505,481,393.60510,505,481,393.601,838,659,851,799.161,620,310,356,090.91
$75-100K19,221,820.691,216,004,526,041.4415,386,137.54323,970,609,436.533,835,683.1584,658,961,381.600.00843,125,428,373.92107,357,279,432.601,157,427,726,022.11121,358.30681,564,818.80108,038,844,251.4015,308,453,652.430.004,942,875,188.1987,787,515,410.78153,202,218,929.85240,989,734,340.620.00392,534,346,441.90392,534,346,441.901,663,371,616,765.441,422,381,882,424.82
$100-200K37,986,115.334,111,977,401,221.1523,660,185.69553,989,738,940.6614,325,929.64423,116,297,122.140.003,168,937,711,451.38451,954,222,034.823,823,371,183,327.00127,061.2996,360,979.33452,050,583,014.1538,386,474,671.700.003,217,765,551.10410,446,342,791.36504,001,839,899.53914,448,182,690.890.00952,192,658,365.24952,192,658,365.245,281,288,078,714.014,366,839,896,023.12
$200-500K13,628,275.462,975,780,827,998.016,097,626.78149,598,800,379.317,530,648.68256,568,608,043.520.002,572,316,938,499.62469,574,015,835.302,797,842,708,350.2493,822.00297,271,839.46469,871,287,674.7714,909,959,084.141,685,140,963.79914,050,527.33455,732,419,027.09301,411,022,008.90757,143,441,035.990.00610,206,761,616.03610,206,761,616.033,770,236,511,299.543,013,093,070,263.55
$500-1000K1,015,307.90626,113,650,511.17282,930.957,345,386,668.40732,376.9430,459,242,166.100.00585,788,533,073.98142,901,852,499.18603,464,593,968.5010,349.6055,195,457.72142,957,047,956.9039,168,020.101,653,722,802.28133,024,003.40144,438,578,735.6833,520,781,977.02177,959,360,712.700.0033,612,171,538.9733,612,171,538.97680,580,325,924.35502,620,965,211.65
>$1000K379,840.66809,761,972,395.7324,422.13494,744,654.44355,418.5419,390,582,467.220.00786,794,774,989.52239,993,680,245.64794,146,099,349.4031,041.86481,167,922.74240,474,848,168.376,485,373.366,641,576,948.250.00247,109,939,743.2624,716,756,377.24271,826,696,120.500.004,483,969,647.454,483,969,647.45832,837,090,111.57561,010,393,991.06
ALL176,868,871.7312,209,471,019,488.93144,140,597.392,606,369,147,962.3432,728,274.34929,083,426,982.140.009,219,997,290,384.191,550,270,515,415.7911,558,742,581,643.46753,140.662,164,492,310.611,552,435,007,726.4098,016,265,294.529,980,440,714.3297,332,400,087.251,367,066,783,058.951,359,481,493,301.342,726,548,276,360.290.003,181,476,373,888.423,181,476,373,888.4216,051,868,280,083.2113,325,320,003,722.92
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_4c00100_4num_returns_StandardDed_4standard_4num_returns_ItemDed_4c04470_4c04600_4c04800_4taxbc_4c62100_4num_returns_AMT_4c09600_4c05800_4c07100_4othertaxes_4refund_4iitax_4payrolltax_4combined_4ubi_4benefit_cost_total_4benefit_value_total_4expanded_income_4aftertax_income_4
<$0K62,007.96-7,773,991,240.2362,007.961,413,444,059.030.000.000.000.000.00-7,773,991,240.230.000.000.000.000.001,238,061.74-1,238,061.7416,398,480.9215,160,419.170.00852,959,620.07852,959,620.07-6,836,108,893.39-6,851,269,312.56
=$0K1,107,762.210.001,107,762.2118,185,442,682.240.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,249,618.4935,402,704,984.8611,195,916.21105,483,507,072.4853,702.28287,868,695.390.002,105,312,829.40138,317,697.1635,128,634,244.180.000.00138,317,697.1657,620,992.380.003,640,318,222.19-3,559,621,517.414,004,448,168.10444,826,650.690.0015,967,738,036.5315,967,738,036.5351,268,667,420.0750,823,840,769.39
$10-20K12,143,997.18108,307,735,340.7212,061,225.16169,711,440,952.2782,772.011,262,794,605.510.009,823,766,506.11837,890,903.51107,221,824,284.1533,797.086,271,715.36844,162,618.87242,095,409.570.0013,410,473,841.99-12,808,406,632.6912,790,988,253.54-17,418,379.150.0075,778,782,113.1875,778,782,113.18186,531,097,832.52186,548,516,211.68
$20-30K16,533,557.96229,332,514,011.2716,183,363.68242,434,889,352.11350,194.286,099,234,299.640.0073,470,322,749.517,177,382,293.11224,220,111,101.4290,198.3355,811,825.987,233,194,119.091,656,075,470.370.0018,443,405,340.35-12,866,286,691.6327,609,985,560.1914,743,698,868.560.00168,997,837,979.81168,997,837,979.81411,822,328,792.71397,078,629,924.15
$30-40K17,586,733.23373,011,801,100.5816,959,683.84273,570,418,239.23627,049.3910,807,335,765.380.00164,463,520,640.3617,083,950,111.09364,466,353,410.8996,822.37255,230,997.3017,339,181,108.384,282,156,616.070.0018,878,897,807.63-5,821,873,315.3244,746,054,147.1838,924,180,831.860.00213,736,474,210.64213,736,474,210.64611,789,089,785.82572,864,908,953.96
$40-50K16,019,986.64484,329,249,322.6314,992,126.75254,728,895,494.961,027,859.8918,576,391,809.320.00258,757,256,261.4027,485,733,786.82470,204,075,922.8916,080.7138,898,830.7127,524,632,617.546,557,054,068.940.0014,151,902,521.646,815,676,026.9557,820,702,696.9164,636,378,723.860.00202,607,192,925.01202,607,192,925.01717,643,738,482.57653,007,359,758.71
$50-75K29,933,848.031,248,745,467,955.9526,124,946.21505,413,253,297.643,808,901.8277,884,870,721.550.00755,619,401,143.4085,897,275,789.951,190,529,704,079.53132,609.11196,701,822.1186,093,977,612.0616,603,529,441.460.0019,523,956,210.1049,966,491,960.50142,116,645,490.13192,083,137,450.620.00510,505,481,393.60510,505,481,393.601,826,052,659,711.391,633,969,522,260.76
$75-100K19,221,820.691,216,397,627,860.4515,386,137.54323,970,609,436.533,835,683.1584,658,309,410.770.00843,490,998,035.72107,412,005,820.111,157,821,642,804.66121,358.30681,564,818.80108,093,570,638.9115,314,391,633.000.004,931,370,923.7987,847,808,082.11129,226,541,947.98217,074,350,030.090.00392,534,346,441.90392,534,346,441.901,651,756,968,058.261,434,682,618,028.17
$100-200K37,986,115.334,113,243,431,047.1023,660,185.69553,989,738,940.6614,325,929.64423,113,219,187.670.003,170,159,322,432.93452,181,948,706.313,824,640,041,159.98130,134.4499,122,999.07452,281,071,705.3838,391,932,700.500.003,208,843,901.66410,680,295,103.22425,238,220,664.52835,918,515,767.740.00952,192,658,365.24952,192,658,365.245,243,147,909,906.324,407,229,394,138.57
$200-500K13,628,275.462,976,510,546,936.086,097,626.78149,598,800,379.317,530,648.68256,564,800,374.190.002,573,119,565,248.73469,780,336,449.642,798,576,833,259.5067,917.39291,345,186.61470,071,681,636.2414,906,476,323.971,687,126,284.35913,798,951.17455,938,532,645.45256,517,895,002.21712,456,427,647.660.00610,206,761,616.03610,206,761,616.033,748,516,061,276.163,036,059,633,628.50
$500-1000K1,015,307.90626,366,804,447.73282,930.957,345,386,668.40732,376.9430,459,165,165.910.00586,042,087,177.41142,989,692,819.69603,717,844,155.3010,349.6054,955,713.72143,044,648,533.4138,815,386.831,653,780,494.37133,007,392.57144,526,606,248.3629,752,374,222.56174,278,980,470.920.0033,612,171,538.9733,612,171,538.97678,944,552,065.53504,665,571,594.61
>$1000K379,840.66809,922,191,589.6624,422.13494,744,654.44355,418.5419,390,582,467.220.00786,954,994,183.45240,053,034,609.06794,306,318,543.3331,041.86480,871,282.59240,533,905,891.656,485,373.366,641,632,642.860.00247,169,053,161.1623,410,511,736.53270,579,564,897.680.004,483,969,647.454,483,969,647.45832,331,055,810.96561,751,490,913.28
ALL176,868,871.7312,213,796,083,356.78144,138,335.122,606,340,571,229.3032,730,536.61929,104,572,502.540.009,224,006,547,208.411,551,037,568,986.4511,563,059,391,725.60730,309.212,160,775,192.241,553,198,344,178.6998,056,633,416.469,982,539,421.5797,237,213,174.861,367,887,037,008.961,153,250,766,370.762,521,137,803,379.720.003,181,476,373,888.423,181,476,373,888.4215,952,968,020,248.9413,431,830,216,869.22
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_4tax_cut_4perc_cut_4tax_inc_4perc_inc_4mean_4tot_change_4share_of_change_4ubi_4benefit_cost_total_4benefit_value_total_4pc_aftertaxinc_4
<$0K62,007.960.000.000.000.000.000.000.000.00852,959,620.07852,959,620.07-0.02
=$0K1,107,762.210.000.000.000.000.000.000.000.000.000.00nan
$0-10K11,249,618.4921,654.000.19276,878.602.460.364,060,312.060.500.0015,967,738,036.5315,967,738,036.530.73
$10-20K12,143,997.1881,908.200.67109,304.890.900.07834,934.010.100.0075,778,782,113.1875,778,782,113.180.65
$20-30K16,533,557.9670,979.300.43455,175.442.750.579,374,893.531.140.00168,997,837,979.81168,997,837,979.810.68
$30-40K17,586,733.2331,427.290.18973,520.095.542.1337,482,154.034.570.00213,736,474,210.64213,736,474,210.640.78
$40-50K16,019,986.6429,806.510.191,078,628.626.732.9547,303,341.025.770.00202,607,192,925.01202,607,192,925.010.88
$50-75K29,933,848.038,073.770.031,502,291.755.022.4673,698,783.228.980.00510,505,481,393.60510,505,481,393.600.84
$75-100K19,221,820.690.000.00994,794.955.183.1460,292,671.347.350.00392,534,346,441.90392,534,346,441.900.86
$100-200K37,986,115.3322,055.310.063,088,316.938.136.16233,952,311.8628.520.00952,192,658,365.24952,192,658,365.240.92
$200-500K13,628,275.46126,237.830.931,041,273.387.6415.12206,113,618.3625.130.00610,206,761,616.03610,206,761,616.030.76
$500-1000K1,015,307.9014,255.151.40181,359.4017.8686.7088,027,512.6810.730.0033,612,171,538.9733,612,171,538.970.41
>$1000K379,840.6618,615.924.90118,943.1931.31155.6359,113,417.897.210.004,483,969,647.454,483,969,647.450.13
ALL176,868,871.73425,013.280.249,820,487.255.554.64820,253,950.00100.000.003,181,476,373,888.423,181,476,373,888.420.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_4tax_cut_4perc_cut_4tax_inc_4perc_inc_4mean_4tot_change_4share_of_change_4ubi_4benefit_cost_total_4benefit_value_total_4pc_aftertaxinc_4
<$0K62,007.964,222.486.810.000.00-49.20-3,050,880.170.000.00852,959,620.07852,959,620.07-0.02
=$0K1,107,762.210.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,249,618.498,276,933.3973.580.000.00-66.23-745,011,915.370.360.0015,967,738,036.5315,967,738,036.530.73
$10-20K12,143,997.188,546,975.5670.380.000.00-195.70-2,376,571,030.421.150.0075,778,782,113.1875,778,782,113.180.65
$20-30K16,533,557.9610,919,192.1166.040.000.00-309.02-5,109,131,242.612.480.00168,997,837,979.81168,997,837,979.810.68
$30-40K17,586,733.2312,242,487.3069.610.000.00-469.92-8,264,367,459.114.010.00213,736,474,210.64213,736,474,210.640.78
$40-50K16,019,986.6412,187,256.5576.080.000.00-667.01-10,685,461,743.305.180.00202,607,192,925.01202,607,192,925.010.88
$50-75K29,933,848.0323,209,551.9977.540.000.00-879.94-26,340,057,040.8512.770.00510,505,481,393.60510,505,481,393.600.84
$75-100K19,221,820.6915,159,710.4078.870.000.00-1,247.32-23,975,676,981.8711.630.00392,534,346,441.90392,534,346,441.900.86
$100-200K37,986,115.3330,786,617.2381.050.000.00-2,073.48-78,763,619,235.0138.190.00952,192,658,365.24952,192,658,365.240.92
$200-500K13,628,275.4611,337,186.6683.190.000.00-3,294.12-44,893,127,006.6921.770.00610,206,761,616.03610,206,761,616.030.76
$500-1000K1,015,307.90884,362.9087.100.000.00-3,711.59-3,768,407,754.471.830.0033,612,171,538.9733,612,171,538.970.41
>$1000K379,840.66358,052.6794.264,207.931.11-3,438.93-1,306,244,640.710.630.004,483,969,647.454,483,969,647.450.13
ALL176,868,871.73133,912,549.2375.714,207.930.00-1,166.01-206,230,726,930.58100.000.003,181,476,373,888.423,181,476,373,888.420.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_4tax_cut_4perc_cut_4tax_inc_4perc_inc_4mean_4tot_change_4share_of_change_4ubi_4benefit_cost_total_4benefit_value_total_4pc_aftertaxinc_4
<$0K62,007.964,222.486.810.000.00-49.20-3,050,880.170.000.00852,959,620.07852,959,620.07-0.02
=$0K1,107,762.210.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,249,618.498,276,933.3973.580.000.00-65.86-740,951,603.310.360.0015,967,738,036.5315,967,738,036.530.73
$10-20K12,143,997.188,546,975.5670.380.000.00-195.63-2,375,736,096.411.160.0075,778,782,113.1875,778,782,113.180.65
$20-30K16,533,557.9610,919,192.1166.040.000.00-308.45-5,099,756,349.082.480.00168,997,837,979.81168,997,837,979.810.68
$30-40K17,586,733.2312,242,487.3069.610.000.00-467.79-8,226,885,305.084.010.00213,736,474,210.64213,736,474,210.640.78
$40-50K16,019,986.6412,187,256.5576.080.000.00-664.06-10,638,158,402.295.180.00202,607,192,925.01202,607,192,925.010.88
$50-75K29,933,848.0323,209,551.9977.540.000.00-877.48-26,266,358,257.6312.790.00510,505,481,393.60510,505,481,393.600.84
$75-100K19,221,820.6915,159,710.4078.870.000.00-1,244.18-23,915,384,310.5311.640.00392,534,346,441.90392,534,346,441.900.86
$100-200K37,986,115.3330,786,617.2381.050.000.00-2,067.33-78,529,666,923.1438.230.00952,192,658,365.24952,192,658,365.240.92
$200-500K13,628,275.4611,337,186.6683.190.000.00-3,278.99-44,687,013,388.3321.750.00610,206,761,616.03610,206,761,616.030.76
$500-1000K1,015,307.90884,362.9087.100.000.00-3,624.89-3,680,380,241.781.790.0033,612,171,538.9733,612,171,538.970.41
>$1000K379,840.66355,534.3393.606,726.271.77-3,283.30-1,247,131,222.820.610.004,483,969,647.454,483,969,647.450.13
ALL176,868,871.73133,910,030.8975.716,726.270.00-1,161.37-205,410,472,980.57100.000.003,181,476,373,888.423,181,476,373,888.420.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_4c00100_4num_returns_StandardDed_4standard_4num_returns_ItemDed_4c04470_4c04600_4c04800_4taxbc_4c62100_4num_returns_AMT_4c09600_4c05800_4c07100_4othertaxes_4refund_4iitax_4payrolltax_4combined_4ubi_4benefit_cost_total_4benefit_value_total_4expanded_income_4aftertax_income_4
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,681,497.7973,857,854,875.6017,627,795.51197,289,116,829.4153,702.28287,868,695.390.003,301,819,460.09215,845,005.8673,583,784,134.9214,728.91178,699.56216,023,705.4267,015,568.290.009,220,027,149.47-9,071,019,012.3411,121,706,938.162,050,687,925.830.0036,282,576,864.3936,282,576,864.39111,338,935,513.29109,288,247,587.46
10-2017,681,327.41198,556,349,096.8117,369,727.36255,466,016,051.70311,600.055,427,249,932.210.0046,964,528,797.534,367,891,569.29193,933,881,346.8173,782.1518,182,069.004,386,073,638.29944,197,277.440.0019,302,444,207.75-15,860,567,846.9128,181,294,542.8512,320,726,695.940.00163,551,169,924.21163,551,169,924.21372,713,534,410.72360,392,807,714.77
20-3017,669,026.52331,333,381,115.7817,140,991.63270,106,452,411.98528,034.899,128,642,477.110.00134,684,343,115.0713,937,533,219.42324,012,847,906.4490,383.60244,439,526.3514,181,972,745.773,674,817,490.930.0019,892,843,129.21-9,385,687,874.3747,497,809,154.3238,112,121,279.940.00203,494,926,018.15203,494,926,018.15561,213,130,821.18523,101,009,541.24
30-4017,698,404.27487,266,231,758.5016,739,075.48279,727,243,744.97959,328.7917,429,077,603.080.00248,033,819,287.4026,203,112,247.29473,789,428,179.0158,003.8393,413,074.4426,296,525,321.726,045,053,275.210.0016,850,044,647.573,401,427,398.9468,929,780,349.9272,331,207,748.860.00220,871,551,561.08220,871,551,561.08745,513,259,049.52673,182,051,300.66
40-5017,690,284.18634,416,208,679.6216,080,539.58292,129,202,925.561,609,744.6129,670,972,325.730.00369,037,132,095.6139,928,707,747.49611,936,416,876.8680,063.77178,904,534.8640,107,612,282.359,590,001,666.320.0013,500,264,800.5517,017,345,815.4886,709,958,528.40103,727,304,343.880.00269,185,565,234.65269,185,565,234.65946,940,133,255.47843,212,828,911.59
50-6017,693,635.57824,756,092,624.6415,037,549.15302,391,894,060.992,656,086.4256,058,307,129.060.00516,582,143,575.3260,679,473,941.39783,468,426,272.8372,888.89132,807,039.8460,812,280,981.2210,255,554,846.720.0010,020,060,726.0940,536,665,408.42110,541,656,579.42151,078,321,987.840.00321,184,453,327.94321,184,453,327.941,197,855,008,307.941,046,776,686,320.10
60-7017,693,995.191,130,797,323,794.8814,053,068.40297,149,718,513.233,640,926.7981,112,533,963.600.00783,816,698,460.29100,177,485,028.871,074,594,376,837.84101,014.75566,571,167.31100,744,056,196.1814,010,051,031.120.004,267,039,452.1882,466,965,712.88142,339,413,108.30224,806,378,821.180.00366,410,569,790.32366,410,569,790.321,546,243,810,339.961,321,437,431,518.77
70-8017,678,734.631,527,307,418,162.5912,332,211.87280,437,378,111.475,346,522.76151,121,197,644.500.001,122,520,297,475.74147,157,765,582.521,420,898,524,867.1134,312.5356,484,081.05147,214,249,663.5615,071,028,750.450.002,210,971,577.22129,932,249,335.89186,691,934,646.94316,624,183,982.820.00436,202,315,316.28436,202,315,316.282,023,199,078,492.281,706,574,894,509.46
80-9017,681,423.022,171,822,266,707.7210,144,454.68244,667,736,708.547,536,968.35229,250,341,486.990.001,705,686,555,701.77250,148,437,194.792,017,524,998,308.0089,190.9336,048,004.15250,184,485,198.9320,348,034,748.430.00832,478,321.65229,003,972,128.85266,214,414,593.12495,218,386,721.980.00449,293,441,781.47449,293,441,781.472,746,855,803,088.762,251,637,416,366.78
90-10017,700,543.144,829,357,892,672.797,615,183.73187,004,388,604.4810,085,359.41349,597,235,724.470.004,289,369,952,415.36907,454,263,878.884,584,999,896,913.65138,771.30837,464,114.06908,291,727,992.9418,010,510,639.619,980,440,714.321,236,226,075.55899,025,431,992.11411,253,524,859.911,310,278,956,852.020.00714,999,804,069.94714,999,804,069.945,799,995,586,804.104,489,716,629,952.09
ALL176,868,871.7312,209,471,019,488.93144,140,597.392,606,369,147,962.3432,728,274.34929,083,426,982.140.009,219,997,290,384.191,550,270,515,415.7911,558,742,581,643.46753,140.662,164,492,310.611,552,435,007,726.4098,016,265,294.529,980,440,714.3297,332,400,087.251,367,066,783,058.951,359,481,493,301.342,726,548,276,360.290.003,181,476,373,888.423,181,476,373,888.4216,051,868,280,083.2113,325,320,003,722.92
90-958,844,367.101,480,606,186,711.364,480,699.02110,466,698,101.604,363,668.08136,979,917,609.540.001,235,544,333,498.16205,061,227,339.041,388,553,217,878.3421,212.3453,822,650.12205,115,049,989.169,833,899,358.1134,303,504.68562,917,532.24194,752,536,603.48171,750,103,436.74366,502,640,040.220.00309,731,148,677.10309,731,148,677.101,878,451,710,130.811,511,949,070,090.58
95-997,073,168.951,752,783,294,233.352,706,141.5465,420,931,777.734,367,027.41152,854,733,985.730.001,536,039,870,262.34289,419,931,528.481,645,874,324,921.8658,058.75171,382,155.34289,591,313,683.827,826,567,818.121,365,446,653.30522,041,975.71282,608,150,543.29168,431,378,963.52451,039,529,506.810.00354,210,150,772.59354,210,150,772.592,227,938,085,995.321,776,898,556,488.51
Top 1%1,783,007.081,595,968,411,728.07428,343.1611,116,758,725.151,354,663.9259,762,584,129.200.001,517,785,748,654.86412,973,105,011.351,550,572,354,113.4559,500.21612,259,308.60413,585,364,319.96350,043,463.378,580,690,556.34151,266,567.59421,664,744,845.3471,072,042,459.65492,736,787,304.980.0051,058,504,620.2551,058,504,620.251,693,605,790,677.981,200,869,003,373.00
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_4c00100_4num_returns_StandardDed_4standard_4num_returns_ItemDed_4c04470_4c04600_4c04800_4taxbc_4c62100_4num_returns_AMT_4c09600_4c05800_4c07100_4othertaxes_4refund_4iitax_4payrolltax_4combined_4ubi_4benefit_cost_total_4benefit_value_total_4expanded_income_4aftertax_income_4
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,681,497.7973,866,414,841.8617,627,795.51197,289,116,829.4153,702.28287,868,695.390.003,304,188,924.01216,081,952.2573,592,344,101.1914,728.91178,699.56216,260,651.8167,015,568.290.009,214,935,238.23-9,065,690,154.709,378,410,947.36312,720,792.660.0036,282,576,864.3936,282,576,864.39110,475,847,484.15110,163,126,691.49
10-2017,681,327.41198,660,316,769.5317,368,921.44255,455,734,930.76312,405.975,439,253,097.550.0047,009,484,425.654,372,387,132.10194,031,094,489.4973,782.1518,182,069.004,390,569,201.10944,873,528.910.0019,302,386,879.22-15,856,691,207.0323,776,312,626.367,919,621,419.330.00163,551,169,924.21163,551,169,924.21370,615,011,125.18362,695,389,705.86
20-3017,669,026.52331,635,719,586.9017,139,535.29270,088,156,799.89529,491.249,147,976,268.470.00134,870,461,228.2413,957,011,374.05324,302,415,915.8090,383.60244,439,526.3514,201,450,900.403,678,981,410.360.0019,877,851,172.58-9,355,381,682.5440,092,575,989.7430,737,194,307.200.00203,494,926,018.15203,494,926,018.15557,812,852,710.02527,075,658,402.81
30-4017,698,404.27487,717,062,325.6116,739,075.48279,727,243,744.97959,328.7917,426,633,796.110.00248,406,854,942.2126,242,676,593.76474,243,313,504.8358,003.8393,413,074.4426,336,089,668.206,054,361,910.390.0016,827,253,568.603,454,474,189.2158,183,629,310.1661,638,103,499.370.00220,871,551,561.08220,871,551,561.08740,582,092,583.29678,943,989,083.92
40-5017,690,284.18634,677,730,240.8916,080,539.58292,129,202,925.561,609,744.6129,670,972,325.730.00369,267,811,437.7939,953,396,888.29612,197,938,438.1380,063.77178,904,534.8640,132,301,423.169,598,624,898.210.0013,482,428,875.0517,051,247,649.8973,146,925,494.5490,198,173,144.440.00269,185,565,234.65269,185,565,234.65940,415,178,651.71850,217,005,507.27
50-6017,693,635.57825,186,447,492.2515,037,549.15302,391,894,060.992,656,086.4256,058,174,074.550.00516,973,660,293.4460,724,674,937.33783,898,852,395.8072,888.89132,790,938.7360,857,465,876.0610,266,987,853.960.0010,002,450,077.4740,588,027,944.6393,261,170,420.28133,849,198,364.920.00321,184,453,327.94321,184,453,327.941,189,610,181,837.001,055,760,983,472.08
60-7017,693,995.191,131,155,692,662.1314,053,068.40297,149,718,513.233,640,926.7981,111,881,992.770.00784,159,269,336.18100,229,631,482.711,074,953,560,668.63101,014.75566,571,167.31100,796,202,650.0314,014,591,472.470.004,259,421,225.7382,522,189,951.84120,063,183,583.90202,585,373,535.740.00366,410,569,790.32366,410,569,790.321,535,448,773,195.281,332,863,399,659.54
70-8017,678,734.631,527,697,062,399.6412,332,211.87280,437,378,111.475,346,522.76151,119,760,549.930.001,122,883,674,511.94147,207,812,045.891,421,289,938,320.1134,312.5356,484,081.05147,264,296,126.9315,072,359,737.230.002,208,331,997.75129,983,604,391.95157,463,155,356.94287,446,759,748.890.00436,202,315,316.28436,202,315,316.282,008,959,120,064.501,721,512,360,315.62
80-9017,681,423.022,172,617,176,387.7810,144,454.68244,667,736,708.547,536,968.35229,249,183,860.660.001,706,460,951,811.66250,308,865,547.652,018,320,804,175.9789,190.9339,071,142.66250,347,936,690.3120,350,986,496.800.00828,671,420.12229,168,278,773.39224,630,232,872.08453,798,511,645.470.00449,293,441,781.47449,293,441,781.472,726,849,679,959.682,273,051,168,314.21
90-10017,700,543.144,830,582,460,650.197,615,183.73187,004,388,604.4810,085,359.41349,592,867,841.380.004,290,670,190,297.28907,825,031,032.414,586,229,129,715.65115,939.84830,739,958.28908,655,770,990.6918,007,850,539.839,982,539,421.571,233,482,720.12899,396,977,152.31353,255,169,769.401,252,652,146,921.710.00714,999,804,069.94714,999,804,069.945,772,199,282,638.134,519,547,135,716.42
ALL176,868,871.7312,213,796,083,356.78144,138,335.122,606,340,571,229.3032,730,536.61929,104,572,502.540.009,224,006,547,208.411,551,037,568,986.4511,563,059,391,725.60730,309.212,160,775,192.241,553,198,344,178.6998,056,633,416.469,982,539,421.5797,237,213,174.861,367,887,037,008.961,153,250,766,370.762,521,137,803,379.720.003,181,476,373,888.423,181,476,373,888.4215,952,968,020,248.9413,431,830,216,869.22
90-958,844,367.101,480,909,163,433.754,480,699.02110,466,698,101.604,363,668.08136,978,592,523.450.001,235,851,478,184.75205,129,551,092.931,388,857,409,544.5524,285.4954,205,484.73205,183,756,577.669,835,074,651.7734,330,744.88560,442,363.81194,822,570,306.97145,274,250,271.93340,096,820,578.900.00309,731,148,677.10309,731,148,677.101,865,516,219,961.041,525,419,399,382.15
95-997,073,168.951,753,206,238,714.262,706,141.5465,420,931,777.734,367,027.41152,852,040,459.900.001,536,512,114,007.94289,543,646,087.011,646,300,623,033.3133,781.20167,620,440.93289,711,266,527.947,823,800,633.901,367,312,724.13522,041,975.71282,732,736,642.46143,702,573,764.25426,435,310,406.710.00354,210,150,772.59354,210,150,772.592,215,994,218,943.171,789,558,908,536.46
Top 1%1,783,007.081,596,467,058,502.18428,343.1611,116,758,725.151,354,663.9259,762,234,858.030.001,518,306,598,104.59413,151,833,852.471,551,071,097,137.7957,873.15608,914,032.62413,760,747,885.09348,975,254.168,580,895,952.57150,998,380.60421,841,670,202.8964,278,345,733.22486,120,015,936.110.0051,058,504,620.2551,058,504,620.251,690,688,843,733.931,204,568,827,797.82
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_4tax_cut_4perc_cut_4tax_inc_4perc_inc_4mean_4tot_change_4share_of_change_4ubi_4benefit_cost_total_4benefit_value_total_4pc_aftertaxinc_4
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p17,681,497.7977,184.490.44357,796.272.020.305,328,857.640.650.0036,282,576,864.3936,282,576,864.390.80
10-2017,681,327.4178,628.270.44281,402.481.590.223,876,639.880.470.00163,551,169,924.21163,551,169,924.210.64
20-3017,669,026.5249,810.300.28810,032.554.581.7230,306,191.833.690.00203,494,926,018.15203,494,926,018.150.76
30-4017,698,404.2730,152.240.171,272,170.147.193.0053,046,790.266.470.00220,871,551,561.08220,871,551,561.080.86
40-5017,690,284.183,215.410.02786,227.104.441.9233,901,834.424.130.00269,185,565,234.65269,185,565,234.650.83
50-6017,693,635.574,858.360.03977,070.315.522.9051,362,536.226.260.00321,184,453,327.94321,184,453,327.940.86
60-7017,693,995.190.000.00905,895.495.123.1255,224,238.966.730.00366,410,569,790.32366,410,569,790.320.86
70-8017,678,734.639,291.250.051,378,856.787.802.9051,355,056.066.260.00436,202,315,316.28436,202,315,316.280.88
80-9017,681,423.0212,095.100.071,568,287.978.879.29164,306,644.5320.030.00449,293,441,781.47449,293,441,781.470.95
90-10017,700,543.14159,777.850.901,482,748.168.3820.99371,545,160.2045.300.00714,999,804,069.94714,999,804,069.940.66
ALL176,868,871.73425,013.280.249,820,487.255.554.64820,253,950.00100.000.003,181,476,373,888.423,181,476,373,888.420.80
90-958,844,367.1011,495.300.13611,412.676.917.9270,033,703.488.540.00309,731,148,677.10309,731,148,677.100.89
95-997,073,168.95107,674.851.52498,054.027.0417.61124,586,099.1615.190.00354,210,150,772.59354,210,150,772.590.71
Top 1%1,783,007.0840,607.712.28373,281.4720.9499.23176,925,357.5621.570.0051,058,504,620.2551,058,504,620.250.31
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_4tax_cut_4perc_cut_4tax_inc_4perc_inc_4mean_4tot_change_4share_of_change_4ubi_4benefit_cost_total_4benefit_value_total_4pc_aftertaxinc_4
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,681,497.7912,555,830.8671.010.000.00-98.59-1,743,295,990.800.850.0036,282,576,864.3936,282,576,864.390.80
10-2017,681,327.4111,291,243.8663.860.000.00-249.13-4,404,981,916.492.140.00163,551,169,924.21163,551,169,924.210.64
20-3017,669,026.5212,210,890.9569.110.000.00-419.11-7,405,233,164.583.590.00203,494,926,018.15203,494,926,018.150.76
30-4017,698,404.2713,129,343.0674.180.000.00-607.18-10,746,151,039.765.210.00220,871,551,561.08220,871,551,561.080.86
40-5017,690,284.1813,321,395.8175.300.000.00-766.69-13,563,033,033.866.580.00269,185,565,234.65269,185,565,234.650.83
50-6017,693,635.5714,080,828.6879.580.000.00-976.65-17,280,486,159.148.380.00321,184,453,327.94321,184,453,327.940.86
60-7017,693,995.1913,905,635.1078.590.000.00-1,258.97-22,276,229,524.4010.800.00366,410,569,790.32366,410,569,790.320.86
70-8017,678,734.6313,728,166.0277.650.000.00-1,653.33-29,228,779,290.0014.170.00436,202,315,316.28436,202,315,316.280.88
80-9017,681,423.0214,751,494.0983.430.000.00-2,351.86-41,584,181,721.0420.160.00449,293,441,781.47449,293,441,781.470.95
90-10017,700,543.1414,937,720.7884.394,207.930.02-3,276.64-57,998,355,090.5128.120.00714,999,804,069.94714,999,804,069.940.66
ALL176,868,871.73133,912,549.2375.714,207.930.00-1,166.01-206,230,726,930.58100.000.003,181,476,373,888.423,181,476,373,888.420.80
90-958,844,367.107,567,153.0185.560.000.00-2,993.53-26,475,853,164.8112.840.00309,731,148,677.10309,731,148,677.100.89
95-997,073,168.955,773,312.3081.620.000.00-3,496.14-24,728,805,199.2711.990.00354,210,150,772.59354,210,150,772.590.71
Top 1%1,783,007.081,597,255.4789.584,207.930.24-3,810.25-6,793,696,726.433.290.0051,058,504,620.2551,058,504,620.250.31
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_4tax_cut_4perc_cut_4tax_inc_4perc_inc_4mean_4tot_change_4share_of_change_4ubi_4benefit_cost_total_4benefit_value_total_4pc_aftertaxinc_4
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,681,497.7912,555,830.8671.010.000.00-98.29-1,737,967,133.170.850.0036,282,576,864.3936,282,576,864.390.80
10-2017,681,327.4111,291,243.8663.860.000.00-248.91-4,401,105,276.622.140.00163,551,169,924.21163,551,169,924.210.64
20-3017,669,026.5212,210,890.9569.110.000.00-417.39-7,374,926,972.743.590.00203,494,926,018.15203,494,926,018.150.76
30-4017,698,404.2713,129,343.0674.180.000.00-604.18-10,693,104,249.495.210.00220,871,551,561.08220,871,551,561.080.86
40-5017,690,284.1813,321,395.8175.300.000.00-764.78-13,529,131,199.446.590.00269,185,565,234.65269,185,565,234.650.83
50-6017,693,635.5714,080,828.6879.580.000.00-973.75-17,229,123,622.928.390.00321,184,453,327.94321,184,453,327.940.86
60-7017,693,995.1913,905,635.1078.590.000.00-1,255.85-22,221,005,285.4510.820.00366,410,569,790.32366,410,569,790.320.86
70-8017,678,734.6313,728,166.0277.650.000.00-1,650.42-29,177,424,233.9414.200.00436,202,315,316.28436,202,315,316.280.88
80-9017,681,423.0214,751,494.0983.430.000.00-2,342.56-41,419,875,076.5120.160.00449,293,441,781.47449,293,441,781.470.95
90-10017,700,543.1414,935,202.4584.386,726.270.04-3,255.65-57,626,809,930.3028.050.00714,999,804,069.94714,999,804,069.940.66
ALL176,868,871.73133,910,030.8975.716,726.270.00-1,161.37-205,410,472,980.57100.000.003,181,476,373,888.423,181,476,373,888.420.80
90-958,844,367.107,567,153.0185.560.000.00-2,985.61-26,405,819,461.3312.860.00309,731,148,677.10309,731,148,677.100.89
95-997,073,168.955,773,312.3081.620.000.00-3,478.53-24,604,219,100.1011.980.00354,210,150,772.59354,210,150,772.590.71
Top 1%1,783,007.081,594,737.1489.446,726.270.38-3,711.02-6,616,771,368.873.220.0051,058,504,620.2551,058,504,620.250.31
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_5.json b/webapp/apps/taxbrain/tests/response_year_5.json index 297ecbf8..16d6c482 100644 --- a/webapp/apps/taxbrain/tests/response_year_5.json +++ b/webapp/apps/taxbrain/tests/response_year_5.json @@ -1 +1 @@ -{"aggr_1": {"ind_tax_5": "1513394724663.42", "payroll_tax_5": "1482486015569.48", "combined_tax_5": "2995880740232.90"}, "aggr_2": {"ind_tax_5": "2048406407377.83", "payroll_tax_5": "2192387202477.56", "combined_tax_5": "4240793609855.39"}, "diff_ptax_xdec": {"90-95_5": ["9083340.35", "0.00", "0.00", "7719241.05", "84.98", "10177.81", "92448531428.54", "13.02", "267722125134.13", "306763427526.10", "306763427526.10", "9.75"], "40-50_5": ["18167282.97", "0.00", "0.00", "13892415.70", "76.47", "2528.28", "45931981170.89", "6.47", "389421363484.94", "277736329195.46", "277736329195.46", "35.27"], "ALL_5": ["181676570.84", "1454.88", "0.00", "137978889.33", "75.95", "3907.50", "709901186908.08", "100.00", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21.33"], "0-10p_5": ["16776289.92", "0.00", "0.00", "12363732.24", "73.70", "326.35", "5474946078.05", "0.77", "237341572633.38", "37885765600.41", "37885765600.41", "184.15"], "20-30_5": ["18168182.12", "0.00", "0.00", "12820902.34", "70.57", "1379.39", "25061078932.68", "3.53", "330694030336.70", "195961942891.67", "195961942891.67", "51.00"], "30-40_5": ["18167768.67", "0.00", "0.00", "13257145.30", "72.97", "1869.17", "33958698470.76", "4.78", "355726382205.92", "244711830934.02", "244711830934.02", "41.58"], "0-10n_5": ["96989.23", "0.00", "0.00", "20920.20", "21.57", "282.58", "27407614.93", "0.00", "2136569283.56", "1065393160.51", "1065393160.51", "-6.98"], "Top 1%_5": ["1816868.76", "1454.88", "0.08", "1599040.20", "88.01", "12465.60", "22648355526.86", "3.19", "53529289102.11", "77703876465.87", "77703876465.87", "1.74"], "70-80_5": ["18167916.88", "0.00", "0.00", "14573706.52", "80.22", "5604.02", "101813313963.53", "14.34", "482276474996.17", "451241956105.07", "451241956105.07", "18.95"], "10-20_5": ["18166974.95", "0.00", "0.00", "11844764.22", "65.20", "829.94", "15077478715.38", "2.12", "301649524157.30", "154323980763.65", "154323980763.65", "70.25"], "0-10z_5": ["1294344.69", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "25727723588.41", "0.00", "0.00", "inf"], "90-100_5": ["18167684.33", "1454.88", "0.01", "15588587.93", "85.80", "11244.07", "204278755210.59", "28.78", "539780254932.17", "707937682985.16", "707937682985.16", "6.17"], "80-90_5": ["18167687.64", "0.00", "0.00", "14983397.36", "82.47", "7744.89", "140706681194.38", "19.82", "515113187691.81", "519675037828.63", "519675037828.63", "13.91"], "60-70_5": ["18167450.23", "0.00", "0.00", "14432466.06", "79.44", "4277.55", "77712203296.97", "10.95", "449926062522.61", "376912638294.73", "376912638294.73", "24.41"], "95-99_5": ["7267475.22", "0.00", "0.00", "6270306.68", "86.28", "12271.37", "89181868255.20", "12.56", "218528840695.93", "323470378993.19", "323470378993.19", "6.18"], "50-60_5": ["18167999.21", "0.00", "0.00", "14200851.46", "78.16", "3294.73", "59858642259.91", "8.43", "419095928166.64", "324986725238.01", "324986725238.01", "29.58"]}, "diff_comb_xbin": {">$1000K_5": ["470795.34", "136.59", "0.03", "469230.57", "99.67", "22338.70", "10516958179.24", "0.84", "13831222523.07", "10729862117.64", "10729862117.64", "0.83"], "$10-20K_5": ["12143564.95", "0.00", "0.00", "9230955.73", "76.02", "1636.21", "19869401970.10", "1.60", "193072561784.47", "66367601087.80", "66367601087.80", "94.34"], "ALL_5": ["181676570.84", "136.59", "0.00", "154533060.54", "85.06", "6852.36", "1244912869622.49", "100.00", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21.33"], "$30-40K_5": ["17194134.08", "0.00", "0.00", "13138218.25", "76.41", "3345.30", "57519529814.84", "4.62", "317771425073.47", "197804129460.36", "197804129460.36", "47.62"], "<$0K_5": ["96989.23", "0.00", "0.00", "24193.77", "24.94", "467.12", "45305304.75", "0.00", "2136569283.56", "1065393160.51", "1065393160.51", "-6.98"], "$100-200K_5": ["39345359.34", "0.00", "0.00", "37031561.18", "94.12", "11104.25", "436900730114.75", "35.09", "1073883215399.16", "1039336650146.40", "1039336650146.40", "16.36"], "$20-30K_5": ["17016650.50", "0.00", "0.00", "11835967.01", "69.56", "2453.77", "41754978486.48", "3.35", "291379465958.58", "165036026043.73", "165036026043.73", "61.24"], "$500-1000K_5": ["1334604.26", "0.00", "0.00", "1322791.72", "99.11", "21376.78", "28529544626.39", "2.29", "39357122079.25", "66580560613.56", "66580560613.56", "2.66"], "$0-10K_5": ["11304225.47", "0.00", "0.00", "9045862.46", "80.02", "790.57", "8936797300.60", "0.72", "153307577724.86", "16756223815.79", "16756223815.79", "280.50"], "$75-100K_5": ["20215974.26", "0.00", "0.00", "18325706.17", "90.65", "6885.09", "139188739835.46", "11.18", "494989994433.28", "412291905658.42", "412291905658.42", "25.59"], "$40-50K_5": ["15556704.98", "0.00", "0.00", "12481392.48", "80.23", "3923.39", "61034996070.45", "4.90", "309739343152.90", "215352518359.07", "215352518359.07", "40.46"], "$200-500K_5": ["16203988.51", "0.00", "0.00", "15697493.31", "96.87", "17584.19", "284933933163.10", "22.89", "481913999348.81", "624943207753.23", "624943207753.23", "7.79"], "$50-75K_5": ["29499235.23", "0.00", "0.00", "25544012.96", "86.59", "5260.16", "155170761067.51", "12.46", "651778853649.79", "476175204780.80", "476175204780.80", "32.63"], "=$0K_5": ["1294344.69", "0.00", "0.00", "385674.93", "29.80", "394.94", "511193688.83", "0.04", "25727723588.41", "0.00", "0.00", "inf"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"90-95_5": ["9083340.35", "1938044022007.58", "5315404.84", "161604179833.26", "3764612.96", "136535897143.75", "0.00", "1634548027423.62", "288586118546.84", "1842555579700.12", "44958.73", "101774988.37", "288687893535.22", "11347355893.22", "318048001.87", "71466521.95", "277587119121.92", "282404648776.34", "559991767898.26", "267722125134.13", "306763427526.10", "306763427526.10", "2391448056672.88", "1831456288774.62"], "40-50_5": ["18167282.97", "1060420124670.75", "17226122.33", "390715072654.89", "930931.37", "22403687781.84", "0.00", "652070927196.70", "76807503867.93", "1042670023140.64", "261953.29", "652779699.34", "77460283567.27", "16383697813.11", "0.00", "1752003524.62", "59324582229.54", "139069848183.37", "198394430412.91", "389421363484.94", "277736329195.46", "277736329195.46", "1407236584061.20", "1208842153648.30"], "ALL_5": ["181676570.84", "17379310241958.53", "157145793.39", "3586427421134.00", "24382399.37", "804525675263.46", "0.00", "13056066324503.37", "2208045066074.44", "16797464763220.74", "7985052.64", "11873931749.46", "2219918997823.90", "153721520934.55", "11672567294.29", "29463636805.80", "2048406407377.83", "2192387202477.56", "4240793609855.39", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21732305818819.01", "17491512208963.62"], "0-10p_5": ["16776289.92", "319633602275.15", "16362502.86", "227797185890.58", "405114.78", "4975994202.57", "0.00", "104986863268.95", "10519426081.61", "314989171107.77", "4374929.26", "4299762289.03", "14819188370.63", "4976281285.06", "0.00", "7633265597.96", "2209641487.61", "16505318661.24", "18714960148.85", "237341572633.38", "37885765600.41", "37885765600.41", "360954391055.53", "342239430906.68"], "20-30_5": ["18168182.12", "683019982707.72", "17654796.18", "353446031728.36", "504095.43", "11599573952.94", "0.00", "333392536264.66", "36152684566.92", "673081180876.84", "614932.09", "1133016349.72", "37285700916.64", "11001178822.09", "0.00", "5387860593.14", "20896661501.41", "76082612686.06", "96979274187.47", "330694030336.70", "195961942891.67", "195961942891.67", "918569307267.34", "821590033079.86"], "30-40_5": ["18167768.67", "839789622154.13", "17479233.08", "370756807419.31", "678614.01", "15337164934.16", "0.00", "463095720101.72", "51441517346.72", "827165160631.15", "380576.17", "806362142.33", "52247879489.05", "13224566733.60", "0.00", "2793225321.34", "36230087434.10", "103056568971.99", "139286656406.09", "355726382205.92", "244711830934.02", "244711830934.02", "1139577462679.96", "1000290806273.87"], "0-10n_5": ["96989.23", "-12454939258.97", "21997.19", "2183901333.33", "64.69", "10147699.40", "0.00", "993950959.15", "242890927.13", "-12464369361.90", "0.00", "0.00", "242890927.13", "2109040.67", "2884867.75", "283422.75", "243383331.46", "85823350.39", "329206681.85", "2136569283.56", "1065393160.51", "1065393160.51", "-26726074004.85", "-27055280686.70"], "Top 1%_5": ["1816868.76", "1795991812211.04", "552832.00", "16626766664.82", "1263899.21", "61830565105.35", "0.00", "1711188117267.81", "462834302339.46", "1748248288439.48", "96275.51", "1088787970.47", "463923090309.93", "141345625.29", "9162054440.11", "20632018.86", "472923167105.89", "98271278962.31", "571194446068.19", "53529289102.11", "77703876465.87", "77703876465.87", "1943392741737.98", "1372198295669.79"], "70-80_5": ["18167916.88", "2124684763532.64", "14658887.78", "404744521096.66", "3505551.90", "108372918575.37", "0.00", "1610475428429.00", "233532911916.90", "2048256451510.19", "58506.37", "216719737.34", "233749631654.24", "20782478844.77", "0.00", "363496423.43", "212603656386.04", "307489606310.18", "520093262696.22", "482276474996.17", "451241956105.07", "451241956105.07", "2704047018147.55", "2183953755451.33"], "10-20_5": ["18166974.95", "515570301175.42", "17824237.65", "335645930996.40", "336706.89", "6100145524.41", "0.00", "198316869598.48", "20727244711.27", "510178888582.71", "1391330.57", "1785450156.66", "22512694867.92", "7124885848.65", "0.00", "9412179513.92", "5975629505.36", "45573965148.37", "51549594653.73", "301649524157.30", "154323980763.65", "154323980763.65", "689320460453.95", "637770865800.22"], "0-10z_5": ["1294344.69", "25711442732.29", "1282189.38", "28069548052.01", "11814.23", "18768803.36", "0.00", "2493044508.53", "258675900.71", "25695093561.21", "329678.90", "480459418.67", "739135319.37", "227941630.54", "0.00", "0.00", "511193688.83", "0.00", "511193688.83", "25727723588.41", "0.00", "0.00", "25727723588.41", "25216529899.58"], "90-100_5": ["18167684.33", "5975185809429.78", "9346308.50", "283827443164.69", "8817081.08", "345885570259.29", "0.00", "5325302893608.27", "1139496353665.72", "5726096697400.13", "227505.79", "1467149993.40", "1140963503659.12", "19831725247.02", "11667634704.85", "159545169.54", "1132639867947.41", "663166662202.56", "1795806530149.97", "539780254932.17", "707937682985.16", "707937682985.16", "7064483520405.30", "5268676990255.32"], "80-90_5": ["18167687.64", "2851629580071.25", "12645223.24", "369552600438.14", "5516226.78", "189559205996.81", "0.00", "2284578119264.43", "365745793118.94", "2720371456242.23", "95048.41", "237649111.76", "365983442230.70", "22330515913.65", "2047721.69", "215530289.00", "343439443749.73", "425524402305.78", "768963846055.51", "515113187691.81", "519675037828.63", "519675037828.63", "3569494571576.87", "2800530725521.36"], "60-70_5": ["18167450.23", "1672023950914.07", "15896797.30", "414085494453.39", "2264720.33", "63326068013.63", "0.00", "1195296667483.39", "160242609675.79", "1625653129362.59", "94391.92", "345396839.50", "160588006515.29", "19714344047.45", "0.00", "664662203.25", "140209000264.59", "234832829559.60", "375041829824.19", "449926062522.61", "376912638294.73", "376912638294.73", "2148243639138.51", "1773201809314.32"], "95-99_5": ["7267475.22", "2241149975211.15", "3478071.66", "105596496666.62", "3788568.91", "147519108010.19", "0.00", "1979566748916.84", "388075932779.42", "2135292829260.54", "86271.55", "276587034.55", "388352519813.97", "8343023728.51", "2187532262.88", "67446628.73", "382129581719.61", "282490734463.91", "664620316183.52", "218528840695.93", "323470378993.19", "323470378993.19", "2729642721994.43", "2065022405810.91"], "50-60_5": ["18167999.21", "1324096001554.32", "16747497.90", "405602883906.23", "1411477.88", "36936429519.68", "0.00", "885063303820.07", "112877454294.81", "1295771880167.18", "156199.87", "449186011.72", "113326640306.53", "18121795707.93", "0.00", "1081584746.86", "94123259851.74", "180999565098.03", "275122824949.77", "419095928166.64", "324986725238.01", "324986725238.01", "1731377214449.24", "1456254389499.48"]}, "aggr_d": {"ind_tax_5": "535011682714.41", "payroll_tax_5": "709901186908.08", "combined_tax_5": "1244912869622.49"}, "dropq_version": "0.17.0", "dist1_xdec": {"90-95_5": ["9083340.35", "1671581511518.38", "3909918.30", "106544273266.32", "4992069.32", "171797277571.75", "0.00", "1394563773034.11", "233954866469.29", "1553613695219.83", "29508.23", "64495100.77", "234019361570.06", "11142013019.47", "89271692.44", "482099861.92", "222484520381.12", "189956117347.80", "412440637728.92", "0.00", "309212457324.51", "309212457324.51", "2081200091845.16", "1668759454116.25"], "40-50_5": ["18167282.97", "672224179107.72", "14945324.91", "314241405749.03", "1559459.62", "32995452956.12", "0.00", "384625480034.56", "41647547723.98", "646959987880.04", "30821.61", "117046232.89", "41764593956.87", "9362055517.43", "0.00", "14024073646.99", "18378464792.45", "93137867012.48", "111516331804.93", "0.00", "286863160932.20", "286863160932.20", "1005150984866.11", "893634653061.18"], "ALL_5": ["181676570.84", "13344738988073.07", "126984678.73", "2747057813112.96", "35346557.29", "1077295271311.10", "0.00", "10130816261415.69", "1713063035612.40", "12584941394934.10", "484620.25", "2121499123.80", "1715184534736.20", "109742396705.48", "11019393552.06", "103066806919.37", "1513394724663.42", "1482486015569.48", "2995880740232.90", "0.00", "3362067795272.93", "3362067795272.93", "17412095860986.93", "14416215120754.04"], "0-10p_5": ["16776289.92", "82306843330.23", "14150622.58", "191130032666.13", "33844.89", "348089339.66", "0.00", "3111559486.51", "204592335.58", "81973163154.69", "9728.93", "4738004.39", "209330339.97", "88284688.41", "0.00", "9494099520.14", "-9373053868.59", "11030372583.19", "1657318714.61", "0.00", "39094792702.63", "39094792702.63", "122099186173.81", "120441867459.21"], "20-30_5": ["18168182.12", "353327681180.42", "14416444.57", "286877998650.48", "658343.25", "14122447492.21", "0.00", "140162129990.55", "14346760647.06", "341440609273.80", "38989.46", "58547672.53", "14405308319.59", "3755485126.14", "0.00", "22339423057.61", "-11689599864.16", "51021533753.38", "39331933889.22", "0.00", "203038754102.39", "203038754102.39", "583421143795.67", "544089209906.44"], "30-40_5": ["18167768.67", "485367787808.92", "14889828.59", "301275093601.75", "918208.23", "19245467122.52", "0.00", "241462490267.74", "25655594222.04", "469834348891.74", "28562.61", "69874345.24", "25725468567.28", "6058910914.59", "0.00", "18187994925.15", "1478562727.55", "69097870501.23", "70576433228.78", "0.00", "253666490777.44", "253666490777.44", "777113820065.22", "706537386836.44"], "0-10n_5": ["96989.23", "-14588624241.01", "6515.29", "1827687179.51", "64.69", "10147699.40", "0.00", "902835046.53", "223506469.94", "-14598054343.95", "0.00", "0.00", "223506469.94", "702655.00", "2884867.75", "203041.05", "225485641.64", "58415735.46", "283901377.10", "0.00", "1136006673.81", "1136006673.81", "-28802849281.06", "-29086750658.15"], "Top 1%_5": ["1816868.76", "1744273340607.76", "438861.26", "11546100014.84", "1367076.62", "64774630879.52", "0.00", "1661864234182.96", "446351575963.57", "1694688721819.58", "94128.51", "1017064906.79", "447368640870.36", "111419332.08", "9090025216.45", "104535215.55", "456242711539.18", "75622923435.45", "531865634974.63", "0.00", "77999578347.06", "77999578347.06", "1880581813737.31", "1348716178762.68"], "70-80_5": ["18167916.88", "1643688620973.54", "11496475.26", "291009631805.66", "5910011.91", "165990026433.52", "0.00", "1213721362997.42", "159328637752.94", "1529605603231.09", "25354.77", "110047657.30", "159438685410.24", "18862842389.38", "0.00", "2762940779.41", "137812902241.45", "205676292346.64", "343489194588.10", "0.00", "458678169981.56", "458678169981.56", "2179546057068.02", "1836056862479.93"], "10-20_5": ["18166974.95", "214171965444.44", "13483972.93", "273431256673.52", "345479.31", "7076987185.31", "0.00", "49699580581.17", "4755447826.19", "207931441265.84", "50650.40", "42788890.61", "4798236716.80", "1213435611.80", "0.00", "20013941608.15", "-16429140503.16", "30496486432.99", "14067345929.84", "0.00", "162605923444.77", "162605923444.77", "388665328046.41", "374597982116.57"], "0-10z_5": ["1294344.69", "-16280856.12", "0.00", "23523505739.38", "0.00", "0.00", "0.00", "0.00", "0.00", "-16280856.12", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "90-100_5": ["18167684.33", "5440200013451.80", "6888821.26", "188304838060.40", "10922360.93", "406396055891.82", "0.00", "4836929419043.37", "1019372591435.40", "5152827104218.26", "187251.34", "1336844652.07", "1020709436087.46", "20051935875.53", "11016508684.32", "1023534137.22", "1010650474759.03", "458887906991.97", "1469538381750.99", "0.00", "712569807858.43", "712569807858.43", "6431901346911.47", "4962362965160.47"], "80-90_5": ["18167687.64", "2338560473268.42", "9308609.20", "246030913282.08", "8327491.02", "266104286903.98", "0.00", "1837988023542.39", "271670429782.94", "2159156287322.16", "45853.81", "123427789.83", "271793857572.76", "21394796242.88", "0.00", "1365758938.37", "249033302391.51", "284817721111.40", "533851023502.91", "0.00", "525967607086.20", "525967607086.20", "2992341356575.83", "2458490333072.92"], "60-70_5": ["18167450.23", "1223328957805.53", "13213361.26", "312048181158.48", "4015466.20", "104422055660.00", "0.00", "843975122701.52", "107541423023.46", "1148307593603.79", "31958.14", "127838649.55", "107669261673.01", "16152289799.44", "0.00", "5209112401.83", "86307859471.74", "157120626262.62", "243428485734.36", "0.00", "384942461043.83", "384942461043.83", "1668673510738.23", "1425245025003.86"], "95-99_5": ["7267475.22", "2024345161325.66", "2540041.70", "70214464779.24", "4563214.99", "169824147440.56", "0.00", "1780501411826.30", "339066149002.53", "1904524687178.85", "63614.60", "255284644.51", "339321433647.04", "8798503523.98", "1837211775.42", "436899059.75", "331923242838.73", "193308866208.72", "525232109047.45", "0.00", "325357772186.86", "325357772186.86", "2470119441329.00", "1944887332281.55"], "50-60_5": ["18167999.21", "906167370799.18", "14184702.88", "317357268546.54", "2655827.24", "60584254626.56", "0.00", "578238257723.94", "68316504392.87", "861519591292.75", "35449.18", "130345229.40", "68446849622.27", "12801657884.87", "0.00", "8645724863.44", "46999466873.96", "121140922838.12", "168140389712.08", "0.00", "333504620669.68", "333504620669.68", "1291985976027.23", "1123845586315.16"]}, "diff_comb_xdec": {"90-95_5": ["9083340.35", "0.00", "0.00", "8807040.83", "96.96", "16244.15", "147551130169.34", "11.85", "267722125134.13", "306763427526.10", "306763427526.10", "9.75"], "40-50_5": ["18167282.97", "0.00", "0.00", "15458558.78", "85.09", "4782.12", "86878098607.98", "6.98", "389421363484.94", "277736329195.46", "277736329195.46", "35.27"], "ALL_5": ["181676570.84", "136.59", "0.00", "154533060.54", "85.06", "6852.36", "1244912869622.49", "100.00", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21.33"], "0-10p_5": ["16776289.92", "0.00", "0.00", "13554780.23", "80.80", "1016.77", "17057641434.24", "1.37", "237341572633.38", "37885765600.41", "37885765600.41", "184.15"], "20-30_5": ["18168182.12", "0.00", "0.00", "13632649.33", "75.04", "3172.98", "57647340298.25", "4.63", "330694030336.70", "195961942891.67", "195961942891.67", "51.00"], "30-40_5": ["18167768.67", "0.00", "0.00", "14398529.34", "79.25", "3781.98", "68710223177.31", "5.52", "355726382205.92", "244711830934.02", "244711830934.02", "41.58"], "0-10n_5": ["96989.23", "0.00", "0.00", "24193.77", "24.94", "467.12", "45305304.75", "0.00", "2136569283.56", "1065393160.51", "1065393160.51", "-6.98"], "Top 1%_5": ["1816868.76", "136.59", "0.01", "1803491.45", "99.26", "21646.48", "39328811093.56", "3.16", "53529289102.11", "77703876465.87", "77703876465.87", "1.74"], "70-80_5": ["18167916.88", "0.00", "0.00", "16911833.88", "93.09", "9720.66", "176604068108.12", "14.19", "482276474996.17", "451241956105.07", "451241956105.07", "18.95"], "10-20_5": ["18166974.95", "0.00", "0.00", "12550664.54", "69.09", "2063.21", "37482248723.90", "3.01", "301649524157.30", "154323980763.65", "154323980763.65", "70.25"], "0-10z_5": ["1294344.69", "0.00", "0.00", "385674.93", "29.80", "394.94", "511193688.83", "0.04", "25727723588.41", "0.00", "0.00", "inf"], "90-100_5": ["18167684.33", "136.59", "0.00", "17641759.14", "97.11", "17958.71", "326268148398.98", "26.21", "539780254932.17", "707937682985.16", "707937682985.16", "6.17"], "80-90_5": ["18167687.64", "0.00", "0.00", "17352932.48", "95.52", "12941.26", "235112822552.60", "18.89", "515113187691.81", "519675037828.63", "519675037828.63", "13.91"], "60-70_5": ["18167450.23", "0.00", "0.00", "16588001.00", "91.31", "7244.46", "131613344089.83", "10.57", "449926062522.61", "376912638294.73", "376912638294.73", "24.41"], "95-99_5": ["7267475.22", "0.00", "0.00", "7031226.86", "96.75", "19179.73", "139388207136.07", "11.20", "218528840695.93", "323470378993.19", "323470378993.19", "6.18"], "50-60_5": ["18167999.21", "0.00", "0.00", "16033483.12", "88.25", "5888.51", "106982435237.69", "8.59", "419095928166.64", "324986725238.01", "324986725238.01", "29.58"]}, "diff_ptax_xbin": {">$1000K_5": ["470795.34", "1454.88", "0.31", "425868.26", "90.46", "12423.45", "5848903228.23", "0.82", "13831222523.07", "10729862117.64", "10729862117.64", "0.83"], "$10-20K_5": ["12143564.95", "0.00", "0.00", "8712530.82", "71.75", "638.10", "7748758996.48", "1.09", "193072561784.47", "66367601087.80", "66367601087.80", "94.34"], "ALL_5": ["181676570.84", "1454.88", "0.00", "137978889.33", "75.95", "3907.50", "709901186908.08", "100.00", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21.33"], "$30-40K_5": ["17194134.08", "0.00", "0.00", "12271731.66", "71.37", "1510.51", "25971925045.01", "3.66", "317771425073.47", "197804129460.36", "197804129460.36", "47.62"], "<$0K_5": ["96989.23", "0.00", "0.00", "20920.20", "21.57", "282.58", "27407614.93", "0.00", "2136569283.56", "1065393160.51", "1065393160.51", "-6.98"], "$100-200K_5": ["39345359.34", "0.00", "0.00", "31967962.64", "81.25", "6545.88", "257549990409.32", "36.28", "1073883215399.16", "1039336650146.40", "1039336650146.40", "16.36"], "$20-30K_5": ["17016650.50", "0.00", "0.00", "11188270.49", "65.75", "1004.24", "17088725502.63", "2.41", "291379465958.58", "165036026043.73", "165036026043.73", "61.24"], "$500-1000K_5": ["1334604.26", "0.00", "0.00", "1162819.18", "87.13", "12452.50", "16619156225.82", "2.34", "39357122079.25", "66580560613.56", "66580560613.56", "2.66"], "$0-10K_5": ["11304225.47", "0.00", "0.00", "8103450.61", "71.69", "206.83", "2338087823.07", "0.33", "153307577724.86", "16756223815.79", "16756223815.79", "280.50"], "$75-100K_5": ["20215974.26", "0.00", "0.00", "15967630.08", "78.99", "4026.13", "81392167167.64", "11.47", "494989994433.28", "412291905658.42", "412291905658.42", "25.59"], "$40-50K_5": ["15556704.98", "0.00", "0.00", "11455386.63", "73.64", "1972.01", "30677908258.98", "4.32", "309739343152.90", "215352518359.07", "215352518359.07", "40.46"], "$200-500K_5": ["16203988.51", "0.00", "0.00", "13871726.02", "85.61", "11134.02", "180415482748.28", "25.41", "481913999348.81", "624943207753.23", "624943207753.23", "7.79"], "$50-75K_5": ["29499235.23", "0.00", "0.00", "22830592.74", "77.39", "2855.08", "84222673887.67", "11.86", "651778853649.79", "476175204780.80", "476175204780.80", "32.63"], "=$0K_5": ["1294344.69", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "25727723588.41", "0.00", "0.00", "inf"]}, "dist2_xbin": {">$1000K_5": ["470795.34", "962203335875.78", "77451.21", "2247921425.73", "393219.09", "22996378026.40", "0.00", "934233772944.33", "273933340746.63", "943571114195.78", "65868.04", "948633731.67", "274881974478.29", "9796672.35", "7300022753.81", "22277.87", "282172178281.88", "36217322219.68", "318389500501.56", "13831222523.07", "10729862117.64", "10729862117.64", "1000277000890.73", "681887500389.17"], "$10-20K_5": ["12143564.95", "306002056725.44", "11861609.22", "213650900826.82", "273837.32", "4182312716.77", "0.00", "101317304383.12", "10225031701.72", "302185966101.16", "2347516.87", "2123871489.59", "12348903191.31", "4034615128.37", "0.00", "8435646367.60", "-121358304.66", "23383059763.01", "23261701458.35", "193072561784.47", "66367601087.80", "66367601087.80", "379451647753.66", "356189946295.31"], "ALL_5": ["181676570.84", "17379310241958.53", "157145793.39", "3586427421134.00", "24382399.37", "804525675263.46", "0.00", "13056066324503.37", "2208045066074.44", "16797464763220.74", "7985052.64", "11873931749.46", "2219918997823.90", "153721520934.55", "11672567294.29", "29463636805.80", "2048406407377.83", "2192387202477.56", "4240793609855.39", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21732305818819.01", "17491512208963.62"], "$30-40K_5": ["17194134.08", "684071620415.73", "16653734.27", "337898161669.60", "531007.94", "11953013143.89", "0.00", "346408469787.00", "37868569740.56", "673960153325.17", "478136.43", "956816373.57", "38825386114.14", "10856528105.88", "0.00", "4163275228.45", "23805582779.81", "78886712587.82", "102692295367.63", "317771425073.47", "197804129460.36", "197804129460.36", "923711457218.69", "821019161851.06"], "<$0K_5": ["96989.23", "-12454939258.97", "21997.19", "2183901333.33", "64.69", "10147699.40", "0.00", "993950959.15", "242890927.13", "-12464369361.90", "0.00", "0.00", "242890927.13", "2109040.67", "2884867.75", "283422.75", "243383331.46", "85823350.39", "329206681.85", "2136569283.56", "1065393160.51", "1065393160.51", "-26726074004.85", "-27055280686.70"], "$100-200K_5": ["39345359.34", "5293078613411.02", "29819538.70", "841066977045.52", "9514465.29", "312690394161.59", "0.00", "4130236125163.72", "632572164517.06", "5074768925180.22", "165312.81", "505277141.23", "633077441658.29", "46515092843.40", "2341109.03", "655609534.74", "585909080389.19", "778432370254.64", "1364341450643.83", "1073883215399.16", "1039336650146.40", "1039336650146.40", "6678960190340.20", "5314618739696.37"], "$20-30K_5": ["17016650.50", "531262725349.77", "16677041.16", "321367814649.57", "334570.63", "6977341361.67", "0.00", "224833912694.84", "23910160415.95", "525200423632.69", "837026.47", "1333667460.37", "25243827876.32", "7921630970.33", "0.00", "7463902446.10", "9858294459.89", "51749496743.88", "61607791203.77", "291379465958.58", "165036026043.73", "165036026043.73", "720991201144.30", "659383409940.53"], "$500-1000K_5": ["1334604.26", "828452749052.82", "472518.33", "14286824993.20", "862073.42", "38503884373.25", "0.00", "772060631030.77", "187821552108.26", "799576184934.62", "30250.00", "139242681.26", "187960794789.52", "131153705.13", "1854865485.41", "20299656.06", "189664206913.73", "61462339599.17", "251126546512.90", "39357122079.25", "66580560613.56", "66580560613.56", "936960179453.65", "685833632940.74"], "$0-10K_5": ["11304225.47", "189212191785.39", "11035286.99", "134740582939.65", "264967.35", "2965681715.63", "0.00", "64899612417.08", "6527385608.46", "186419107521.28", "2814503.68", "3019230526.12", "9546616134.58", "3253766340.57", "0.00", "3189455108.20", "3103394685.80", "7047244948.00", "10150639633.80", "153307577724.86", "16756223815.79", "16756223815.79", "207253553335.05", "197102913701.25"], "$75-100K_5": ["20215974.26", "1768008173416.50", "17958723.23", "462454501203.42", "2251283.49", "61738077877.92", "0.00", "1245160335319.33", "164624480979.44", "1722475134049.05", "119836.02", "383824178.00", "165008305157.45", "21464941532.53", "0.00", "816795273.30", "142726568351.61", "245974878146.43", "388701446498.04", "494989994433.28", "412291905658.42", "412291905658.42", "2283759168281.73", "1895057721783.69"], "$40-50K_5": ["15556704.98", "748697833003.29", "14946828.61", "320601443297.36", "601328.75", "13856921864.21", "0.00", "421913343256.74", "46996364132.27", "737329089543.03", "331027.53", "698966181.23", "47695330313.50", "11857888050.25", "0.00", "2178062794.61", "33659379468.64", "93034583210.79", "126693962679.44", "309739343152.90", "215352518359.07", "215352518359.07", "1013285885510.39", "886591922830.96"], "$200-500K_5": ["16203988.51", "4155394380048.38", "8696669.01", "264278970393.32", "7503162.30", "282356050349.81", "0.00", "3594995720476.62", "673729559830.13", "3955198960592.35", "131208.64", "379060010.14", "674108619840.27", "19510694984.12", "2512453078.29", "139147281.86", "656971230652.58", "561258217111.65", "1218229447764.23", "481913999348.81", "624943207753.23", "624943207753.23", "5090357335509.42", "3872127887745.19"], "$50-75K_5": ["29499235.23", "1899670059401.10", "27642206.09", "643579873304.44", "1840604.87", "46276703169.55", "0.00", "1216520101562.14", "149334889466.12", "1863548979946.08", "334687.25", "904882557.61", "150239772023.74", "27935361930.41", "0.00", "2401137414.25", "119903272679.07", "254855154542.10", "374758427221.18", "651778853649.79", "476175204780.80", "476175204780.80", "2498296549797.62", "2123538122576.45"], "=$0K_5": ["1294344.69", "25711442732.29", "1282189.38", "28069548052.01", "11814.23", "18768803.36", "0.00", "2493044508.53", "258675900.71", "25695093561.21", "329678.90", "480459418.67", "739135319.37", "227941630.54", "0.00", "0.00", "511193688.83", "0.00", "511193688.83", "25727723588.41", "0.00", "0.00", "25727723588.41", "25216529899.58"]}, "diff_itax_xdec": {"90-95_5": ["9083340.35", "64.78", "0.00", "8788196.90", "96.75", "6066.34", "55102598740.80", "10.30", "267722125134.13", "306763427526.10", "306763427526.10", "9.75"], "40-50_5": ["18167282.97", "2392.52", "0.01", "15323794.34", "84.35", "2253.84", "40946117437.09", "7.65", "389421363484.94", "277736329195.46", "277736329195.46", "35.27"], "ALL_5": ["181676570.84", "428106.39", "0.24", "148851694.60", "81.93", "2944.86", "535011682714.41", "100.00", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21.33"], "0-10p_5": ["16776289.92", "355232.74", "2.12", "9548040.72", "56.91", "690.42", "11582695356.20", "2.16", "237341572633.38", "37885765600.41", "37885765600.41", "184.15"], "20-30_5": ["18168182.12", "10717.88", "0.06", "13301584.97", "73.21", "1793.59", "32586261365.57", "6.09", "330694030336.70", "195961942891.67", "195961942891.67", "51.00"], "30-40_5": ["18167768.67", "10982.05", "0.06", "14147681.52", "77.87", "1912.81", "34751524706.55", "6.50", "355726382205.92", "244711830934.02", "244711830934.02", "41.58"], "0-10n_5": ["96989.23", "855.74", "0.88", "5226.47", "5.39", "184.53", "17897689.82", "0.00", "2136569283.56", "1065393160.51", "1065393160.51", "-6.98"], "Top 1%_5": ["1816868.76", "13.45", "0.00", "1803080.26", "99.24", "9180.88", "16680455566.71", "3.12", "53529289102.11", "77703876465.87", "77703876465.87", "1.74"], "70-80_5": ["18167916.88", "2134.90", "0.01", "16838807.33", "92.68", "4116.64", "74790754144.59", "13.98", "482276474996.17", "451241956105.07", "451241956105.07", "18.95"], "10-20_5": ["18166974.95", "34577.86", "0.19", "11969985.64", "65.89", "1233.27", "22404770008.52", "4.19", "301649524157.30", "154323980763.65", "154323980763.65", "70.25"], "0-10z_5": ["1294344.69", "0.00", "0.00", "385674.93", "29.80", "394.94", "511193688.83", "0.10", "25727723588.41", "0.00", "0.00", "inf"], "90-100_5": ["18167684.33", "198.82", "0.00", "17611353.79", "96.94", "6714.64", "121989393188.38", "22.80", "539780254932.17", "707937682985.16", "707937682985.16", "6.17"], "80-90_5": ["18167687.64", "1870.84", "0.01", "17310853.95", "95.28", "5196.38", "94406141358.22", "17.65", "515113187691.81", "519675037828.63", "519675037828.63", "13.91"], "60-70_5": ["18167450.23", "9143.04", "0.05", "16477946.36", "90.70", "2966.91", "53901140792.85", "10.07", "449926062522.61", "376912638294.73", "376912638294.73", "24.41"], "95-99_5": ["7267475.22", "120.59", "0.00", "7020076.63", "96.60", "6908.36", "50206338880.87", "9.38", "218528840695.93", "323470378993.19", "323470378993.19", "6.18"], "50-60_5": ["18167999.21", "0.00", "0.00", "15930744.58", "87.69", "2593.78", "47123792977.78", "8.81", "419095928166.64", "324986725238.01", "324986725238.01", "29.58"]}, "diff_itax_xbin": {">$1000K_5": ["470795.34", "0.00", "0.00", "469241.16", "99.67", "9915.25", "4668054951.00", "0.87", "13831222523.07", "10729862117.64", "10729862117.64", "0.83"], "$10-20K_5": ["12143564.95", "51351.13", "0.42", "8271523.54", "68.11", "998.11", "12120642973.62", "2.27", "193072561784.47", "66367601087.80", "66367601087.80", "94.34"], "ALL_5": ["181676570.84", "428106.39", "0.24", "148851694.60", "81.93", "2944.86", "535011682714.41", "100.00", "4048889073999.61", "3292439282997.31", "3292439282997.31", "21.33"], "$30-40K_5": ["17194134.08", "10541.28", "0.06", "12858631.80", "74.78", "1834.79", "31547604769.82", "5.90", "317771425073.47", "197804129460.36", "197804129460.36", "47.62"], "<$0K_5": ["96989.23", "855.74", "0.88", "5226.47", "5.39", "184.53", "17897689.82", "0.00", "2136569283.56", "1065393160.51", "1065393160.51", "-6.98"], "$100-200K_5": ["39345359.34", "6111.30", "0.02", "36900768.35", "93.79", "4558.37", "179350739705.43", "33.52", "1073883215399.16", "1039336650146.40", "1039336650146.40", "16.36"], "$20-30K_5": ["17016650.50", "17190.40", "0.10", "11418979.85", "67.10", "1449.54", "24666252983.85", "4.61", "291379465958.58", "165036026043.73", "165036026043.73", "61.24"], "$500-1000K_5": ["1334604.26", "13.45", "0.00", "1322526.31", "99.10", "8924.28", "11910388400.57", "2.23", "39357122079.25", "66580560613.56", "66580560613.56", "2.66"], "$0-10K_5": ["11304225.47", "325935.96", "2.88", "5716844.21", "50.57", "583.74", "6598709477.52", "1.23", "153307577724.86", "16756223815.79", "16756223815.79", "280.50"], "$75-100K_5": ["20215974.26", "7037.48", "0.03", "18211876.95", "90.09", "2858.96", "57796572667.82", "10.80", "494989994433.28", "412291905658.42", "412291905658.42", "25.59"], "$40-50K_5": ["15556704.98", "6607.33", "0.04", "12275849.00", "78.91", "1951.38", "30357087811.47", "5.67", "309739343152.90", "215352518359.07", "215352518359.07", "40.46"], "$200-500K_5": ["16203988.51", "185.37", "0.00", "15667342.78", "96.69", "6450.17", "104518450414.82", "19.54", "481913999348.81", "624943207753.23", "624943207753.23", "7.79"], "$50-75K_5": ["29499235.23", "2276.95", "0.01", "25347209.25", "85.92", "2405.08", "70948087179.84", "13.26", "651778853649.79", "476175204780.80", "476175204780.80", "32.63"], "=$0K_5": ["1294344.69", "0.00", "0.00", "385674.93", "29.80", "394.94", "511193688.83", "0.10", "25727723588.41", "0.00", "0.00", "inf"]}, "dist1_xbin": {">$1000K_5": ["470795.34", "949016652767.40", "62136.52", "1580817666.66", "406662.11", "23365984007.48", "0.00", "921374602946.84", "269365112210.69", "930153761087.42", "64670.00", "868949979.72", "270234062190.41", "9556192.48", "7279659464.22", "42131.27", "277504123330.88", "30368418991.44", "307872542322.32", "0.00", "10784672602.49", "10784672602.49", "984178548538.11", "676306006215.79"], "$10-20K_5": ["12143564.95", "112990607651.01", "9621770.86", "176145388699.72", "121616.97", "2395783045.32", "0.00", "9554053791.45", "839221985.53", "110814761221.24", "26701.04", "16678134.61", "855900120.14", "232421190.50", "0.00", "12865480207.91", "-12242001278.28", "15634300766.53", "3392299488.25", "0.00", "70478355885.74", "70478355885.74", "186676573978.92", "183284274490.68"], "ALL_5": ["181676570.84", "13344738988073.08", "126984678.73", "2747057813112.96", "35346557.29", "1077295271311.10", "0.00", "10130816261415.69", "1713063035612.40", "12584941394934.10", "484620.25", "2121499123.80", "1715184534736.20", "109742396705.48", "11019393552.06", "103066806919.37", "1513394724663.42", "1482486015569.48", "2995880740232.90", "0.00", "3362067795272.93", "3362067795272.93", "17412095860986.94", "14416215120754.03"], "$30-40K_5": ["17194134.08", "367408693673.93", "13810655.24", "274698096852.62", "672032.69", "14245584237.43", "0.00", "157475619606.22", "16385353848.65", "355554816662.66", "42299.61", "76043869.53", "16461397718.18", "4129150393.64", "0.00", "20074269314.55", "-7742021990.01", "52914787542.80", "45172765552.79", "0.00", "205079666350.76", "205079666350.76", "601333748733.77", "556160983180.98"], "<$0K_5": ["96989.23", "-14588624241.01", "6515.29", "1827687179.51", "64.69", "10147699.40", "0.00", "902835046.53", "223506469.94", "-14598054343.95", "0.00", "0.00", "223506469.94", "702655.00", "2884867.75", "203041.05", "225485641.64", "58415735.46", "283901377.10", "0.00", "1136006673.81", "1136006673.81", "-28802849281.06", "-29086750658.15"], "$100-200K_5": ["39345359.34", "4222732813746.50", "22850544.11", "586649331694.03", "15045151.35", "454476480819.03", "0.00", "3225650503136.86", "454304883135.95", "3913404327066.40", "73984.90", "251001390.31", "454555884526.25", "43201922020.59", "0.00", "4795621821.90", "406558340683.76", "520882379845.32", "927440720529.08", "0.00", "1054305531376.45", "1054305531376.45", "5494742506440.79", "4567301785911.72"], "$20-30K_5": ["17016650.50", "240336827974.62", "12817918.73", "261050507065.89", "410703.33", "8620444284.93", "0.00", "73183287493.27", "7155908669.41", "232908980333.78", "41842.58", "40575784.80", "7196484454.21", "1879990770.36", "0.00", "20124452207.81", "-14807958523.96", "34660771241.25", "19852812717.29", "0.00", "172325715095.27", "172325715095.27", "428810630069.38", "408957817352.09"], "$500-1000K_5": ["1334604.26", "790256718552.07", "374196.67", "9895575047.11", "951473.42", "41068015342.50", "0.00", "735918501158.74", "176009093516.16", "759776389496.12", "29056.13", "146183450.13", "176155276966.29", "101005763.05", "1803730309.28", "104182999.36", "177753818513.16", "44843183373.35", "222597001886.51", "0.00", "66821452009.90", "66821452009.90", "890673682273.31", "668076680386.80"], "$0-10K_5": ["11304225.47", "35908504810.07", "9477121.64", "113532405721.17", "25070.62", "216285978.94", "0.00", "2136585890.38", "147304379.60", "35698265075.67", "2059.92", "561631.52", "147866011.13", "64389762.03", "0.00", "3578791040.81", "-3495314791.72", "4709157124.92", "1213842333.21", "0.00", "16990058316.21", "16990058316.21", "53014656948.63", "51800814615.42"], "$75-100K_5": ["20215974.26", "1274347029436.77", "14994725.70", "351373702904.65", "4091552.17", "103936113892.10", "0.00", "863887466905.67", "108428058536.44", "1199307784696.04", "38627.55", "133502989.86", "108561561526.30", "17065907111.46", "0.00", "6565658731.04", "84929995683.79", "164582710978.79", "249512706662.58", "0.00", "421369371476.31", "421369371476.31", "1758427067379.45", "1508914360716.87"], "$40-50K_5": ["15556704.98", "440026752012.72", "12824707.49", "260347121679.25", "840784.19", "17762542178.58", "0.00", "225338625770.88", "23984226149.49", "425774516603.32", "18298.65", "52925851.71", "24037152001.20", "5655974798.15", "0.00", "15078885545.88", "3302291657.17", "62356674951.81", "65658966608.98", "0.00", "222951250122.39", "222951250122.39", "696854307894.54", "631195341285.56"], "$200-500K_5": ["16203988.51", "3676449601151.93", "6380139.85", "174753983304.68", "9484948.48", "339358809671.93", "0.00", "3159729392510.95", "570880545151.38", "3440166452177.63", "93514.13", "321696593.11", "571202241744.49", "19763508098.63", "1933118910.82", "919072318.92", "552452780237.76", "380842734363.37", "933295514601.13", "0.00", "629215911497.35", "629215911497.35", "4525452673133.92", "3592157158532.79"], "$50-75K_5": ["29499235.23", "1249869691393.18", "23764246.63", "511679689558.27", "3296497.27", "71839080153.46", "0.00", "755664787157.90", "85339821559.16", "1195995675713.89", "53565.74", "213379448.50", "85553201007.67", "17637867949.57", "0.00", "18960147558.87", "48955185499.23", "170632480654.44", "219587666153.67", "0.00", "490609803866.25", "490609803866.25", "1820734314877.16", "1601146648723.49"], "=$0K_5": ["1294344.69", "-16280856.12", "0.00", "23523505739.38", "0.00", "0.00", "0.00", "0.00", "0.00", "-16280856.12", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_5\nind_tax,860746205.7961692\npayroll_tax,-215350566971.7696\ncombined_tax,-214489820765.97345\n", "aggr_1": ",0_5\nind_tax,1449549221922.849\npayroll_tax,1420814932168.1958\ncombined_tax,2870364154091.0444\n", "aggr_2": ",0_5\nind_tax,1450409968128.645\npayroll_tax,1205464365196.426\ncombined_tax,2655874333325.0713\n", "dist1_xbin": ",s006_5,c00100_5,num_returns_StandardDed_5,standard_5,num_returns_ItemDed_5,c04470_5,c04600_5,c04800_5,taxbc_5,c62100_5,num_returns_AMT_5,c09600_5,c05800_5,c07100_5,othertaxes_5,refund_5,iitax_5,payrolltax_5,combined_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,expanded_income_5,aftertax_income_5\n<$0K,62845.977457044064,-8108154072.336613,62845.977457044064,1463784304.8198183,0.0,0.0,0.0,0.0,0.0,-8108154072.336613,0.0,0.0,0.0,0.0,0.0,1345848.790773085,-1345848.790773085,20322029.707437497,18976180.91666441,0.0,903365379.8657402,903365379.8657402,-7115359035.407627,-7134335216.32429\n=$0K,1122716.7878987112,0.0,1122716.7878987112,18832746557.34855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11125034.232994698,35212629610.49989,11070606.427239034,105044771278.78467,54427.805755662266,295518905.3914855,0.0,2253224347.7110825,150110284.40985072,34931632353.11589,0.0,0.0,150110284.40985072,61775415.22480299,0.0,3565718848.849607,-3477383979.664559,4702917273.031092,1225533293.3665326,0.0,15948103253.52554,15948103253.52554,51371130361.198685,50145597067.83215\n$10-20K,11850421.918374952,105111876743.26727,11767590.020207338,168844616195.865,82831.89816761487,1291189210.2050827,0.0,8211815999.016927,691970129.3155216,103999863917.75262,34253.30741216602,8355346.192951512,700325475.5084732,183625491.67737082,0.0,12790676085.67678,-12273976101.84568,14632086569.620598,2358110467.774918,0.0,76387453719.68835,76387453719.68835,184604232134.358,182246121666.58307\n$20-30K,15992390.673642023,221434666447.20605,15681548.56699041,239956522014.94284,310842.10665161256,5656442231.61153,0.0,68434614260.83508,6618383396.569248,216688882198.53348,69783.64932098496,43759316.69111968,6662142713.260368,1546548059.7733312,0.0,18827832636.431236,-13712237982.944199,31663567682.9188,17951329699.974606,0.0,166616711627.0603,166616711627.0603,402514779970.4071,384563450270.4325\n$30-40K,17044958.236282237,362573264558.8731,16440189.767490376,267763372940.0579,604768.4687918613,10725483508.256376,0.0,159069704386.4795,16480556251.821438,354049318760.4314,119761.35377755953,291926305.7736533,16772482557.59509,4199347272.408964,0.0,19004316683.935738,-6431181398.749614,51475383317.99333,45044201919.24372,0.0,206446638572.1048,206446638572.1048,597575372280.7173,552531170361.4736\n$40-50K,15872237.27689075,473208225603.5609,14886531.402775034,257557783655.57755,985705.8741157145,18576457662.66019,0.0,246991172832.79126,26282065248.05651,458990700109.7803,16297.73921609236,41254297.31866687,26323319545.37518,6001108183.230579,0.0,14786262863.415257,5535948498.729342,67289779243.21887,72825727741.94821,0.0,206679523621.94394,206679523621.94394,714641430180.7666,641815702438.8184\n$50-75K,30770661.973220233,1268949276299.2808,27029951.35199552,524588301656.7252,3740710.621224715,79195349018.7193,0.0,764064056744.3134,86338769715.75926,1209399378478.9375,82450.772846334,192482881.14987728,86531252596.90915,17040928455.07357,0.0,20780887770.251236,48709436371.584335,171202081508.91852,219911517880.50287,0.0,540417159663.2171,540417159663.2171,1890455993862.6265,1670544475982.1235\n$75-100K,19876380.926173717,1263772003671.646,15835900.352053732,340243548593.07715,4040480.574119984,90857695054.13657,0.0,868123084985.4585,110096740378.14601,1200540573180.937,150792.96120827316,547780047.2640997,110644520425.41011,15588043447.28184,0.0,5581379833.630017,89475097144.49825,161099185819.93924,250574282964.4375,0.0,405711314328.04767,405711314328.04767,1724346815719.039,1473772532754.6018\n$100-200K,39089017.21762893,4220271660020.217,24331355.79913971,579104621466.7268,14757661.418489225,444789857160.5359,0.0,3235930013099.6543,458700623258.08594,3916777486462.27,149322.71734735978,281274437.59568053,458981897695.68164,38845673194.70359,0.0,3427343652.53885,416708880848.4392,514245068873.2459,930953949721.6852,0.0,1027857818736.3595,1027857818736.3595,5462206432356.924,4531252482635.237\n$200-500K,14964544.646164475,3297519414316.708,6459190.527539679,161566414489.46326,8505354.118624797,294697732908.1168,0.0,2842112499948.705,516029608775.3886,3093334531244.215,79400.44692427701,317105620.93389136,516346714396.3225,16661473874.261719,1814553566.439609,938971228.6762704,500560822859.8241,341002570639.8899,841563393499.7141,0.0,651022741265.3567,651022741265.3567,4159389884886.2925,3317826491386.579\n$500-1000K,1084558.269295226,676776658865.1145,303012.8265056821,8083312666.368289,781545.442789544,33315963363.087685,0.0,632639503402.2708,153292675183.22845,651972422975.3013,10701.61524954203,58564362.54422798,153351239545.77267,41586238.655712366,1794397203.1884742,139725166.37925312,154964325343.9262,36323545901.728645,191287871245.65482,0.0,36310917086.926155,36310917086.926155,735773131200.3589,544485259954.70404\n>$1000K,400835.65397701133,878859227885.8787,25019.95099582235,515859578.96067643,375815.702981189,21179854040.136253,0.0,853883256001.9114,261865241202.91226,861757768660.9299,31460.70425510712,495933800.82299864,262361175003.73523,7657542.233796476,7137318706.340897,0.0,269490836167.84235,27158423307.983284,296649259475.8257,0.0,5472615783.74812,5472615783.74812,904590850337.6628,607941590861.8373\nALL,179256603.79,12795580749949.916,145016459.7582881,2673565655398.718,34240144.03171192,1000581543062.857,0.0,9681712946009.148,1636546743823.6934,12094334404269.867,744225.267557696,2278436416.287167,1638825180239.9805,100177767174.52528,10746269475.968979,99844460618.57501,1449549221922.8489,1420814932168.1958,2870364154091.045,0.0,3339774363037.844,3339774363037.844,16820354694254.943,13949990540163.896\n", "dist2_xbin": ",s006_5,c00100_5,num_returns_StandardDed_5,standard_5,num_returns_ItemDed_5,c04470_5,c04600_5,c04800_5,taxbc_5,c62100_5,num_returns_AMT_5,c09600_5,c05800_5,c07100_5,othertaxes_5,refund_5,iitax_5,payrolltax_5,combined_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,expanded_income_5,aftertax_income_5\n<$0K,62845.977457044064,-8108154072.336613,62845.977457044064,1463784304.8198183,0.0,0.0,0.0,0.0,0.0,-8108154072.336613,0.0,0.0,0.0,0.0,0.0,1315189.856163962,-1315189.856163962,17134260.34156495,15819070.485400988,0.0,903365379.8657402,903365379.8657402,-7116952920.090563,-7132771990.575964\n=$0K,1122716.7878987112,0.0,1122716.7878987112,18832746557.34855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,11125034.232994698,35212639564.633606,11070606.427239034,105044771278.78467,54427.805755662266,295518905.3914855,0.0,2253224347.7110825,150110284.40985072,34931642307.2496,0.0,0.0,150110284.40985072,61775415.22480299,0.0,3561477270.0502605,-3473142400.8652124,3965206254.472715,492063853.60750186,0.0,15948103253.52554,15948103253.52554,51002284806.05321,50510220952.44571\n$10-20K,11850421.918374952,105127713044.81642,11767590.020207338,168844616195.865,82831.89816761487,1291189210.2050827,0.0,8214478691.406721,692236398.5545009,104015700219.30176,34253.30741216602,8355346.192951512,700591744.7474525,183625491.67737082,0.0,12788737951.62833,-12271771698.558247,12339235514.391285,67463815.83303809,0.0,76387453719.68835,76387453719.68835,183473642908.2925,183406179092.45944\n$20-30K,15992390.673642023,221582113661.16772,15681548.56699041,239956817214.19287,310842.10665161256,5656111444.801731,0.0,68496318744.5426,6624545709.500969,216836742896.00745,69783.64932098496,43759316.69111968,6668305026.192089,1547918478.1891813,0.0,18826994680.26287,-13706608132.259964,26718876366.1491,13012268233.889133,0.0,166616711627.0603,166616711627.0603,400189881525.98395,387177613292.0948\n$30-40K,17044958.236282237,362904642736.3081,16438713.568546316,267744130568.7262,606244.6677359197,10745915998.333004,0.0,159295456995.161,16504773746.817127,354367151326.8699,119761.35377755953,291926305.7736533,16796700052.59078,4203654917.8596153,0.0,18987301539.691883,-6394256404.960718,43450577978.17949,37056321573.21877,0.0,206446638572.1048,206446638572.1048,593894347788.2455,556838026215.0266\n$40-50K,15872237.27689075,473643454659.81995,14885153.462702869,257539822096.50165,987083.8141878801,18632341483.03146,0.0,247356141731.6319,26320265209.426773,459375850916.55457,16297.73921609236,41254297.31866687,26361519506.745438,6010477736.645142,0.0,14765433406.259132,5585608363.841167,56797882746.1048,62383491109.94596,0.0,206679523621.94394,206679523621.94394,709817410693.0134,647433919583.0675\n$50-75K,30770661.973220233,1269589817807.6406,27029951.35199552,524588301656.7252,3740710.621224715,79195210229.1304,0.0,764655571111.9448,86406169974.12813,1210039994316.2847,82450.772846334,192482881.14987728,86598652855.278,17060209005.811712,0.0,20750140502.540073,48788303346.926216,144438028542.43988,193226331889.3661,0.0,540417159663.2171,540417159663.2171,1877681097295.9133,1684454765406.547\n$75-100K,19876380.926173717,1264185251090.7144,15835900.352053732,340243548593.07715,4040480.574119984,90857014952.58107,0.0,868499780724.9998,110152743030.84349,1200954670726.9497,150792.96120827316,547763251.4818356,110700506282.32532,15594361370.373262,0.0,5569779720.970589,89536365190.98148,135887545958.61728,225423911149.59875,0.0,405711314328.04767,405711314328.04767,1712132677543.9595,1486708766394.3608\n$100-200K,39089017.21762893,4221564371774.757,24331355.79913971,579104621466.7268,14757661.418489225,444786782398.1942,0.0,3237174301024.18,458930240376.99286,3918072978689.465,149322.71734735978,284425785.12310266,459214666162.11597,38851519881.30798,0.0,3417881675.527591,416945264605.28033,433859588739.71075,850804853344.9912,0.0,1027857818736.3595,1027857818736.3595,5423280861926.565,4572476008581.574\n$200-500K,14964544.646164475,3298309520139.464,6459190.527539679,161566414489.46326,8505354.118624797,294693902526.1841,0.0,2842982951324.496,516251754128.3268,3094129411194.3457,78140.94683910662,312693658.24281293,516564447786.5696,16657561642.827353,1816567180.6745186,938708808.5916694,500784744515.8251,290040343159.5348,790825087675.3599,0.0,651022741265.3567,651022741265.3567,4134695300114.803,3343870212439.4434\n$500-1000K,1084558.269295226,677039546120.5835,303012.8265056821,8083312666.368289,781545.442789544,33315883544.62775,0.0,632907017736.163,153385232076.49704,652235410003.845,10701.61524954203,58299722.46150244,153443531798.95856,41347450.63605237,1794457368.0238776,139717122.83686894,155056924593.50952,32213723639.648373,187270648233.15787,0.0,36310917086.926155,36310917086.926155,733976135681.6382,546705487448.48035\n>$1000K,400835.65397701133,879046227279.9285,25019.95099582235,515859578.96067643,375815.702981189,21179854040.136253,0.0,854070255395.9612,261934507846.7566,861944768054.9797,31460.70425510712,495624452.5435473,262430132299.30014,7657542.233796476,7137376581.715326,0.0,269559851338.78165,25736222036.836,295296073375.6177,0.0,5472615783.74812,5472615783.74812,904051734010.3772,608755660634.7595\nALL,179256603.79,12800097143807.496,145013605.61927187,2673528746667.5596,34242998.17072815,1000649724732.6166,0.0,9685905497828.197,1637352578782.2542,12098796166579.518,742965.7674725256,2276585016.9790697,1639629163799.2332,100220108932.78627,10748401130.413723,99747487868.21544,1450409968128.6453,1205464365196.4258,2655874333325.0713,0.0,3339774363037.844,3339774363037.844,16717078421374.756,14061204088049.684\n", "diff_itax_xbin": ",count_5,tax_cut_5,perc_cut_5,tax_inc_5,perc_inc_5,mean_5,tot_change_5,share_of_change_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,pc_aftertaxinc_5\n<$0K,62845.977457044064,0.0,0.0,299.0775090606856,0.47588966098125923,0.4878424339899712,30658.934609123236,0.0035619018013288216,0.0,903365379.8657402,903365379.8657402,-0.021911302187616055\n=$0K,1122716.7878987112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,11125034.232994698,21946.466417090305,0.19727100121634983,280617.0821490958,2.5223929767050945,0.3812643368562867,4241578.799346211,0.4927792618525521,0.0,15948103253.52554,15948103253.52554,0.7271304081200247\n$10-20K,11850421.918374952,39791.203899076216,0.33577879482398026,108118.17371520033,0.9123571671955,0.18601897068439038,2204403.2874318473,0.2561037472587902,0.0,76387453719.68835,76387453719.68835,0.63653339520644\n$20-30K,15992390.673642023,83274.8901860134,0.5207157071472969,368674.89661441266,2.305314471976019,0.3520330886808144,5629850.684232451,0.6540662795051158,0.0,166616711627.0603,166616711627.0603,0.6797741750610875\n$30-40K,17044958.236282237,33296.85489148632,0.1953472365840708,1006644.6081294874,5.905820326310472,2.166329378871513,36924993.78889618,4.289881679436677,0.0,206446638572.1048,206446638572.1048,0.7794774457222653\n$40-50K,15872237.27689075,30208.813442844246,0.19032486042044555,1171375.4414386651,7.3800272828842735,3.1287249708727174,49659865.11182487,5.769396922974608,0.0,206679523621.94394,206679523621.94394,0.8753629932861884\n$50-75K,30770661.973220233,7956.321919690739,0.025856843530422394,1548568.422816115,5.032613286525448,2.5630574802231325,78866975.3418796,9.162628288199027,0.0,540417159663.2171,540417159663.2171,0.8326799809532437\n$75-100K,19876380.926173717,1445.4310144758133,0.0072721036080186695,1064814.8528038384,5.357186787468254,3.082454834750542,61268046.483227625,7.118015283791601,0.0,405711314328.04767,405711314328.04767,0.8777632471939301\n$100-200K,39089017.21762893,21674.848458087185,0.0554499703520608,3119058.499202882,7.979373034214336,6.047319008433394,236383756.8411477,27.46265452573195,0.0,1027857818736.3595,1027857818736.3595,0.9097600741586165\n$200-500K,14964544.646164475,128619.53995576734,0.85949518008711,1121973.7258573943,7.49754671716633,14.963479430585108,223921656.00095463,26.014829283369608,0.0,651022741265.3567,651022741265.3567,0.7849633222375196\n$500-1000K,1084558.269295226,14448.68589956562,1.3322184993301234,186688.87905460544,17.213356288908358,85.37969070439217,92599249.58331728,10.758020071394359,0.0,36310917086.926155,36310917086.926155,0.40776631748691283\n>$1000K,400835.65397701133,18867.02675521325,4.706923290884525,131439.9335008363,32.79147755363464,172.1782238045614,69015170.9393016,8.01806275468438,0.0,5472615783.74812,5472615783.74812,0.13390591878541525\nALL,179256603.79,401530.0828393105,0.2239973726768276,10108273.592791593,5.638996488315424,4.801754510559275,860746205.7961692,100.0,0.0,3339774363037.844,3339774363037.844,0.797230274569638\n", "diff_ptax_xbin": ",count_5,tax_cut_5,perc_cut_5,tax_inc_5,perc_inc_5,mean_5,tot_change_5,share_of_change_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,pc_aftertaxinc_5\n<$0K,62845.977457044064,4280.050591502311,6.810381132870078,0.0,0.0,-50.723522727471675,-3187769.365872547,0.0014802697808965757,0.0,903365379.8657402,903365379.8657402,-0.021911302187616055\n=$0K,1122716.7878987112,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11125034.232994698,8143180.187777025,73.19690004751561,0.0,0.0,-66.31089874496465,-737711018.5583769,0.3425628401782122,0.0,15948103253.52554,15948103253.52554,0.7271304081200247\n$10-20K,11850421.918374952,8283789.625969372,69.90290879959933,0.0,0.0,-193.48265159015799,-2292851055.2293124,1.0647063007407283,0.0,76387453719.68835,76387453719.68835,0.63653339520644\n$20-30K,15992390.673642023,10640873.732300844,66.53710473593344,0.0,0.0,-309.19025289441777,-4944691316.769705,2.2961125137961242,0.0,166616711627.0603,166616711627.0603,0.6797741750610875\n$30-40K,17044958.236282237,11852785.093869664,69.5383639523363,0.0,0.0,-470.80228819405903,-8024805339.813849,3.7263915543188815,0.0,206446638572.1048,206446638572.1048,0.7794774457222653\n$40-50K,15872237.27689075,12052327.027378924,75.93338492316116,0.0,0.0,-661.0219034710251,-10491896497.114082,4.872007835711651,0.0,206679523621.94394,206679523621.94394,0.8753629932861884\n$50-75K,30770661.973220233,23462848.27718353,76.25071016542735,0.0,0.0,-869.791263826935,-26764052966.478638,12.428132111668482,0.0,540417159663.2171,540417159663.2171,0.8326799809532437\n$75-100K,19876380.926173717,15855451.882532671,79.77031604206083,0.0,0.0,-1268.4220510245223,-25211639861.32196,11.707254926627135,0.0,405711314328.04767,405711314328.04767,0.8777632471939301\n$100-200K,39089017.21762893,31526680.621270724,80.6535514713641,0.0,0.0,-2056.472274193727,-80385480133.53513,37.32773090124852,0.0,1027857818736.3595,1027857818736.3595,0.9097600741586165\n$200-500K,14964544.646164475,12584429.586607616,84.09497170923339,0.0,0.0,-3405.5314535358825,-50962227480.35511,23.664775160325338,0.0,651022741265.3567,651022741265.3567,0.7849633222375196\n$500-1000K,1084558.269295226,935737.1022838575,86.27817691085639,0.0,0.0,-3789.397378115005,-4109822262.080277,1.9084334533556326,0.0,36310917086.926155,36310917086.926155,0.40776631748691283\n>$1000K,400835.65397701133,375420.35162795056,93.65942073842602,6816.9160112781265,1.700676061034503,-3548.09073752918,-1422201271.1472852,0.6604121322484013,0.0,5472615783.74812,5472615783.74812,0.13390591878541525\nALL,179256603.79,135717803.53939366,75.71146650663299,6816.9160112781265,0.0038028813818564685,-1201.353603820665,-215350566971.7696,100.00000000000001,0.0,3339774363037.844,3339774363037.844,0.797230274569638\n", "diff_comb_xbin": ",count_5,tax_cut_5,perc_cut_5,tax_inc_5,perc_inc_5,mean_5,tot_change_5,share_of_change_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,pc_aftertaxinc_5\n<$0K,62845.977457044064,4280.050591502311,6.810381132870078,0.0,0.0,-50.2356802934817,-3157110.4312634235,0.001471916205621757,0.0,903365379.8657402,903365379.8657402,-0.021911302187616055\n=$0K,1122716.7878987112,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,11125034.232994698,8143180.187777025,73.19690004751561,0.0,0.0,-65.92963440810837,-733469439.7590308,0.34196002268998493,0.0,15948103253.52554,15948103253.52554,0.7271304081200247\n$10-20K,11850421.918374952,8283789.625969372,69.90290879959933,0.0,0.0,-193.29663261947357,-2290646651.94188,1.067951217340598,0.0,76387453719.68835,76387453719.68835,0.63653339520644\n$20-30K,15992390.673642023,10640873.732300844,66.53710473593344,0.0,0.0,-308.83821980573686,-4939061466.085471,2.302702034272482,0.0,166616711627.0603,166616711627.0603,0.6797741750610875\n$30-40K,17044958.236282237,11852785.093869664,69.5383639523363,0.0,0.0,-468.6359588151875,-7987880346.024954,3.7241302722428067,0.0,206446638572.1048,206446638572.1048,0.7794774457222653\n$40-50K,15872237.27689075,12052327.027378924,75.93338492316116,0.0,0.0,-657.8931785001523,-10442236632.002256,4.868406619349839,0.0,206679523621.94394,206679523621.94394,0.8753629932861884\n$50-75K,30770661.973220233,23462848.27718353,76.25071016542735,0.0,0.0,-867.2282063467121,-26685185991.136765,12.44123655651359,0.0,540417159663.2171,540417159663.2171,0.8326799809532437\n$75-100K,19876380.926173717,15855451.882532671,79.77031604206083,0.0,0.0,-1265.3395961897716,-25150371814.83873,11.725671514397842,0.0,405711314328.04767,405711314328.04767,0.8777632471939301\n$100-200K,39089017.21762893,31526680.621270724,80.6535514713641,0.0,0.0,-2050.424955185294,-80149096376.69398,37.36731938628614,0.0,1027857818736.3595,1027857818736.3595,0.9097600741586165\n$200-500K,14964544.646164475,12584429.586607616,84.09497170923339,0.0,0.0,-3390.567974105298,-50738305824.35417,23.655344408961003,0.0,651022741265.3567,651022741265.3567,0.7849633222375196\n$500-1000K,1084558.269295226,935737.1022838575,86.27817691085639,0.0,0.0,-3704.0176874106132,-4017223012.4969606,1.872920121873798,0.0,36310917086.926155,36310917086.926155,0.40776631748691283\n>$1000K,400835.65397701133,375420.35162795056,93.65942073842602,6816.9160112781265,1.700676061034503,-3375.912513724629,-1353186100.207988,0.6308859298663076,0.0,5472615783.74812,5472615783.74812,0.13390591878541525\nALL,179256603.79,135717803.53939366,75.71146650663299,6816.9160112781265,0.0038028813818564685,-1196.5518493101058,-214489820765.97342,100.00000000000001,0.0,3339774363037.844,3339774363037.844,0.797230274569638\n", "dist1_xdec": ",s006_5,c00100_5,num_returns_StandardDed_5,standard_5,num_returns_ItemDed_5,c04470_5,c04600_5,c04800_5,taxbc_5,c62100_5,num_returns_AMT_5,c09600_5,c05800_5,c07100_5,othertaxes_5,refund_5,iitax_5,payrolltax_5,combined_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,expanded_income_5,aftertax_income_5\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17915167.257828124,76913087889.09991,17860739.452072464,203522434938.01465,54427.805755662266,295518905.3914855,0.0,3610727564.2316337,241049401.30824474,76632090631.71591,14927.73925478672,397570.86760463455,241446972.17584938,74948149.44408268,0.0,9644117219.470293,-9477618396.738525,11608845226.816126,2131226830.0775983,0.0,38638494630.24208,38638494630.24208,116957807486.08011,114826580656.00252\n10-20,17917247.897711404,209150003754.94427,17606946.380274177,265795448902.35736,310301.5174372263,5633287178.605576,0.0,50200012644.562195,4680004018.047094,204356321516.76096,68455.99661759942,19732887.1597028,4699736905.206797,1025452325.0065994,0.0,20224351112.235977,-16550066532.03578,29620141798.47854,13070075266.442757,0.0,170054011836.11813,170054011836.11813,389640692596.9096,376570617330.46686\n20-30,17930410.94732755,344788155741.46747,17386357.859578628,279112126203.3367,544053.0877489222,9642035141.600334,0.0,141437802510.93552,14625814675.852741,337066270296.66187,97925.38723660447,266763176.41621673,14892577852.268957,3777828027.3663507,0.0,20463812193.831116,-9349062368.928507,49119375803.18497,39770313434.256454,0.0,216628189366.57645,216628189366.57645,588352506875.5562,548582193441.2997\n30-40,17936907.281362854,509009691902.34924,16953940.414655894,289865439236.93823,982966.8667069607,18439584023.487984,0.0,260947733427.81476,27638830385.597706,494774065066.2642,58786.92661781226,98401631.53286722,27737232017.130573,6332360016.666908,0.0,17304176615.03711,4100695385.4265537,72097249173.5526,76197944558.97916,0.0,232984348830.40482,232984348830.40482,780693904653.4167,704495960094.4376\n40-50,17921736.70705093,665284986399.162,16241580.797007166,301609336576.3694,1680155.9100437663,31880205128.785553,0.0,389338499987.3694,42228356891.08378,641252869496.2538,81144.624609861,186246338.15532714,42414603229.239105,9958233954.360802,0.0,13771532532.455906,18684836742.4224,90806002957.10275,109490839699.52516,0.0,281454229916.5519,281454229916.5519,991192572054.1704,881701732354.6453\n50-60,17914136.697606083,859413677027.6647,15145481.576576903,310400849762.27374,2768655.1210291814,61139065925.14202,0.0,540248461084.8495,63830158063.793015,814157779879.988,73872.80641389433,141324346.223279,63971482410.0163,10685367649.24675,0.0,9932637438.019123,43353477322.75043,115120095112.93622,158473572435.68665,0.0,341128273993.7001,341128273993.7001,1251836249180.462,1093362676744.7754\n60-70,17939300.8939492,1186919188599.0093,14113935.457438588,306008444373.74506,3825365.436510609,87780836258.98041,0.0,822694694589.1447,104877877568.47147,1126198276465.8477,102378.79691521719,592889308.2888033,105470766876.76028,14481555663.627138,0.0,4791793104.517763,86197418108.61537,149181487500.89545,235378905609.5108,0.0,379167801387.6989,379167801387.6989,1617823012834.98,1382444107225.4692\n70-80,17925790.464482922,1592416271379.4692,12386108.445143083,286619941568.3336,5539682.019339841,160516820468.24304,0.0,1173905269492.3604,154697290856.39185,1479611288377.3726,34776.031377117215,57183907.63550155,154754474764.02737,15273264262.177633,0.0,1821157070.7745352,137660053431.0752,194562174896.38818,332222228327.4634,0.0,464545112495.95074,464545112495.95074,2117709015047.6743,1785486786720.2112\n80-90,17913207.704635464,2273627344198.292,9896912.804267196,244710882927.63843,8016294.900368266,250577572778.06107,0.0,1786421864735.6992,263313159324.97986,2104662532238.1724,90394.19208587722,43893465.70674652,263357052790.68658,20447366552.49759,0.0,611492926.4728144,242298193311.71622,277689050149.80786,519987243461.52405,0.0,470895701625.3008,470895701625.3008,2874418363303.2285,2354431119841.704\n90-100,17942697.938045476,5078058343058.458,7424456.571273992,185920750909.71042,10518241.366771484,374676617254.5598,0.0,4512907879972.18,960414202638.1674,4815622910300.83,121562.76642892616,871603784.3011179,961285806422.4684,18121390574.131428,10746269475.968979,1279390405.7603824,952631294918.5457,431010509549.033,1383641804467.5786,0.0,744278198955.3,744278198955.3,6091730570222.466,4708088765754.887\nALL,179256603.79,12795580749949.916,145016459.75828812,2673565655398.7173,34240144.03171191,1000581543062.8573,0.0,9681712946009.146,1636546743823.693,12094334404269.867,744225.267557696,2278436416.2871666,1638825180239.9802,100177767174.5253,10746269475.968979,99844460618.57501,1449549221922.849,1420814932168.1958,2870364154091.0444,0.0,3339774363037.8438,3339774363037.8438,16820354694254.945,13949990540163.898\n90-95,8971387.015387276,1543860726414.0347,4394545.335914011,110229519781.4407,4576841.679473264,147673378072.83893,0.0,1287590296817.0947,213997676689.4291,1444478386213.2832,24613.681990151425,57516805.29956633,214055193494.72867,9962550186.349174,45045825.61846181,918544943.5637882,203219144190.43417,178923771446.19745,382142915636.6316,0.0,330091159301.766,330091159301.766,1966318385001.4897,1584175469364.8582\n95-99,7177471.152024313,1850898911167.9873,2590276.560503443,64006967758.55074,4587194.59152087,164741757551.0657,0.0,1623511049701.341,307117636406.0295,1735443291854.8784,34236.43467658848,176447223.0804065,307294083629.10986,7980100786.923869,1562095786.3377547,201995657.36992007,300674082971.15393,178284792690.94064,478958875662.0945,0.0,359473955893.192,359473955893.192,2338400679368.4204,1859441803706.326\nTop 1%,1793839.770633887,1683298705476.4358,439634.6748565378,11684263369.718971,1354205.095777349,62261481630.65513,0.0,1601806533453.7437,439298889542.70874,1635701232232.669,62712.64976218626,637639755.9211451,439936529298.6299,178739600.8583832,9139127864.012762,158849804.82667428,448738067756.9576,73801945411.89497,522540013168.8525,0.0,54713083760.34198,54713083760.34198,1787011505852.5557,1264471492683.703\n", "dist2_xdec": ",s006_5,c00100_5,num_returns_StandardDed_5,standard_5,num_returns_ItemDed_5,c04470_5,c04600_5,c04800_5,taxbc_5,c62100_5,num_returns_AMT_5,c09600_5,c05800_5,c07100_5,othertaxes_5,refund_5,iitax_5,payrolltax_5,combined_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,expanded_income_5,aftertax_income_5\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,17915167.257828124,76919870532.71866,17860739.452072464,203522434938.01465,54427.805755662266,295518905.3914855,0.0,3610727564.2316337,241049401.30824474,76638873275.33466,14927.73925478672,397570.86760463455,241446972.17584938,74948149.44408268,0.0,9638312513.57883,-9471813690.847067,9788868478.05873,317054787.2116635,0.0,38638494630.24208,38638494630.24208,116054601755.32013,115737546968.10849\n10-20,17917247.897711404,209261650671.80942,17606946.380274177,265795448902.35736,310301.5174372263,5632967031.643644,0.0,50249584248.08884,4684953042.960726,204468368617.3285,68455.99661759942,19732887.1597028,4704685930.120429,1026173440.1215513,0.0,20224853333.42327,-16546340843.424393,24990611579.274975,8444270735.850582,0.0,170054011836.11813,170054011836.11813,387437574404.173,378993303668.3224\n20-30,17930410.94732755,345107154390.8629,17384881.66063457,279093179031.255,545529.2866929806,9662456991.829094,0.0,141636618076.46796,14646753795.295387,337371736634.87067,97925.38723660447,266763176.41621673,14913516971.711603,3782263754.860222,0.0,20447969845.944798,-9316716629.093416,41462281178.67598,32145564549.58256,0.0,216628189366.57645,216628189366.57645,584842958212.6971,552697393663.1146\n30-40,17936907.281362854,509496845711.9818,16952562.47458373,289847477677.8624,984344.8067791263,18495467843.859245,0.0,261350111810.8618,27681328241.596,495211140626.41187,58786.92661781226,98401631.53286722,27779729873.128872,6342189761.763523,0.0,17280644778.965477,4156895332.39987,60859050328.90834,65015945661.30821,0.0,232984348830.40482,232984348830.40482,775548743996.2007,710532798334.8926\n40-50,17921736.70705093,665551045094.5972,16241580.797007166,301609336576.3694,1680155.9100437663,31880205128.785553,0.0,389574988879.3086,42253843324.23229,641518928191.689,81144.624609861,186246338.15532714,42440089662.38762,9967250314.41427,0.0,13754451351.829851,18718387996.1435,76601077257.61539,95319465253.75888,0.0,281454229916.5519,281454229916.5519,984350826996.2444,889031361742.4854\n50-60,17914136.697606083,859850484174.5297,15145481.576576903,310400849762.27374,2768655.1210291814,61138927135.55313,0.0,540644743221.6907,63876598076.406845,814594661355.8401,73872.80641389433,141307550.44101495,64017905626.84786,10697423317.379482,0.0,9913924599.096539,43406557710.37184,97122560308.51286,140529118018.8847,0.0,341128273993.7001,341128273993.7001,1243240474842.4114,1102711356823.5266\n60-70,17939300.8939492,1187300360288.0913,14113935.457438588,306008444373.74506,3825365.436510609,87780156157.4249,0.0,823059386719.1774,104932489947.66006,1126580298281.874,102378.79691521719,592889308.2888033,105525379255.94887,14486281920.16196,0.0,4784514556.807183,86254582778.97972,125835308122.85568,212089890901.8354,0.0,379167801387.6989,379167801387.6989,1606515086504.162,1394425195602.3264\n70-80,17925790.464482922,1592811095462.3625,12386108.445143083,286619941568.3336,5539682.019339841,160515321359.36032,0.0,1174272693103.3704,154748252957.03052,1480007958016.5586,34776.031377117215,57183907.63550155,154805436864.66602,15274667535.510633,0.0,1818757963.622831,137712011365.53256,164099527412.12744,301811538777.66003,0.0,464545112495.95074,464545112495.95074,2102856645895.9077,1801045107118.2476\n80-90,17913207.704635464,2274454595313.0127,9896912.804267196,244710882927.63843,8016294.900368266,250576445133.47418,0.0,1787227644483.4185,263480385155.63306,2105490618285.3457,90394.19208587722,47044813.234168634,263527429968.86722,20450445190.966328,0.0,607520925.0965003,242469463852.80438,234318320767.36328,476787784620.16766,0.0,470895701625.3008,470895701625.3008,2853550922015.81,2376763137395.6426\n90-100,17942697.938045476,5079344042167.53,7424456.571273992,185920750909.71042,10518241.366771484,374672259045.295,0.0,4514278999721.583,960806924840.1309,4816913583294.264,120303.26634375576,866617833.2478627,961673542673.3789,18118465548.164223,10748401130.413721,1276537999.8501477,953026940255.7782,370386759763.0333,1323413700018.8115,0.0,744278198955.3,744278198955.3,6062680586751.829,4739266886733.018\nALL,179256603.79,12800097143807.498,145013605.61927187,2673528746667.56,34242998.17072814,1000649724732.6166,0.0,9685905497828.2,1637352578782.2542,12098796166579.518,742965.7674725256,2276585016.9790697,1639629163799.2334,100220108932.78627,10748401130.413721,99747487868.21544,1450409968128.6453,1205464365196.4258,2655874333325.0713,0.0,3339774363037.8438,3339774363037.8438,16717078421374.756,14061204088049.684\n90-95,8971387.015387276,1544180079430.386,4394545.335914011,110229519781.4407,4576841.679473264,147671909243.93335,0.0,1287914184042.5605,214069496453.52255,1444799115238.5864,24613.681990151425,58044241.950202405,214127540695.47275,9963749435.676048,45091800.25926765,915963001.2805386,203292920058.77545,151342907626.4569,354635827685.23236,0.0,330091159301.766,330091159301.766,1952846829405.6958,1598211001720.4634\n95-99,7177471.152024313,1851325650402.8555,2590276.560503443,64006967758.55074,4587194.59152087,164738947989.16644,0.0,1623995855693.1729,307244632165.36346,1735873529192.0796,34236.43467658848,175240519.65498748,307419872685.01843,7976760806.458776,1564063425.9318585,201995657.36992007,300805179647.12164,152148916596.2937,452954096243.4153,0.0,359473955893.192,359473955893.192,2325757120672.8345,1872803024429.4192\nTop 1%,1793839.770633887,1683838312334.2888,439634.6748565378,11684263369.718971,1354205.095777349,62261401812.19519,0.0,1602368959985.8499,439492796221.2449,1636240938863.5972,61453.14967701587,633333071.6426728,440126129292.88763,177955306.02939755,9139245904.222595,158579341.19968918,448928840549.8811,66894935540.28274,515823776090.1638,0.0,54713083760.34198,54713083760.34198,1784076636673.2988,1268252860583.1353\n", "diff_itax_xdec": ",count_5,tax_cut_5,perc_cut_5,tax_inc_5,perc_inc_5,mean_5,tot_change_5,share_of_change_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,pc_aftertaxinc_5\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,17915167.257828124,45593.10907208201,0.2544944650302378,325750.65730515425,1.818295372948951,0.32401070042612273,5804705.891460031,0.6743806539455868,0.0,38638494630.24208,38638494630.24208,0.7933409728841934\n10-20,17917247.897711404,80437.62390536688,0.4489396159755165,286193.68667644856,1.5973082937196201,0.20793866517096093,3725688.611387315,0.432844035361288,0.0,170054011836.11813,170054011836.11813,0.643355117568678\n20-30,17930410.94732755,50766.752973288865,0.283132121859457,856974.510932002,4.7794471272825465,1.8039597603262167,32345739.83509158,3.7578719043173203,0.0,216628189366.57645,216628189366.57645,0.7501519865236617\n30-40,17936907.281362854,31720.742885772714,0.1768462220838472,1435726.5448151086,8.00431491501818,3.1332016212020415,56199946.973316796,6.5292122805622155,0.0,232984348830.40482,232984348830.40482,0.8569017542195301\n40-50,17921736.70705093,4478.222525050265,0.02498765938955237,780306.1238194762,4.353964889532615,1.8720983501505262,33551253.72110217,3.89792641491438,0.0,281454229916.5519,281454229916.5519,0.8313048640911536\n50-60,17914136.697606083,4923.530409116287,0.02748405068146115,982055.408147821,5.482013589184322,2.9630446902030965,53080387.62141414,6.1667872903739465,0.0,341128273993.7001,341128273993.7001,0.8550392543656749\n60-70,17939300.8939492,0.0,0.0,949533.0449031391,5.293032602086573,3.186560652629869,57164670.36434635,6.641292169446211,0.0,379167801387.6989,379167801387.6989,0.8666598753784616\n70-80,17925790.464482922,9416.640642029086,0.052531243521375795,1370737.068263812,7.646731512229308,2.89850171797416,51957934.45734857,6.0363826302654155,0.0,464545112495.95074,464545112495.95074,0.8713769552232797\n80-90,17913207.704635464,12258.2078160581,0.068431115287554,1611511.9974691467,8.99622236307867,9.561131870527676,171270541.08817205,19.897914151099975,0.0,470895701625.3008,470895701625.3008,0.948510124833879\n90-100,17942697.938045476,161935.2526105462,0.9025133966457779,1509484.550459485,8.412807013034492,22.050493108598157,395645337.2325301,45.96538846971366,0.0,744278198955.3,744278198955.3,0.6622245783662883\nALL,179256603.79,401530.0828393104,0.2239973726768275,10108273.592791595,5.638996488315425,4.801754510559275,860746205.7961692,100.0,0.0,3339774363037.8438,3339774363037.8438,0.7972302745696158\n90-95,8971387.015387276,11650.789335266705,0.12986608776640504,619597.2874988503,6.90637118247321,8.223462906540437,73775868.34125578,8.571152314637844,0.0,330091159301.766,330091159301.766,0.8859834423034174\n95-99,7177471.152024313,109128.22198418515,1.5204271765468114,498754.7552925183,6.94889251002912,18.265023040990148,131096675.96776618,15.230584240159963,0.0,359473955893.192,359473955893.192,0.7185608442523472\nTop 1%,1793839.770633887,41156.24129109434,2.2943097797720813,391132.5076681166,21.8042053739227,106.34884789966219,190772792.92350817,22.163651914915846,0.0,54713083760.34198,54713083760.34198,0.29904730326555384\n", "diff_ptax_xdec": ",count_5,tax_cut_5,perc_cut_5,tax_inc_5,perc_inc_5,mean_5,tot_change_5,share_of_change_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,pc_aftertaxinc_5\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17915167.257828124,12644368.490976036,70.57912610584762,0.0,0.0,-101.58859934518037,-1819976748.757395,0.8451228034129006,0.0,38638494630.24208,38638494630.24208,0.7933409728841934\n10-20,17917247.897711404,11547970.854712617,64.45169995213192,0.0,0.0,-258.3840021432588,-4629530219.203563,2.1497645835362253,0.0,170054011836.11813,170054011836.11813,0.643355117568678\n20-30,17930410.94732755,12267484.512246221,68.41719661798737,0.0,0.0,-427.0451272423425,-7657094624.5089855,3.555641729753494,0.0,216628189366.57645,216628189366.57645,0.7501519865236617\n30-40,17936907.281362854,13326956.993793076,74.29907946081822,0.0,0.0,-626.5404993379867,-11238198844.644253,5.218560137859992,0.0,232984348830.40482,232984348830.40482,0.8569017542195301\n40-50,17921736.70705093,13585973.004347494,75.80723468056742,0.0,0.0,-792.6087706610904,-14204925699.487375,6.5961868126168,0.0,281454229916.5519,281454229916.5519,0.8313048640911536\n50-60,17914136.697606083,14209446.720135795,79.31974038154262,0.0,0.0,-1004.6554354376676,-17997534804.42334,8.35731944313044,0.0,341128273993.7001,341128273993.7001,0.8550392543656749\n60-70,17939300.8939492,14201734.887463003,79.16548683484733,0.0,0.0,-1301.398505775343,-23346179378.039764,10.841011336227513,0.0,379167801387.6989,379167801387.6989,0.8666598753784616\n70-80,17925790.464482922,13852017.99804074,77.27423806211665,0.0,0.0,-1699.375407997631,-30462647484.26071,14.145608211123992,0.0,464545112495.95074,464545112495.95074,0.8713769552232797\n80-90,17913207.704635464,14913454.995349547,83.25396121818171,0.0,0.0,-2421.1592975177387,-43370729382.44454,20.13959377600804,0.0,470895701625.3008,470895701625.3008,0.948510124833879\n90-100,17942697.938045476,15168395.082329154,84.53798383445043,6816.9160112781265,0.03799270340957823,-3378.742148774283,-60623749785.99967,28.1511911663306,0.0,744278198955.3,744278198955.3,0.6622245783662883\nALL,179256603.79,135717803.5393937,75.71146650663302,6816.9160112781265,0.0038028813818564685,-1201.353603820665,-215350566971.7696,100.00000000000001,0.0,3339774363037.8438,3339774363037.8438,0.7972302745696158\n90-95,8971387.015387276,7702488.154824294,85.85615737692923,0.0,0.0,-3074.314347651616,-27580863819.740513,12.807425681566048,0.0,330091159301.766,330091159301.766,0.8859834423034174\n95-99,7177471.152024313,5865001.594792887,81.71403925655262,0.0,0.0,-3641.3766828272987,-26135876094.646923,12.13643245159094,0.0,359473955893.192,359473955893.192,0.7185608442523472\nTop 1%,1793839.770633887,1600905.3327119723,89.24461141511331,6816.9160112781265,0.38001811103057664,-3850.4051391231637,-6907009871.612236,3.2073330331736156,0.0,54713083760.34198,54713083760.34198,0.29904730326555384\n", "diff_comb_xdec": ",count_5,tax_cut_5,perc_cut_5,tax_inc_5,perc_inc_5,mean_5,tot_change_5,share_of_change_5,ubi_5,benefit_cost_total_5,benefit_value_total_5,pc_aftertaxinc_5\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,17915167.257828124,12644368.490976036,70.57912610584762,0.0,0.0,-101.26458864475426,-1814172042.865935,0.8458079905084869,0.0,38638494630.24208,38638494630.24208,0.7933409728841934\n10-20,17917247.897711404,11547970.854712617,64.45169995213192,0.0,0.0,-258.1760634780878,-4625804530.592175,2.1566545741297998,0.0,170054011836.11813,170054011836.11813,0.643355117568678\n20-30,17930410.94732755,12267484.512246221,68.41719661798737,0.0,0.0,-425.2411674820163,-7624748884.673893,3.5548301814253183,0.0,216628189366.57645,216628189366.57645,0.7501519865236617\n30-40,17936907.281362854,13326956.993793076,74.29907946081822,0.0,0.0,-623.4072977167847,-11181998897.670935,5.213300499640701,0.0,232984348830.40482,232984348830.40482,0.8569017542195301\n40-50,17921736.70705093,13585973.004347494,75.80723468056742,0.0,0.0,-790.7366723109399,-14171374445.766273,6.607014913415609,0.0,281454229916.5519,281454229916.5519,0.8313048640911536\n50-60,17914136.697606083,14209446.720135795,79.31974038154262,0.0,0.0,-1001.6923907474645,-17944454416.801926,8.366110033902658,0.0,341128273993.7001,341128273993.7001,0.8550392543656749\n60-70,17939300.8939492,14201734.887463003,79.16548683484733,0.0,0.0,-1298.2119451227131,-23289014707.675415,10.857864780951868,0.0,379167801387.6989,379167801387.6989,0.8666598753784616\n70-80,17925790.464482922,13852017.99804074,77.27423806211665,0.0,0.0,-1696.4769062796568,-30410689549.80336,14.178150478751157,0.0,464545112495.95074,464545112495.95074,0.8713769552232797\n80-90,17913207.704635464,14913454.995349547,83.25396121818171,0.0,0.0,-2411.5981656472113,-43199458841.35638,20.1405636347147,0.0,470895701625.3008,470895701625.3008,0.948510124833879\n90-100,17942697.938045476,15168395.082329154,84.53798383445043,6816.9160112781265,0.03799270340957823,-3356.6916556656856,-60228104448.76715,28.079702912559714,0.0,744278198955.3,744278198955.3,0.6622245783662883\nALL,179256603.79,135717803.5393937,75.71146650663302,6816.9160112781265,0.0038028813818564685,-1196.5518493101058,-214489820765.97342,100.00000000000001,0.0,3339774363037.8438,3339774363037.8438,0.7972302745696158\n90-95,8971387.015387276,7702488.154824294,85.85615737692923,0.0,0.0,-3066.0908847450755,-27507087951.399258,12.824425818049344,0.0,330091159301.766,330091159301.766,0.8859834423034174\n95-99,7177471.152024313,5865001.594792887,81.71403925655262,0.0,0.0,-3623.1116597863092,-26004779418.67916,12.124015641307556,0.0,359473955893.192,359473955893.192,0.7185608442523472\nTop 1%,1793839.770633887,1600905.3327119723,89.24461141511331,6816.9160112781265,0.38001811103057664,-3744.056291223505,-6716237078.688734,3.1312614532028156,0.0,54713083760.34198,54713083760.34198,0.29904730326555384\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_5
ind_tax860,746,205.80
payroll_tax-215,350,566,971.77
combined_tax-214,489,820,765.97
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_5
ind_tax1,449,549,221,922.85
payroll_tax1,420,814,932,168.20
combined_tax2,870,364,154,091.04
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_5
ind_tax1,450,409,968,128.65
payroll_tax1,205,464,365,196.43
combined_tax2,655,874,333,325.07
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_5c00100_5num_returns_StandardDed_5standard_5num_returns_ItemDed_5c04470_5c04600_5c04800_5taxbc_5c62100_5num_returns_AMT_5c09600_5c05800_5c07100_5othertaxes_5refund_5iitax_5payrolltax_5combined_5ubi_5benefit_cost_total_5benefit_value_total_5expanded_income_5aftertax_income_5
<$0K62,845.98-8,108,154,072.3462,845.981,463,784,304.820.000.000.000.000.00-8,108,154,072.340.000.000.000.000.001,345,848.79-1,345,848.7920,322,029.7118,976,180.920.00903,365,379.87903,365,379.87-7,115,359,035.41-7,134,335,216.32
=$0K1,122,716.790.001,122,716.7918,832,746,557.350.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,125,034.2335,212,629,610.5011,070,606.43105,044,771,278.7854,427.81295,518,905.390.002,253,224,347.71150,110,284.4134,931,632,353.120.000.00150,110,284.4161,775,415.220.003,565,718,848.85-3,477,383,979.664,702,917,273.031,225,533,293.370.0015,948,103,253.5315,948,103,253.5351,371,130,361.2050,145,597,067.83
$10-20K11,850,421.92105,111,876,743.2711,767,590.02168,844,616,195.8682,831.901,291,189,210.210.008,211,815,999.02691,970,129.32103,999,863,917.7534,253.318,355,346.19700,325,475.51183,625,491.680.0012,790,676,085.68-12,273,976,101.8514,632,086,569.622,358,110,467.770.0076,387,453,719.6976,387,453,719.69184,604,232,134.36182,246,121,666.58
$20-30K15,992,390.67221,434,666,447.2115,681,548.57239,956,522,014.94310,842.115,656,442,231.610.0068,434,614,260.846,618,383,396.57216,688,882,198.5369,783.6543,759,316.696,662,142,713.261,546,548,059.770.0018,827,832,636.43-13,712,237,982.9431,663,567,682.9217,951,329,699.970.00166,616,711,627.06166,616,711,627.06402,514,779,970.41384,563,450,270.43
$30-40K17,044,958.24362,573,264,558.8716,440,189.77267,763,372,940.06604,768.4710,725,483,508.260.00159,069,704,386.4816,480,556,251.82354,049,318,760.43119,761.35291,926,305.7716,772,482,557.604,199,347,272.410.0019,004,316,683.94-6,431,181,398.7551,475,383,317.9945,044,201,919.240.00206,446,638,572.10206,446,638,572.10597,575,372,280.72552,531,170,361.47
$40-50K15,872,237.28473,208,225,603.5614,886,531.40257,557,783,655.58985,705.8718,576,457,662.660.00246,991,172,832.7926,282,065,248.06458,990,700,109.7816,297.7441,254,297.3226,323,319,545.386,001,108,183.230.0014,786,262,863.425,535,948,498.7367,289,779,243.2272,825,727,741.950.00206,679,523,621.94206,679,523,621.94714,641,430,180.77641,815,702,438.82
$50-75K30,770,661.971,268,949,276,299.2827,029,951.35524,588,301,656.733,740,710.6279,195,349,018.720.00764,064,056,744.3186,338,769,715.761,209,399,378,478.9482,450.77192,482,881.1586,531,252,596.9117,040,928,455.070.0020,780,887,770.2548,709,436,371.58171,202,081,508.92219,911,517,880.500.00540,417,159,663.22540,417,159,663.221,890,455,993,862.631,670,544,475,982.12
$75-100K19,876,380.931,263,772,003,671.6515,835,900.35340,243,548,593.084,040,480.5790,857,695,054.140.00868,123,084,985.46110,096,740,378.151,200,540,573,180.94150,792.96547,780,047.26110,644,520,425.4115,588,043,447.280.005,581,379,833.6389,475,097,144.50161,099,185,819.94250,574,282,964.440.00405,711,314,328.05405,711,314,328.051,724,346,815,719.041,473,772,532,754.60
$100-200K39,089,017.224,220,271,660,020.2224,331,355.80579,104,621,466.7314,757,661.42444,789,857,160.540.003,235,930,013,099.65458,700,623,258.093,916,777,486,462.27149,322.72281,274,437.60458,981,897,695.6838,845,673,194.700.003,427,343,652.54416,708,880,848.44514,245,068,873.25930,953,949,721.690.001,027,857,818,736.361,027,857,818,736.365,462,206,432,356.924,531,252,482,635.24
$200-500K14,964,544.653,297,519,414,316.716,459,190.53161,566,414,489.468,505,354.12294,697,732,908.120.002,842,112,499,948.71516,029,608,775.393,093,334,531,244.2179,400.45317,105,620.93516,346,714,396.3216,661,473,874.261,814,553,566.44938,971,228.68500,560,822,859.82341,002,570,639.89841,563,393,499.710.00651,022,741,265.36651,022,741,265.364,159,389,884,886.293,317,826,491,386.58
$500-1000K1,084,558.27676,776,658,865.11303,012.838,083,312,666.37781,545.4433,315,963,363.090.00632,639,503,402.27153,292,675,183.23651,972,422,975.3010,701.6258,564,362.54153,351,239,545.7741,586,238.661,794,397,203.19139,725,166.38154,964,325,343.9336,323,545,901.73191,287,871,245.650.0036,310,917,086.9336,310,917,086.93735,773,131,200.36544,485,259,954.70
>$1000K400,835.65878,859,227,885.8825,019.95515,859,578.96375,815.7021,179,854,040.140.00853,883,256,001.91261,865,241,202.91861,757,768,660.9331,460.70495,933,800.82262,361,175,003.747,657,542.237,137,318,706.340.00269,490,836,167.8427,158,423,307.98296,649,259,475.830.005,472,615,783.755,472,615,783.75904,590,850,337.66607,941,590,861.84
ALL179,256,603.7912,795,580,749,949.92145,016,459.762,673,565,655,398.7234,240,144.031,000,581,543,062.860.009,681,712,946,009.151,636,546,743,823.6912,094,334,404,269.87744,225.272,278,436,416.291,638,825,180,239.98100,177,767,174.5310,746,269,475.9799,844,460,618.581,449,549,221,922.851,420,814,932,168.202,870,364,154,091.040.003,339,774,363,037.843,339,774,363,037.8416,820,354,694,254.9413,949,990,540,163.90
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_5c00100_5num_returns_StandardDed_5standard_5num_returns_ItemDed_5c04470_5c04600_5c04800_5taxbc_5c62100_5num_returns_AMT_5c09600_5c05800_5c07100_5othertaxes_5refund_5iitax_5payrolltax_5combined_5ubi_5benefit_cost_total_5benefit_value_total_5expanded_income_5aftertax_income_5
<$0K62,845.98-8,108,154,072.3462,845.981,463,784,304.820.000.000.000.000.00-8,108,154,072.340.000.000.000.000.001,315,189.86-1,315,189.8617,134,260.3415,819,070.490.00903,365,379.87903,365,379.87-7,116,952,920.09-7,132,771,990.58
=$0K1,122,716.790.001,122,716.7918,832,746,557.350.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K11,125,034.2335,212,639,564.6311,070,606.43105,044,771,278.7854,427.81295,518,905.390.002,253,224,347.71150,110,284.4134,931,642,307.250.000.00150,110,284.4161,775,415.220.003,561,477,270.05-3,473,142,400.873,965,206,254.47492,063,853.610.0015,948,103,253.5315,948,103,253.5351,002,284,806.0550,510,220,952.45
$10-20K11,850,421.92105,127,713,044.8211,767,590.02168,844,616,195.8682,831.901,291,189,210.210.008,214,478,691.41692,236,398.55104,015,700,219.3034,253.318,355,346.19700,591,744.75183,625,491.680.0012,788,737,951.63-12,271,771,698.5612,339,235,514.3967,463,815.830.0076,387,453,719.6976,387,453,719.69183,473,642,908.29183,406,179,092.46
$20-30K15,992,390.67221,582,113,661.1715,681,548.57239,956,817,214.19310,842.115,656,111,444.800.0068,496,318,744.546,624,545,709.50216,836,742,896.0169,783.6543,759,316.696,668,305,026.191,547,918,478.190.0018,826,994,680.26-13,706,608,132.2626,718,876,366.1513,012,268,233.890.00166,616,711,627.06166,616,711,627.06400,189,881,525.98387,177,613,292.09
$30-40K17,044,958.24362,904,642,736.3116,438,713.57267,744,130,568.73606,244.6710,745,915,998.330.00159,295,456,995.1616,504,773,746.82354,367,151,326.87119,761.35291,926,305.7716,796,700,052.594,203,654,917.860.0018,987,301,539.69-6,394,256,404.9643,450,577,978.1837,056,321,573.220.00206,446,638,572.10206,446,638,572.10593,894,347,788.25556,838,026,215.03
$40-50K15,872,237.28473,643,454,659.8214,885,153.46257,539,822,096.50987,083.8118,632,341,483.030.00247,356,141,731.6326,320,265,209.43459,375,850,916.5516,297.7441,254,297.3226,361,519,506.756,010,477,736.650.0014,765,433,406.265,585,608,363.8456,797,882,746.1062,383,491,109.950.00206,679,523,621.94206,679,523,621.94709,817,410,693.01647,433,919,583.07
$50-75K30,770,661.971,269,589,817,807.6427,029,951.35524,588,301,656.733,740,710.6279,195,210,229.130.00764,655,571,111.9486,406,169,974.131,210,039,994,316.2882,450.77192,482,881.1586,598,652,855.2817,060,209,005.810.0020,750,140,502.5448,788,303,346.93144,438,028,542.44193,226,331,889.370.00540,417,159,663.22540,417,159,663.221,877,681,097,295.911,684,454,765,406.55
$75-100K19,876,380.931,264,185,251,090.7115,835,900.35340,243,548,593.084,040,480.5790,857,014,952.580.00868,499,780,725.00110,152,743,030.841,200,954,670,726.95150,792.96547,763,251.48110,700,506,282.3315,594,361,370.370.005,569,779,720.9789,536,365,190.98135,887,545,958.62225,423,911,149.600.00405,711,314,328.05405,711,314,328.051,712,132,677,543.961,486,708,766,394.36
$100-200K39,089,017.224,221,564,371,774.7624,331,355.80579,104,621,466.7314,757,661.42444,786,782,398.190.003,237,174,301,024.18458,930,240,376.993,918,072,978,689.46149,322.72284,425,785.12459,214,666,162.1238,851,519,881.310.003,417,881,675.53416,945,264,605.28433,859,588,739.71850,804,853,344.990.001,027,857,818,736.361,027,857,818,736.365,423,280,861,926.574,572,476,008,581.57
$200-500K14,964,544.653,298,309,520,139.466,459,190.53161,566,414,489.468,505,354.12294,693,902,526.180.002,842,982,951,324.50516,251,754,128.333,094,129,411,194.3578,140.95312,693,658.24516,564,447,786.5716,657,561,642.831,816,567,180.67938,708,808.59500,784,744,515.83290,040,343,159.53790,825,087,675.360.00651,022,741,265.36651,022,741,265.364,134,695,300,114.803,343,870,212,439.44
$500-1000K1,084,558.27677,039,546,120.58303,012.838,083,312,666.37781,545.4433,315,883,544.630.00632,907,017,736.16153,385,232,076.50652,235,410,003.8410,701.6258,299,722.46153,443,531,798.9641,347,450.641,794,457,368.02139,717,122.84155,056,924,593.5132,213,723,639.65187,270,648,233.160.0036,310,917,086.9336,310,917,086.93733,976,135,681.64546,705,487,448.48
>$1000K400,835.65879,046,227,279.9325,019.95515,859,578.96375,815.7021,179,854,040.140.00854,070,255,395.96261,934,507,846.76861,944,768,054.9831,460.70495,624,452.54262,430,132,299.307,657,542.237,137,376,581.720.00269,559,851,338.7825,736,222,036.84295,296,073,375.620.005,472,615,783.755,472,615,783.75904,051,734,010.38608,755,660,634.76
ALL179,256,603.7912,800,097,143,807.50145,013,605.622,673,528,746,667.5634,242,998.171,000,649,724,732.620.009,685,905,497,828.201,637,352,578,782.2512,098,796,166,579.52742,965.772,276,585,016.981,639,629,163,799.23100,220,108,932.7910,748,401,130.4199,747,487,868.221,450,409,968,128.651,205,464,365,196.432,655,874,333,325.070.003,339,774,363,037.843,339,774,363,037.8416,717,078,421,374.7614,061,204,088,049.68
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_5tax_cut_5perc_cut_5tax_inc_5perc_inc_5mean_5tot_change_5share_of_change_5ubi_5benefit_cost_total_5benefit_value_total_5pc_aftertaxinc_5
<$0K62,845.980.000.00299.080.480.4930,658.930.000.00903,365,379.87903,365,379.87-0.02
=$0K1,122,716.790.000.000.000.000.000.000.000.000.000.00nan
$0-10K11,125,034.2321,946.470.20280,617.082.520.384,241,578.800.490.0015,948,103,253.5315,948,103,253.530.73
$10-20K11,850,421.9239,791.200.34108,118.170.910.192,204,403.290.260.0076,387,453,719.6976,387,453,719.690.64
$20-30K15,992,390.6783,274.890.52368,674.902.310.355,629,850.680.650.00166,616,711,627.06166,616,711,627.060.68
$30-40K17,044,958.2433,296.850.201,006,644.615.912.1736,924,993.794.290.00206,446,638,572.10206,446,638,572.100.78
$40-50K15,872,237.2830,208.810.191,171,375.447.383.1349,659,865.115.770.00206,679,523,621.94206,679,523,621.940.88
$50-75K30,770,661.977,956.320.031,548,568.425.032.5678,866,975.349.160.00540,417,159,663.22540,417,159,663.220.83
$75-100K19,876,380.931,445.430.011,064,814.855.363.0861,268,046.487.120.00405,711,314,328.05405,711,314,328.050.88
$100-200K39,089,017.2221,674.850.063,119,058.507.986.05236,383,756.8427.460.001,027,857,818,736.361,027,857,818,736.360.91
$200-500K14,964,544.65128,619.540.861,121,973.737.5014.96223,921,656.0026.010.00651,022,741,265.36651,022,741,265.360.78
$500-1000K1,084,558.2714,448.691.33186,688.8817.2185.3892,599,249.5810.760.0036,310,917,086.9336,310,917,086.930.41
>$1000K400,835.6518,867.034.71131,439.9332.79172.1869,015,170.948.020.005,472,615,783.755,472,615,783.750.13
ALL179,256,603.79401,530.080.2210,108,273.595.644.80860,746,205.80100.000.003,339,774,363,037.843,339,774,363,037.840.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_5tax_cut_5perc_cut_5tax_inc_5perc_inc_5mean_5tot_change_5share_of_change_5ubi_5benefit_cost_total_5benefit_value_total_5pc_aftertaxinc_5
<$0K62,845.984,280.056.810.000.00-50.72-3,187,769.370.000.00903,365,379.87903,365,379.87-0.02
=$0K1,122,716.790.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,125,034.238,143,180.1973.200.000.00-66.31-737,711,018.560.340.0015,948,103,253.5315,948,103,253.530.73
$10-20K11,850,421.928,283,789.6369.900.000.00-193.48-2,292,851,055.231.060.0076,387,453,719.6976,387,453,719.690.64
$20-30K15,992,390.6710,640,873.7366.540.000.00-309.19-4,944,691,316.772.300.00166,616,711,627.06166,616,711,627.060.68
$30-40K17,044,958.2411,852,785.0969.540.000.00-470.80-8,024,805,339.813.730.00206,446,638,572.10206,446,638,572.100.78
$40-50K15,872,237.2812,052,327.0375.930.000.00-661.02-10,491,896,497.114.870.00206,679,523,621.94206,679,523,621.940.88
$50-75K30,770,661.9723,462,848.2876.250.000.00-869.79-26,764,052,966.4812.430.00540,417,159,663.22540,417,159,663.220.83
$75-100K19,876,380.9315,855,451.8879.770.000.00-1,268.42-25,211,639,861.3211.710.00405,711,314,328.05405,711,314,328.050.88
$100-200K39,089,017.2231,526,680.6280.650.000.00-2,056.47-80,385,480,133.5437.330.001,027,857,818,736.361,027,857,818,736.360.91
$200-500K14,964,544.6512,584,429.5984.090.000.00-3,405.53-50,962,227,480.3623.660.00651,022,741,265.36651,022,741,265.360.78
$500-1000K1,084,558.27935,737.1086.280.000.00-3,789.40-4,109,822,262.081.910.0036,310,917,086.9336,310,917,086.930.41
>$1000K400,835.65375,420.3593.666,816.921.70-3,548.09-1,422,201,271.150.660.005,472,615,783.755,472,615,783.750.13
ALL179,256,603.79135,717,803.5475.716,816.920.00-1,201.35-215,350,566,971.77100.000.003,339,774,363,037.843,339,774,363,037.840.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_5tax_cut_5perc_cut_5tax_inc_5perc_inc_5mean_5tot_change_5share_of_change_5ubi_5benefit_cost_total_5benefit_value_total_5pc_aftertaxinc_5
<$0K62,845.984,280.056.810.000.00-50.24-3,157,110.430.000.00903,365,379.87903,365,379.87-0.02
=$0K1,122,716.790.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K11,125,034.238,143,180.1973.200.000.00-65.93-733,469,439.760.340.0015,948,103,253.5315,948,103,253.530.73
$10-20K11,850,421.928,283,789.6369.900.000.00-193.30-2,290,646,651.941.070.0076,387,453,719.6976,387,453,719.690.64
$20-30K15,992,390.6710,640,873.7366.540.000.00-308.84-4,939,061,466.092.300.00166,616,711,627.06166,616,711,627.060.68
$30-40K17,044,958.2411,852,785.0969.540.000.00-468.64-7,987,880,346.023.720.00206,446,638,572.10206,446,638,572.100.78
$40-50K15,872,237.2812,052,327.0375.930.000.00-657.89-10,442,236,632.004.870.00206,679,523,621.94206,679,523,621.940.88
$50-75K30,770,661.9723,462,848.2876.250.000.00-867.23-26,685,185,991.1412.440.00540,417,159,663.22540,417,159,663.220.83
$75-100K19,876,380.9315,855,451.8879.770.000.00-1,265.34-25,150,371,814.8411.730.00405,711,314,328.05405,711,314,328.050.88
$100-200K39,089,017.2231,526,680.6280.650.000.00-2,050.42-80,149,096,376.6937.370.001,027,857,818,736.361,027,857,818,736.360.91
$200-500K14,964,544.6512,584,429.5984.090.000.00-3,390.57-50,738,305,824.3523.660.00651,022,741,265.36651,022,741,265.360.78
$500-1000K1,084,558.27935,737.1086.280.000.00-3,704.02-4,017,223,012.501.870.0036,310,917,086.9336,310,917,086.930.41
>$1000K400,835.65375,420.3593.666,816.921.70-3,375.91-1,353,186,100.210.630.005,472,615,783.755,472,615,783.750.13
ALL179,256,603.79135,717,803.5475.716,816.920.00-1,196.55-214,489,820,765.97100.000.003,339,774,363,037.843,339,774,363,037.840.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_5c00100_5num_returns_StandardDed_5standard_5num_returns_ItemDed_5c04470_5c04600_5c04800_5taxbc_5c62100_5num_returns_AMT_5c09600_5c05800_5c07100_5othertaxes_5refund_5iitax_5payrolltax_5combined_5ubi_5benefit_cost_total_5benefit_value_total_5expanded_income_5aftertax_income_5
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,915,167.2676,913,087,889.1017,860,739.45203,522,434,938.0154,427.81295,518,905.390.003,610,727,564.23241,049,401.3176,632,090,631.7214,927.74397,570.87241,446,972.1874,948,149.440.009,644,117,219.47-9,477,618,396.7411,608,845,226.822,131,226,830.080.0038,638,494,630.2438,638,494,630.24116,957,807,486.08114,826,580,656.00
10-2017,917,247.90209,150,003,754.9417,606,946.38265,795,448,902.36310,301.525,633,287,178.610.0050,200,012,644.564,680,004,018.05204,356,321,516.7668,456.0019,732,887.164,699,736,905.211,025,452,325.010.0020,224,351,112.24-16,550,066,532.0429,620,141,798.4813,070,075,266.440.00170,054,011,836.12170,054,011,836.12389,640,692,596.91376,570,617,330.47
20-3017,930,410.95344,788,155,741.4717,386,357.86279,112,126,203.34544,053.099,642,035,141.600.00141,437,802,510.9414,625,814,675.85337,066,270,296.6697,925.39266,763,176.4214,892,577,852.273,777,828,027.370.0020,463,812,193.83-9,349,062,368.9349,119,375,803.1839,770,313,434.260.00216,628,189,366.58216,628,189,366.58588,352,506,875.56548,582,193,441.30
30-4017,936,907.28509,009,691,902.3516,953,940.41289,865,439,236.94982,966.8718,439,584,023.490.00260,947,733,427.8127,638,830,385.60494,774,065,066.2658,786.9398,401,631.5327,737,232,017.136,332,360,016.670.0017,304,176,615.044,100,695,385.4372,097,249,173.5576,197,944,558.980.00232,984,348,830.40232,984,348,830.40780,693,904,653.42704,495,960,094.44
40-5017,921,736.71665,284,986,399.1616,241,580.80301,609,336,576.371,680,155.9131,880,205,128.790.00389,338,499,987.3742,228,356,891.08641,252,869,496.2581,144.62186,246,338.1642,414,603,229.249,958,233,954.360.0013,771,532,532.4618,684,836,742.4290,806,002,957.10109,490,839,699.530.00281,454,229,916.55281,454,229,916.55991,192,572,054.17881,701,732,354.65
50-6017,914,136.70859,413,677,027.6615,145,481.58310,400,849,762.272,768,655.1261,139,065,925.140.00540,248,461,084.8563,830,158,063.79814,157,779,879.9973,872.81141,324,346.2263,971,482,410.0210,685,367,649.250.009,932,637,438.0243,353,477,322.75115,120,095,112.94158,473,572,435.690.00341,128,273,993.70341,128,273,993.701,251,836,249,180.461,093,362,676,744.78
60-7017,939,300.891,186,919,188,599.0114,113,935.46306,008,444,373.753,825,365.4487,780,836,258.980.00822,694,694,589.14104,877,877,568.471,126,198,276,465.85102,378.80592,889,308.29105,470,766,876.7614,481,555,663.630.004,791,793,104.5286,197,418,108.62149,181,487,500.90235,378,905,609.510.00379,167,801,387.70379,167,801,387.701,617,823,012,834.981,382,444,107,225.47
70-8017,925,790.461,592,416,271,379.4712,386,108.45286,619,941,568.335,539,682.02160,516,820,468.240.001,173,905,269,492.36154,697,290,856.391,479,611,288,377.3734,776.0357,183,907.64154,754,474,764.0315,273,264,262.180.001,821,157,070.77137,660,053,431.08194,562,174,896.39332,222,228,327.460.00464,545,112,495.95464,545,112,495.952,117,709,015,047.671,785,486,786,720.21
80-9017,913,207.702,273,627,344,198.299,896,912.80244,710,882,927.648,016,294.90250,577,572,778.060.001,786,421,864,735.70263,313,159,324.982,104,662,532,238.1790,394.1943,893,465.71263,357,052,790.6920,447,366,552.500.00611,492,926.47242,298,193,311.72277,689,050,149.81519,987,243,461.520.00470,895,701,625.30470,895,701,625.302,874,418,363,303.232,354,431,119,841.70
90-10017,942,697.945,078,058,343,058.467,424,456.57185,920,750,909.7110,518,241.37374,676,617,254.560.004,512,907,879,972.18960,414,202,638.174,815,622,910,300.83121,562.77871,603,784.30961,285,806,422.4718,121,390,574.1310,746,269,475.971,279,390,405.76952,631,294,918.55431,010,509,549.031,383,641,804,467.580.00744,278,198,955.30744,278,198,955.306,091,730,570,222.474,708,088,765,754.89
ALL179,256,603.7912,795,580,749,949.92145,016,459.762,673,565,655,398.7234,240,144.031,000,581,543,062.860.009,681,712,946,009.151,636,546,743,823.6912,094,334,404,269.87744,225.272,278,436,416.291,638,825,180,239.98100,177,767,174.5310,746,269,475.9799,844,460,618.581,449,549,221,922.851,420,814,932,168.202,870,364,154,091.040.003,339,774,363,037.843,339,774,363,037.8416,820,354,694,254.9513,949,990,540,163.90
90-958,971,387.021,543,860,726,414.034,394,545.34110,229,519,781.444,576,841.68147,673,378,072.840.001,287,590,296,817.09213,997,676,689.431,444,478,386,213.2824,613.6857,516,805.30214,055,193,494.739,962,550,186.3545,045,825.62918,544,943.56203,219,144,190.43178,923,771,446.20382,142,915,636.630.00330,091,159,301.77330,091,159,301.771,966,318,385,001.491,584,175,469,364.86
95-997,177,471.151,850,898,911,167.992,590,276.5664,006,967,758.554,587,194.59164,741,757,551.070.001,623,511,049,701.34307,117,636,406.031,735,443,291,854.8834,236.43176,447,223.08307,294,083,629.117,980,100,786.921,562,095,786.34201,995,657.37300,674,082,971.15178,284,792,690.94478,958,875,662.090.00359,473,955,893.19359,473,955,893.192,338,400,679,368.421,859,441,803,706.33
Top 1%1,793,839.771,683,298,705,476.44439,634.6711,684,263,369.721,354,205.1062,261,481,630.660.001,601,806,533,453.74439,298,889,542.711,635,701,232,232.6762,712.65637,639,755.92439,936,529,298.63178,739,600.869,139,127,864.01158,849,804.83448,738,067,756.9673,801,945,411.89522,540,013,168.850.0054,713,083,760.3454,713,083,760.341,787,011,505,852.561,264,471,492,683.70
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_5c00100_5num_returns_StandardDed_5standard_5num_returns_ItemDed_5c04470_5c04600_5c04800_5taxbc_5c62100_5num_returns_AMT_5c09600_5c05800_5c07100_5othertaxes_5refund_5iitax_5payrolltax_5combined_5ubi_5benefit_cost_total_5benefit_value_total_5expanded_income_5aftertax_income_5
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p17,915,167.2676,919,870,532.7217,860,739.45203,522,434,938.0154,427.81295,518,905.390.003,610,727,564.23241,049,401.3176,638,873,275.3314,927.74397,570.87241,446,972.1874,948,149.440.009,638,312,513.58-9,471,813,690.859,788,868,478.06317,054,787.210.0038,638,494,630.2438,638,494,630.24116,054,601,755.32115,737,546,968.11
10-2017,917,247.90209,261,650,671.8117,606,946.38265,795,448,902.36310,301.525,632,967,031.640.0050,249,584,248.094,684,953,042.96204,468,368,617.3368,456.0019,732,887.164,704,685,930.121,026,173,440.120.0020,224,853,333.42-16,546,340,843.4224,990,611,579.278,444,270,735.850.00170,054,011,836.12170,054,011,836.12387,437,574,404.17378,993,303,668.32
20-3017,930,410.95345,107,154,390.8617,384,881.66279,093,179,031.26545,529.299,662,456,991.830.00141,636,618,076.4714,646,753,795.30337,371,736,634.8797,925.39266,763,176.4214,913,516,971.713,782,263,754.860.0020,447,969,845.94-9,316,716,629.0941,462,281,178.6832,145,564,549.580.00216,628,189,366.58216,628,189,366.58584,842,958,212.70552,697,393,663.11
30-4017,936,907.28509,496,845,711.9816,952,562.47289,847,477,677.86984,344.8118,495,467,843.860.00261,350,111,810.8627,681,328,241.60495,211,140,626.4158,786.9398,401,631.5327,779,729,873.136,342,189,761.760.0017,280,644,778.974,156,895,332.4060,859,050,328.9165,015,945,661.310.00232,984,348,830.40232,984,348,830.40775,548,743,996.20710,532,798,334.89
40-5017,921,736.71665,551,045,094.6016,241,580.80301,609,336,576.371,680,155.9131,880,205,128.790.00389,574,988,879.3142,253,843,324.23641,518,928,191.6981,144.62186,246,338.1642,440,089,662.399,967,250,314.410.0013,754,451,351.8318,718,387,996.1476,601,077,257.6295,319,465,253.760.00281,454,229,916.55281,454,229,916.55984,350,826,996.24889,031,361,742.49
50-6017,914,136.70859,850,484,174.5315,145,481.58310,400,849,762.272,768,655.1261,138,927,135.550.00540,644,743,221.6963,876,598,076.41814,594,661,355.8473,872.81141,307,550.4464,017,905,626.8510,697,423,317.380.009,913,924,599.1043,406,557,710.3797,122,560,308.51140,529,118,018.880.00341,128,273,993.70341,128,273,993.701,243,240,474,842.411,102,711,356,823.53
60-7017,939,300.891,187,300,360,288.0914,113,935.46306,008,444,373.753,825,365.4487,780,156,157.420.00823,059,386,719.18104,932,489,947.661,126,580,298,281.87102,378.80592,889,308.29105,525,379,255.9514,486,281,920.160.004,784,514,556.8186,254,582,778.98125,835,308,122.86212,089,890,901.840.00379,167,801,387.70379,167,801,387.701,606,515,086,504.161,394,425,195,602.33
70-8017,925,790.461,592,811,095,462.3612,386,108.45286,619,941,568.335,539,682.02160,515,321,359.360.001,174,272,693,103.37154,748,252,957.031,480,007,958,016.5634,776.0357,183,907.64154,805,436,864.6715,274,667,535.510.001,818,757,963.62137,712,011,365.53164,099,527,412.13301,811,538,777.660.00464,545,112,495.95464,545,112,495.952,102,856,645,895.911,801,045,107,118.25
80-9017,913,207.702,274,454,595,313.019,896,912.80244,710,882,927.648,016,294.90250,576,445,133.470.001,787,227,644,483.42263,480,385,155.632,105,490,618,285.3590,394.1947,044,813.23263,527,429,968.8720,450,445,190.970.00607,520,925.10242,469,463,852.80234,318,320,767.36476,787,784,620.170.00470,895,701,625.30470,895,701,625.302,853,550,922,015.812,376,763,137,395.64
90-10017,942,697.945,079,344,042,167.537,424,456.57185,920,750,909.7110,518,241.37374,672,259,045.290.004,514,278,999,721.58960,806,924,840.134,816,913,583,294.26120,303.27866,617,833.25961,673,542,673.3818,118,465,548.1610,748,401,130.411,276,537,999.85953,026,940,255.78370,386,759,763.031,323,413,700,018.810.00744,278,198,955.30744,278,198,955.306,062,680,586,751.834,739,266,886,733.02
ALL179,256,603.7912,800,097,143,807.50145,013,605.622,673,528,746,667.5634,242,998.171,000,649,724,732.620.009,685,905,497,828.201,637,352,578,782.2512,098,796,166,579.52742,965.772,276,585,016.981,639,629,163,799.23100,220,108,932.7910,748,401,130.4199,747,487,868.221,450,409,968,128.651,205,464,365,196.432,655,874,333,325.070.003,339,774,363,037.843,339,774,363,037.8416,717,078,421,374.7614,061,204,088,049.68
90-958,971,387.021,544,180,079,430.394,394,545.34110,229,519,781.444,576,841.68147,671,909,243.930.001,287,914,184,042.56214,069,496,453.521,444,799,115,238.5924,613.6858,044,241.95214,127,540,695.479,963,749,435.6845,091,800.26915,963,001.28203,292,920,058.78151,342,907,626.46354,635,827,685.230.00330,091,159,301.77330,091,159,301.771,952,846,829,405.701,598,211,001,720.46
95-997,177,471.151,851,325,650,402.862,590,276.5664,006,967,758.554,587,194.59164,738,947,989.170.001,623,995,855,693.17307,244,632,165.361,735,873,529,192.0834,236.43175,240,519.65307,419,872,685.027,976,760,806.461,564,063,425.93201,995,657.37300,805,179,647.12152,148,916,596.29452,954,096,243.420.00359,473,955,893.19359,473,955,893.192,325,757,120,672.831,872,803,024,429.42
Top 1%1,793,839.771,683,838,312,334.29439,634.6711,684,263,369.721,354,205.1062,261,401,812.200.001,602,368,959,985.85439,492,796,221.241,636,240,938,863.6061,453.15633,333,071.64440,126,129,292.89177,955,306.039,139,245,904.22158,579,341.20448,928,840,549.8866,894,935,540.28515,823,776,090.160.0054,713,083,760.3454,713,083,760.341,784,076,636,673.301,268,252,860,583.14
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_5tax_cut_5perc_cut_5tax_inc_5perc_inc_5mean_5tot_change_5share_of_change_5ubi_5benefit_cost_total_5benefit_value_total_5pc_aftertaxinc_5
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p17,915,167.2645,593.110.25325,750.661.820.325,804,705.890.670.0038,638,494,630.2438,638,494,630.240.79
10-2017,917,247.9080,437.620.45286,193.691.600.213,725,688.610.430.00170,054,011,836.12170,054,011,836.120.64
20-3017,930,410.9550,766.750.28856,974.514.781.8032,345,739.843.760.00216,628,189,366.58216,628,189,366.580.75
30-4017,936,907.2831,720.740.181,435,726.548.003.1356,199,946.976.530.00232,984,348,830.40232,984,348,830.400.86
40-5017,921,736.714,478.220.02780,306.124.351.8733,551,253.723.900.00281,454,229,916.55281,454,229,916.550.83
50-6017,914,136.704,923.530.03982,055.415.482.9653,080,387.626.170.00341,128,273,993.70341,128,273,993.700.86
60-7017,939,300.890.000.00949,533.045.293.1957,164,670.366.640.00379,167,801,387.70379,167,801,387.700.87
70-8017,925,790.469,416.640.051,370,737.077.652.9051,957,934.466.040.00464,545,112,495.95464,545,112,495.950.87
80-9017,913,207.7012,258.210.071,611,512.009.009.56171,270,541.0919.900.00470,895,701,625.30470,895,701,625.300.95
90-10017,942,697.94161,935.250.901,509,484.558.4122.05395,645,337.2345.970.00744,278,198,955.30744,278,198,955.300.66
ALL179,256,603.79401,530.080.2210,108,273.595.644.80860,746,205.80100.000.003,339,774,363,037.843,339,774,363,037.840.80
90-958,971,387.0211,650.790.13619,597.296.918.2273,775,868.348.570.00330,091,159,301.77330,091,159,301.770.89
95-997,177,471.15109,128.221.52498,754.766.9518.27131,096,675.9715.230.00359,473,955,893.19359,473,955,893.190.72
Top 1%1,793,839.7741,156.242.29391,132.5121.80106.35190,772,792.9222.160.0054,713,083,760.3454,713,083,760.340.30
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_5tax_cut_5perc_cut_5tax_inc_5perc_inc_5mean_5tot_change_5share_of_change_5ubi_5benefit_cost_total_5benefit_value_total_5pc_aftertaxinc_5
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,915,167.2612,644,368.4970.580.000.00-101.59-1,819,976,748.760.850.0038,638,494,630.2438,638,494,630.240.79
10-2017,917,247.9011,547,970.8564.450.000.00-258.38-4,629,530,219.202.150.00170,054,011,836.12170,054,011,836.120.64
20-3017,930,410.9512,267,484.5168.420.000.00-427.05-7,657,094,624.513.560.00216,628,189,366.58216,628,189,366.580.75
30-4017,936,907.2813,326,956.9974.300.000.00-626.54-11,238,198,844.645.220.00232,984,348,830.40232,984,348,830.400.86
40-5017,921,736.7113,585,973.0075.810.000.00-792.61-14,204,925,699.496.600.00281,454,229,916.55281,454,229,916.550.83
50-6017,914,136.7014,209,446.7279.320.000.00-1,004.66-17,997,534,804.428.360.00341,128,273,993.70341,128,273,993.700.86
60-7017,939,300.8914,201,734.8979.170.000.00-1,301.40-23,346,179,378.0410.840.00379,167,801,387.70379,167,801,387.700.87
70-8017,925,790.4613,852,018.0077.270.000.00-1,699.38-30,462,647,484.2614.150.00464,545,112,495.95464,545,112,495.950.87
80-9017,913,207.7014,913,455.0083.250.000.00-2,421.16-43,370,729,382.4420.140.00470,895,701,625.30470,895,701,625.300.95
90-10017,942,697.9415,168,395.0884.546,816.920.04-3,378.74-60,623,749,786.0028.150.00744,278,198,955.30744,278,198,955.300.66
ALL179,256,603.79135,717,803.5475.716,816.920.00-1,201.35-215,350,566,971.77100.000.003,339,774,363,037.843,339,774,363,037.840.80
90-958,971,387.027,702,488.1585.860.000.00-3,074.31-27,580,863,819.7412.810.00330,091,159,301.77330,091,159,301.770.89
95-997,177,471.155,865,001.5981.710.000.00-3,641.38-26,135,876,094.6512.140.00359,473,955,893.19359,473,955,893.190.72
Top 1%1,793,839.771,600,905.3389.246,816.920.38-3,850.41-6,907,009,871.613.210.0054,713,083,760.3454,713,083,760.340.30
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_5tax_cut_5perc_cut_5tax_inc_5perc_inc_5mean_5tot_change_5share_of_change_5ubi_5benefit_cost_total_5benefit_value_total_5pc_aftertaxinc_5
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p17,915,167.2612,644,368.4970.580.000.00-101.26-1,814,172,042.870.850.0038,638,494,630.2438,638,494,630.240.79
10-2017,917,247.9011,547,970.8564.450.000.00-258.18-4,625,804,530.592.160.00170,054,011,836.12170,054,011,836.120.64
20-3017,930,410.9512,267,484.5168.420.000.00-425.24-7,624,748,884.673.550.00216,628,189,366.58216,628,189,366.580.75
30-4017,936,907.2813,326,956.9974.300.000.00-623.41-11,181,998,897.675.210.00232,984,348,830.40232,984,348,830.400.86
40-5017,921,736.7113,585,973.0075.810.000.00-790.74-14,171,374,445.776.610.00281,454,229,916.55281,454,229,916.550.83
50-6017,914,136.7014,209,446.7279.320.000.00-1,001.69-17,944,454,416.808.370.00341,128,273,993.70341,128,273,993.700.86
60-7017,939,300.8914,201,734.8979.170.000.00-1,298.21-23,289,014,707.6810.860.00379,167,801,387.70379,167,801,387.700.87
70-8017,925,790.4613,852,018.0077.270.000.00-1,696.48-30,410,689,549.8014.180.00464,545,112,495.95464,545,112,495.950.87
80-9017,913,207.7014,913,455.0083.250.000.00-2,411.60-43,199,458,841.3620.140.00470,895,701,625.30470,895,701,625.300.95
90-10017,942,697.9415,168,395.0884.546,816.920.04-3,356.69-60,228,104,448.7728.080.00744,278,198,955.30744,278,198,955.300.66
ALL179,256,603.79135,717,803.5475.716,816.920.00-1,196.55-214,489,820,765.97100.000.003,339,774,363,037.843,339,774,363,037.840.80
90-958,971,387.027,702,488.1585.860.000.00-3,066.09-27,507,087,951.4012.820.00330,091,159,301.77330,091,159,301.770.89
95-997,177,471.155,865,001.5981.710.000.00-3,623.11-26,004,779,418.6812.120.00359,473,955,893.19359,473,955,893.190.72
Top 1%1,793,839.771,600,905.3389.246,816.920.38-3,744.06-6,716,237,078.693.130.0054,713,083,760.3454,713,083,760.340.30
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_6.json b/webapp/apps/taxbrain/tests/response_year_6.json index f23423ba..0597d9a8 100644 --- a/webapp/apps/taxbrain/tests/response_year_6.json +++ b/webapp/apps/taxbrain/tests/response_year_6.json @@ -1 +1 @@ -{"aggr_1": {"ind_tax_6": "1599680708974.22", "combined_tax_6": "3150429547405.73", "payroll_tax_6": "1550748838431.51"}, "aggr_2": {"ind_tax_6": "2157051302988.43", "combined_tax_6": "4450087844489.12", "payroll_tax_6": "2293036541500.69"}, "diff_ptax_xdec": {"20-30_6": ["18412913.86", "0.00", "0.00", "12981718.00", "70.50", "1421.01", "26164869100.47", "3.52", "341926643067.73", "205934126095.78", "205934126095.78", "50.44"], "0-10n_6": ["98298.53", "0.00", "0.00", "21202.59", "21.57", "291.52", "28656055.33", "0.00", "2211969085.91", "1096584075.94", "1096584075.94", "-6.91"], "0-10p_6": ["17005711.74", "0.00", "0.00", "12533906.51", "73.70", "336.86", "5728515346.33", "0.77", "245578332495.13", "39362712093.23", "39362712093.23", "182.23"], "ALL_6": ["184129204.31", "1519.06", "0.00", "139841560.33", "75.95", "4031.34", "742287703069.18", "100.00", "4191776731142.19", "3450233773581.76", "3450233773581.76", "21.07"], "40-50_6": ["18413258.39", "0.00", "0.00", "14059062.14", "76.35", "2602.12", "47913553150.58", "6.45", "403226220148.83", "293479281500.70", "293479281500.70", "34.85"], "30-40_6": ["18412455.38", "0.00", "0.00", "13449832.30", "73.05", "1933.05", "35592226736.77", "4.79", "368211769321.48", "255921130684.63", "255921130684.63", "41.16"], "70-80_6": ["18412960.14", "0.00", "0.00", "14751972.81", "80.12", "5779.79", "106422959604.67", "14.34", "499745277469.46", "474155902133.49", "474155902133.49", "18.71"], "Top 1%_6": ["1841312.14", "1519.06", "0.08", "1622513.03", "88.12", "12882.55", "23720793639.44", "3.20", "55338281178.26", "78767208566.36", "78767208566.36", "1.71"], "50-60_6": ["18411915.96", "0.00", "0.00", "14404654.39", "78.24", "3399.45", "62590472241.26", "8.43", "433834481571.10", "340718827452.82", "340718827452.82", "29.25"], "0-10z_6": ["1308598.14", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "26498789439.79", "0.00", "0.00", "inf"], "10-20_6": ["18413152.97", "0.00", "0.00", "12006111.85", "65.20", "857.01", "15780321737.37", "2.13", "312507236477.98", "161350319152.26", "161350319152.26", "69.57"], "90-100_6": ["18412986.54", "1519.06", "0.01", "15800139.65", "85.81", "11600.54", "213600505011.60", "28.78", "558684679228.74", "738795004310.58", "738795004310.58", "6.07"], "95-99_6": ["7365494.01", "0.00", "0.00", "6343526.52", "86.12", "12639.68", "93097506451.53", "12.54", "226021875731.29", "340265955795.70", "340265955795.70", "6.07"], "60-70_6": ["18414021.79", "0.00", "0.00", "14650333.26", "79.56", "4419.78", "81385993214.97", "10.96", "466015923740.18", "394427960640.77", "394427960640.77", "24.12"], "90-95_6": ["9206180.39", "0.00", "0.00", "7834100.10", "85.10", "10512.74", "96782204920.64", "13.04", "277324522319.18", "319761839948.53", "319761839948.53", "9.61"], "80-90_6": ["18412930.87", "0.00", "0.00", "15182626.83", "82.46", "7987.84", "147079630869.83", "19.81", "533335409095.88", "544991925441.56", "544991925441.56", "13.73"]}, "diff_comb_xbin": {">$1000K_6": ["512294.82", "138.44", "0.03", "507044.29", "98.98", "22759.86", "11659758539.60", "0.90", "15294539058.21", "15783084226.03", "15783084226.03", "0.84"], "$20-30K_6": ["16268823.24", "0.00", "0.00", "11178826.84", "68.71", "2409.17", "39194348478.35", "3.02", "282404018078.20", "161546617621.04", "161546617621.04", "62.33"], "ALL_6": ["184129204.31", "138.44", "0.00", "156740373.85", "85.13", "7058.40", "1299658297083.39", "100.00", "4191776731142.19", "3450233773581.76", "3450233773581.76", "21.07"], "$200-500K_6": ["17560353.42", "0.00", "0.00", "17017107.50", "96.91", "17866.44", "313740916564.96", "24.14", "532666179505.49", "688899439607.85", "688899439607.85", "7.93"], "<$0K_6": ["98298.53", "0.00", "0.00", "25230.00", "25.67", "484.50", "47625742.07", "0.00", "2211969085.91", "1096584075.94", "1096584075.94", "-6.91"], "$30-40K_6": ["17138533.27", "0.00", "0.00", "13013285.66", "75.93", "3366.89", "57703581601.06", "4.44", "321891415837.85", "199556829870.29", "199556829870.29", "48.42"], "=$0K_6": ["1308598.14", "0.00", "0.00", "389278.32", "29.75", "400.50", "524088291.03", "0.04", "26498789439.79", "0.00", "0.00", "inf"], "$100-200K_6": ["40879810.20", "0.00", "0.00", "38414914.35", "93.97", "11138.41", "455335896883.35", "35.04", "1133482465523.46", "1100614246665.44", "1100614246665.44", "16.64"], "$75-100K_6": ["20742032.74", "0.00", "0.00", "18795710.54", "90.62", "6927.65", "143693493632.09", "11.06", "512525021871.95", "422566553273.12", "422566553273.12", "25.87"], "$500-1000K_6": ["1445756.96", "0.00", "0.00", "1436571.97", "99.36", "22017.50", "31831952498.91", "2.45", "43705866476.62", "70717513217.48", "70717513217.48", "2.73"], "$50-75K_6": ["29592740.19", "0.00", "0.00", "25464747.52", "86.05", "5254.92", "155507406586.24", "11.97", "662462595348.49", "491731245593.92", "491731245593.92", "33.03"], "$0-10K_6": ["11206436.98", "0.00", "0.00", "8966718.61", "80.01", "805.72", "9029216518.49", "0.69", "154741034760.08", "16562160311.91", "16562160311.91", "284.38"], "$40-50K_6": ["15779927.82", "0.00", "0.00", "12619276.45", "79.97", "3940.68", "62183662044.96", "4.78", "316422435573.00", "219003086934.88", "219003086934.88", "40.76"], "$10-20K_6": ["11595598.00", "0.00", "0.00", "8911661.80", "76.85", "1656.35", "19206349702.29", "1.48", "187470400583.15", "62156412183.88", "62156412183.88", "95.95"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"20-30_6": ["18412913.86", "709889398331.34", "17874056.40", "365438780019.40", "530382.58", "12256662416.88", "0.00", "347970274625.68", "37765318320.91", "699449869644.90", "622834.69", "1174084845.98", "38939403166.89", "11247933710.46", "0.00", "5402679119.21", "22288790337.22", "79433697497.89", "101722487835.11", "341926643067.73", "205934126095.78", "205934126095.78", "957028005286.21", "855305517451.10"], "0-10n_6": ["98298.53", "-12774214547.98", "22294.15", "2260970432.83", "65.56", "10702365.96", "0.00", "1083951333.67", "263580015.42", "-12784174030.64", "0.00", "0.00", "263580015.42", "2687400.98", "3065203.20", "295007.10", "263662810.55", "89740522.25", "353403332.80", "2211969085.91", "1096584075.94", "1096584075.94", "-28025199121.06", "-28378602453.86"], "0-10p_6": ["17005711.74", "331827478719.47", "16588338.92", "235938085079.60", "409754.98", "5163283303.57", "0.00", "109337544584.29", "10954550390.19", "327010324749.31", "4412304.43", "4436035623.86", "15390586014.05", "5122554519.05", "0.00", "7944549227.04", "2323482267.95", "17269730791.01", "19593213058.97", "245578332495.13", "39362712093.23", "39362712093.23", "374724265683.34", "355131052624.38"], "ALL_6": ["184129204.31", "18149839545952.07", "158314328.18", "3686793611229.70", "25669892.13", "869885771602.09", "0.00", "13661817593510.01", "2318378775580.60", "17520425386660.80", "8020036.01", "12289225270.33", "2330668000850.92", "156299312246.23", "12383551769.86", "29700937386.12", "2157051302988.43", "2293036541500.68", "4450087844489.12", "4191776731142.19", "3450233773581.76", "3450233773581.76", "22701530160532.24", "18251442316043.12"], "40-50_6": ["18413258.39", "1104126078471.70", "17440996.86", "404010576674.13", "964110.02", "23886631106.80", "0.00", "681346833608.08", "80621547725.28", "1085215543875.30", "271228.36", "704972475.86", "81326520201.15", "16758726907.28", "0.00", "1741895279.49", "62825898014.38", "145066818646.30", "207892716660.68", "403226220148.83", "293479281500.70", "293479281500.70", "1468522180412.42", "1260629463751.74"], "30-40_6": ["18412455.38", "875932285467.32", "17692162.47", "383220090311.24", "711021.89", "16400266428.65", "0.00", "485788228218.73", "54024064869.39", "862467750158.07", "388130.70", "813841358.78", "54837906228.18", "13499770666.43", "0.00", "2688699335.90", "38649436225.85", "108019176470.52", "146668612696.37", "368211769321.48", "255921130684.63", "255921130684.63", "1189100612236.87", "1042431999540.49"], "70-80_6": ["18412960.14", "2218262965542.62", "14655423.68", "413352204764.26", "3753412.23", "119976262168.79", "0.00", "1683741672669.96", "245127070821.90", "2133599502957.53", "58337.59", "223192727.20", "245350263549.10", "21157126073.74", "0.00", "329372768.87", "223863764706.49", "321414975430.85", "545278740137.34", "499745277469.46", "474155902133.49", "474155902133.49", "2825237648398.08", "2279958908260.74"], "Top 1%_6": ["1841312.14", "1884115847828.27", "552587.46", "16959412940.12", "1288585.26", "65264247983.86", "0.00", "1795242361097.34", "487100129268.75", "1833528051434.09", "98897.66", "1137346080.65", "488237475349.41", "135199866.27", "9589124994.65", "20432538.79", "497670967939.00", "103174587407.62", "600845555346.62", "55338281178.26", "78767208566.36", "78767208566.36", "2036122817118.85", "1435277261772.23"], "50-60_6": ["18411915.96", "1381305919173.96", "16873490.87", "418181761941.30", "1531520.98", "40615285597.65", "0.00", "925912494756.47", "118454866690.29", "1350340524861.59", "164246.96", "508175608.97", "118963042299.26", "18504654356.05", "0.00", "1074142408.85", "99384245534.36", "189264227897.60", "288648473431.96", "433834481571.10", "340718827452.82", "340718827452.82", "1806743933711.94", "1518095460279.98"], "0-10z_6": ["1308598.14", "26481885836.53", "1296278.70", "28938799985.02", "11973.75", "19504302.78", "0.00", "2558043766.98", "265478622.51", "26464907138.11", "331890.08", "486003919.69", "751482542.20", "227394251.18", "0.00", "0.00", "524088291.03", "0.00", "524088291.03", "26498789439.79", "0.00", "0.00", "26498789439.79", "25974701148.77"], "10-20_6": ["18413152.97", "536431094876.08", "18065329.33", "347531154046.26", "340433.67", "6422002833.55", "0.00", "207757398181.93", "21735463695.19", "530773436764.08", "1352731.38", "1801866250.63", "23537329945.83", "7352963416.96", "0.00", "9528247312.48", "6656119216.38", "47697384854.67", "54353504071.05", "312507236477.98", "161350319152.26", "161350319152.26", "718023727154.89", "663670223083.83"], "90-100_6": ["18412986.54", "6252238988580.77", "9276642.54", "287854770277.97", "9131991.31", "369096396429.34", "0.00", "5574256391047.60", "1196777821473.06", "5985643394185.96", "225071.14", "1523631563.21", "1198301453036.26", "19719791943.26", "12373200148.60", "152292348.96", "1190802568892.63", "694049602478.46", "1884852171371.09", "558684679228.74", "738795004310.58", "738795004310.58", "7390118627207.88", "5505266455836.79"], "95-99_6": ["7365494.01", "2340997524956.93", "3460932.06", "107325105584.86", "3903716.08", "156754770556.50", "0.00", "2068143401222.09", "406624501672.16", "2228160515237.50", "84182.91", "283852992.33", "406908354664.49", "8102684644.25", "2357642239.17", "62502382.44", "401100809876.98", "295191165125.31", "696291975002.29", "226021875731.29", "340265955795.70", "340265955795.70", "2853941163882.59", "2157649188880.30"], "60-70_6": ["18414021.79", "1747330589945.08", "15963370.74", "424840156126.37", "2444517.08", "69969405670.46", "0.00", "1252971496060.17", "168627304043.09", "1696284776407.44", "94770.46", "364550011.69", "168991854054.78", "20063814398.40", "0.00", "627394478.19", "148300645178.19", "245931737269.54", "394232382447.74", "466015923740.18", "394427960640.77", "394427960640.77", "2243756527131.41", "1849524144683.67"], "90-95_6": ["9206180.39", "2027125615795.56", "5263123.02", "163570251752.99", "3939689.97", "147077377888.97", "0.00", "1710870628728.16", "303053190532.14", "1923954827514.38", "41990.57", "102432490.22", "303155623022.36", "11481907432.74", "426432914.78", "69357427.73", "292030791076.66", "295683849945.52", "587714641022.19", "277324522319.18", "319761839948.53", "319761839948.53", "2500054646206.44", "1912340005184.26"], "80-90_6": ["18412930.87", "2978787075555.20", "12565943.52", "375226261571.31", "5840708.08", "206069368977.67", "0.00", "2389093264656.44", "383761708913.35", "2835959529949.16", "98490.22", "252870884.45", "384014579797.80", "22641894602.46", "7286418.06", "211370100.03", "361168601513.38", "444799449641.59", "805968051154.98", "533335409095.88", "544991925441.56", "544991925441.56", "3729801042990.46", "2923832991835.48"]}, "aggr_d": {"ind_tax_6": "557370594014.21", "combined_tax_6": "1299658297083.39", "payroll_tax_6": "742287703069.18"}, "dropq_version": "0.17.0", "dist1_xdec": {"20-30_6": ["18412913.86", "369009102509.75", "14592383.71", "296634468117.13", "678237.44", "14887928080.63", "0.00", "148292489462.69", "15209086581.38", "356508625663.71", "39518.59", "61315968.67", "15270402550.05", "3940314816.72", "0.00", "22666265418.90", "-11336177685.57", "53268828397.42", "41932650711.85", "0.00", "213341441146.45", "213341441146.45", "610470043345.05", "568537392633.20"], "0-10n_6": ["98298.53", "-14983168445.61", "6603.25", "1892185977.28", "65.56", "10702365.96", "0.00", "984522254.93", "242890621.01", "-14993127928.27", "0.00", "0.00", "242890621.01", "1051740.37", "3065203.20", "210960.03", "244693123.81", "61084466.92", "305777590.73", "0.00", "1164282631.27", "1164282631.27", "-30180782491.02", "-30486560081.75"], "0-10p_6": ["17005711.74", "86264605492.50", "14335101.05", "197868287234.69", "39364.85", "439074720.58", "0.00", "3355374264.84", "223777452.08", "85847238998.56", "9643.26", "5296094.57", "229073546.65", "95873566.46", "0.00", "9910619891.67", "-9777419911.48", "11541215444.68", "1763795533.21", "0.00", "40660134835.00", "40660134835.00", "127594557524.98", "125830761991.77"], "ALL_6": ["184129204.31", "13973059277798.35", "127690908.93", "2820314103494.12", "36853433.51", "1153734875347.69", "0.00", "10625465856178.30", "1802621722110.83", "13158367811910.53", "491842.07", "2219807560.14", "1804841529670.97", "112138387757.82", "11690666895.83", "104713099834.77", "1599680708974.22", "1550748838431.51", "3150429547405.73", "0.00", "3522100198170.20", "3522100198170.20", "18225132021623.54", "15074702474217.81"], "40-50_6": ["18413258.39", "702175880443.87", "15072064.53", "323961135491.40", "1650187.79", "35846123774.86", "0.00", "404189382682.11", "43862587252.95", "674802618451.52", "30794.75", "129553102.85", "43992140355.80", "9655545285.99", "0.00", "14292134863.26", "20044460206.55", "97153265495.72", "117197725702.27", "0.00", "302979195216.75", "302979195216.75", "1052059964128.66", "934862238426.39"], "30-40_6": ["18412455.38", "509101472722.01", "15047282.45", "310986654276.64", "981998.86", "20922072558.22", "0.00", "255538281458.99", "27180178022.68", "492287401141.36", "25583.94", "58182590.08", "27238360612.76", "6320937462.63", "0.00", "18252279043.08", "2665144107.04", "72426949733.75", "75092093840.80", "0.00", "265019338545.61", "265019338545.61", "813549487758.55", "738457393917.75"], "70-80_6": ["18412960.14", "1719863473657.97", "11412383.53", "295875727250.25", "6219345.89", "180297174740.49", "0.00", "1271532803168.04", "167461349554.99", "1595927781722.27", "25744.71", "114004301.33", "167575353856.32", "19274602600.42", "0.00", "2669462705.40", "145631288550.50", "214992015826.17", "360623304376.67", "0.00", "481761547617.07", "481761547617.07", "2281195279654.89", "1920571975278.22"], "Top 1%_6": ["1841312.14", "1830684784302.56", "437368.84", "11704818554.66", "1394135.95", "68350237588.54", "0.00", "1744159211869.27", "469972868991.31", "1778164130182.66", "97104.92", "1062856161.44", "471035725152.75", "100632420.88", "9516773528.53", "104972560.18", "480346893700.21", "79453793768.18", "559800687468.40", "0.00", "79016014073.15", "79016014073.15", "1971012640874.75", "1411211953406.35"], "50-60_6": ["18412754.24", "948765769545.96", "14258268.81", "326219526473.16", "2805397.03", "66059629722.48", "0.00", "607513895375.07", "72122246736.62", "900117508873.63", "39603.54", "145585928.76", "72267832665.38", "13190134869.57", "0.00", "8795313903.56", "50282383892.25", "126683654213.40", "176966038105.65", "0.00", "349431369644.14", "349431369644.14", "1351570828411.79", "1174604790306.14"], "0-10z_6": ["1308598.14", "-16903603.26", "0.00", "24248403330.66", "0.00", "0.00", "0.00", "0.00", "0.00", "-16903603.26", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "10-20_6": ["18413152.97", "224184948817.33", "13653709.28", "282934729261.92", "358264.50", "7471632909.58", "0.00", "53296789302.95", "5106257128.04", "217611982408.30", "51404.48", "46412974.74", "5152670102.77", "1302415954.52", "0.00", "20601038419.61", "-16750784271.36", "31917063117.31", "15166278845.94", "0.00", "170019701407.73", "170019701407.73", "406556802482.92", "391390523636.98"], "90-100_6": ["18412986.54", "5698574712765.83", "6839172.70", "191041868019.48", "11225308.25", "430405122972.47", "0.00", "5067781412724.99", "1071831259880.31", "5393217670111.40", "189885.48", "1392831341.06", "1073224091221.38", "20087631608.01", "11687533873.88", "997839977.56", "1063826153509.69", "480449097466.85", "1544275250976.54", "0.00", "743493796534.91", "743493796534.91", "6734258137879.91", "5189982886903.37"], "95-99_6": ["7365494.01", "2116773534097.48", "2529381.62", "71513046236.44", "4668868.72", "179290394185.72", "0.00", "1862063057709.80", "355713618517.84", "1989820385433.53", "64927.20", "264881575.20", "355978500093.04", "8709098441.45", "2033226645.12", "409439499.56", "348893188797.15", "202093658673.78", "550986847470.93", "0.00", "342218421506.29", "342218421506.29", "2585104347262.18", "2034117499791.25"], "60-70_6": ["18413183.51", "1282532945216.06", "13245740.04", "319422043874.72", "4237429.61", "112839049165.69", "0.00", "887643457716.42", "113481661263.75", "1201688267955.32", "32426.42", "133803675.73", "113615464939.49", "16519421607.47", "0.00", "5189971444.67", "91906071887.34", "164535845497.52", "256441917384.86", "0.00", "402668701976.06", "402668701976.06", "1746452154034.08", "1490010236649.21"], "90-95_6": ["9206180.39", "1751116394365.79", "3872422.24", "107824003228.39", "5162303.58", "182764491198.21", "0.00", "1461559143145.92", "246144772371.16", "1625233154495.21", "27853.36", "65093604.42", "246209865975.58", "11277900745.68", "137533700.23", "483427917.82", "234586071012.32", "198901645024.89", "433487716037.21", "0.00", "322259360955.48", "322259360955.48", "2178141149742.98", "1744653433705.77"], "80-90_6": ["18412930.87", "2447586438675.92", "9228199.58", "249229074186.78", "8657833.73", "284556364336.71", "0.00", "1925337447767.28", "285900427617.02", "2255368748115.99", "47236.90", "132821582.36", "286033249199.38", "21750458245.66", "67818.75", "1337963207.03", "262944895565.44", "297719818771.76", "560664714337.20", "0.00", "551560688615.21", "551560688615.21", "3131605548893.72", "2570940834556.52"]}, "diff_comb_xdec": {"20-30_6": ["18412913.86", "0.00", "0.00", "13818157.52", "75.05", "3247.17", "59789837123.27", "4.60", "341926643067.73", "205934126095.78", "205934126095.78", "50.44"], "0-10n_6": ["98298.53", "0.00", "0.00", "25230.00", "25.67", "484.50", "47625742.07", "0.00", "2211969085.91", "1096584075.94", "1096584075.94", "-6.91"], "0-10p_6": ["17005711.74", "0.00", "0.00", "13748591.24", "80.85", "1048.44", "17829417525.76", "1.37", "245578332495.13", "39362712093.23", "39362712093.23", "182.23"], "ALL_6": ["184129204.31", "138.44", "0.00", "156740373.85", "85.13", "7058.40", "1299658297083.39", "100.00", "4191776731142.19", "3450233773581.76", "3450233773581.76", "21.07"], "40-50_6": ["18413258.39", "0.00", "0.00", "15655557.82", "85.02", "4925.53", "90694990958.41", "6.98", "403226220148.83", "293479281500.70", "293479281500.70", "34.85"], "30-40_6": ["18412455.38", "0.00", "0.00", "14610935.42", "79.35", "3887.40", "71576518855.58", "5.51", "368211769321.48", "255921130684.63", "255921130684.63", "41.16"], "70-80_6": ["18412960.14", "0.00", "0.00", "17140388.26", "93.09", "10028.56", "184655435760.67", "14.21", "499745277469.46", "474155902133.49", "474155902133.49", "18.71"], "Top 1%_6": ["1841312.14", "138.44", "0.01", "1829045.40", "99.33", "22291.10", "41044867878.22", "3.16", "55338281178.26", "78767208566.36", "78767208566.36", "1.71"], "50-60_6": ["18411915.96", "0.00", "0.00", "16269369.08", "88.36", "6066.95", "111704158526.61", "8.59", "433834481571.10", "340718827452.82", "340718827452.82", "29.25"], "0-10z_6": ["1308598.14", "0.00", "0.00", "389278.32", "29.75", "400.50", "524088291.03", "0.04", "26498789439.79", "0.00", "0.00", "inf"], "10-20_6": ["18413152.97", "0.00", "0.00", "12725152.16", "69.11", "2128.22", "39187225225.11", "3.02", "312507236477.98", "161350319152.26", "161350319152.26", "69.57"], "90-100_6": ["18412986.54", "138.44", "0.00", "17890699.30", "97.16", "18496.56", "340576920394.55", "26.21", "558684679228.74", "738795004310.58", "738795004310.58", "6.07"], "95-99_6": ["7365494.01", "0.00", "0.00", "7124144.34", "96.72", "19727.82", "145305127531.35", "11.18", "226021875731.29", "340265955795.70", "340265955795.70", "6.07"], "60-70_6": ["18414021.79", "0.00", "0.00", "16859318.42", "91.56", "7481.73", "137768741862.57", "10.60", "466015923740.18", "394427960640.77", "394427960640.77", "24.12"], "90-95_6": ["9206180.39", "0.00", "0.00", "8937509.56", "97.08", "16752.54", "154226924984.98", "11.87", "277324522319.18", "319761839948.53", "319761839948.53", "9.61"], "80-90_6": ["18412930.87", "0.00", "0.00", "17607696.31", "95.63", "13322.34", "245303336817.78", "18.87", "533335409095.88", "544991925441.56", "544991925441.56", "13.73"]}, "diff_ptax_xbin": {">$1000K_6": ["512294.82", "1519.06", "0.30", "460797.39", "89.95", "12734.11", "6523619115.60", "0.88", "15294539058.21", "15783084226.03", "15783084226.03", "0.84"], "$20-30K_6": ["16268823.24", "0.00", "0.00", "10555463.78", "64.88", "983.70", "16003622870.35", "2.16", "282404018078.20", "161546617621.04", "161546617621.04", "62.33"], "ALL_6": ["184129204.31", "1519.06", "0.00", "139841560.33", "75.95", "4031.34", "742287703069.18", "100.00", "4191776731142.19", "3450233773581.76", "3450233773581.76", "21.07"], "$200-500K_6": ["17560353.42", "0.00", "0.00", "15022327.94", "85.55", "11316.15", "198715541671.25", "26.77", "532666179505.49", "688899439607.85", "688899439607.85", "7.93"], "<$0K_6": ["98298.53", "0.00", "0.00", "21202.59", "21.57", "291.52", "28656055.33", "0.00", "2211969085.91", "1096584075.94", "1096584075.94", "-6.91"], "$30-40K_6": ["17138533.27", "0.00", "0.00", "12166980.86", "70.99", "1496.22", "25643041225.83", "3.45", "321891415837.85", "199556829870.29", "199556829870.29", "48.42"], "=$0K_6": ["1308598.14", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "26498789439.79", "0.00", "0.00", "inf"], "$100-200K_6": ["40879810.20", "0.00", "0.00", "33092261.88", "80.95", "6558.76", "268120717931.70", "36.12", "1133482465523.46", "1100614246665.44", "1100614246665.44", "16.64"], "$75-100K_6": ["20742032.74", "0.00", "0.00", "16439669.83", "79.26", "4042.99", "83859812825.46", "11.30", "512525021871.95", "422566553273.12", "422566553273.12", "25.87"], "$500-1000K_6": ["1445756.96", "0.00", "0.00", "1255024.90", "86.81", "12914.68", "18671485253.93", "2.52", "43705866476.62", "70717513217.48", "70717513217.48", "2.73"], "$50-75K_6": ["29592740.19", "0.00", "0.00", "22767635.20", "76.94", "2827.66", "83678231879.29", "11.27", "662462595348.49", "491731245593.92", "491731245593.92", "33.03"], "$0-10K_6": ["11206436.98", "0.00", "0.00", "8025222.25", "71.61", "208.58", "2337444197.13", "0.31", "154741034760.08", "16562160311.91", "16562160311.91", "284.38"], "$40-50K_6": ["15779927.82", "0.00", "0.00", "11627090.51", "73.68", "1979.06", "31229358070.11", "4.21", "316422435573.00", "219003086934.88", "219003086934.88", "40.76"], "$10-20K_6": ["11595598.00", "0.00", "0.00", "8407883.20", "72.51", "644.74", "7476171973.21", "1.01", "187470400583.15", "62156412183.88", "62156412183.88", "95.95"]}, "dist2_xbin": {">$1000K_6": ["512294.82", "1039894960839.60", "87980.06", "2576367383.28", "424188.02", "25475780285.88", "0.00", "1008933829426.12", "295878865571.70", "1019224588493.11", "67744.52", "995493211.48", "296874358783.18", "10810573.62", "7703027766.31", "22174.19", "304566553801.68", "39816348116.44", "344382901918.12", "15294539058.21", "15783084226.03", "15783084226.03", "1086001977576.38", "741619075658.26"], "$20-30K_6": ["16268823.24", "507413438882.11", "15952692.13", "312118226742.49", "311099.46", "6458155912.36", "0.00", "210646397488.19", "22355005332.19", "501820979739.66", "808798.48", "1323507632.35", "23678512964.54", "7326535295.31", "0.00", "7237589717.05", "9114387952.17", "48460119796.45", "57574507748.62", "282404018078.20", "161546617621.04", "161546617621.04", "691697143418.37", "634122635669.75"], "ALL_6": ["184129204.31", "18149839545952.07", "158314328.18", "3686793611229.70", "25669892.13", "869885771602.09", "0.00", "13661817593510.01", "2318378775580.60", "17520425386660.80", "8020036.01", "12289225270.33", "2330668000850.92", "156299312246.23", "12383551769.86", "29700937386.12", "2157051302988.43", "2293036541500.69", "4450087844489.12", "4191776731142.19", "3450233773581.76", "3450233773581.76", "22701530160532.24", "18251442316043.12"], "$200-500K_6": ["17560353.42", "4525460446206.24", "9358908.02", "290458068512.81", "8195991.49", "316308242677.49", "0.00", "3904101922690.76", "728512401480.87", "4300810307781.62", "127950.88", "386295760.54", "728898697241.42", "20908140781.04", "2696732005.40", "138773206.50", "710548515259.28", "617222073832.91", "1327770589092.19", "532666179505.49", "688899439607.85", "688899439607.85", "5552437216963.81", "4224666627871.62"], "<$0K_6": ["98298.53", "-12774214547.98", "22294.15", "2260970432.83", "65.56", "10702365.96", "0.00", "1083951333.67", "263580015.42", "-12784174030.64", "0.00", "0.00", "263580015.42", "2687400.98", "3065203.20", "295007.10", "263662810.55", "89740522.25", "353403332.80", "2211969085.91", "1096584075.94", "1096584075.94", "-28025199121.06", "-28378602453.86"], "$30-40K_6": ["17138533.27", "683873863602.86", "16604347.66", "342761752919.99", "527151.29", "12105751603.69", "0.00", "342286117939.23", "37279818380.66", "673617192627.56", "524746.45", "1026582038.73", "38306400419.39", "10901576896.57", "0.00", "4529452865.08", "22875370657.73", "77865217634.41", "100740588292.15", "321891415837.85", "199556829870.29", "199556829870.29", "924170488474.13", "823429900181.98"], "=$0K_6": ["1308598.14", "26481885836.53", "1296278.70", "28938799985.02", "11973.75", "19504302.78", "0.00", "2558043766.98", "265478622.51", "26464907138.11", "331890.08", "486003919.69", "751482542.20", "227394251.18", "0.00", "0.00", "524088291.03", "0.00", "524088291.03", "26498789439.79", "0.00", "0.00", "26498789439.79", "25974701148.77"], "$100-200K_6": ["40879810.20", "5516474831599.16", "30862082.70", "885011540666.96", "10006974.63", "334768726278.97", "0.00", "4287459838778.39", "653299555177.27", "5282476902184.04", "172806.80", "570534820.27", "653870089997.54", "48282148256.96", "2957013.94", "677438568.85", "604913460185.67", "810250341925.62", "1415163802111.29", "1133482465523.46", "1100614246665.44", "1100614246665.44", "6972059861152.32", "5556896059041.03"], "$75-100K_6": ["20742032.74", "1816137535574.16", "18438134.08", "479430215393.63", "2298185.29", "64115719487.00", "0.00", "1274200967495.90", "168334836870.67", "1768676181359.31", "136014.05", "455561380.44", "168790398251.11", "21810406489.88", "0.00", "826839649.49", "146153152111.74", "253448585034.58", "399601737146.32", "512525021871.95", "422566553273.12", "422566553273.12", "2345112920177.85", "1945511183031.53"], "$500-1000K_6": ["1445756.96", "896848812920.02", "516809.41", "16094382690.45", "928811.87", "42723685237.71", "0.00", "833986943513.02", "201288880714.87", "864743791179.94", "34192.39", "153286214.67", "201442166929.54", "136362464.41", "1977769781.00", "20779275.58", "203262794970.54", "68287531810.47", "271550326781.02", "43705866476.62", "70717513217.48", "70717513217.48", "1013584910707.59", "742034583926.58"], "$50-75K_6": ["29592740.19", "1900776550584.63", "27750661.67", "655316851856.47", "1828155.97", "46547675909.29", "0.00", "1206484898883.42", "146937566022.04", "1864400332148.46", "377440.94", "1021159611.35", "147958725633.39", "27874694726.49", "0.00", "2494743727.02", "117589287179.88", "253251017641.27", "370840304821.15", "662462595348.49", "491731245593.92", "491731245593.92", "2513203946755.60", "2142363641934.45"], "$0-10K_6": ["11206436.98", "190600048500.35", "10940150.53", "135301366403.44", "262358.03", "2996426316.81", "0.00", "65926905724.55", "6637474158.51", "187775139603.06", "2762507.05", "3035808266.72", "9673282425.23", "3278559597.14", "0.00", "3183135832.17", "3211586995.92", "7045420543.75", "10257007539.67", "154741034760.08", "16562160311.91", "16562160311.91", "208480028127.23", "198223020587.56"], "$40-50K_6": ["15779927.82", "761741694300.23", "15157264.78", "328730450234.76", "614174.84", "14173017188.26", "0.00", "426613478507.05", "47511936338.37", "750116382511.30", "332541.25", "690533872.82", "48202470211.19", "11673584733.29", "0.00", "2219418917.10", "34309466560.80", "94745981258.20", "129055447819.00", "316422435573.00", "219003086934.88", "219003086934.88", "1030907460832.21", "901852013013.21"], "$10-20K_6": ["11595598.00", "296909691654.16", "11326724.29", "207794618007.56", "260761.93", "4182384035.89", "0.00", "97534297962.74", "9813376895.50", "293082855925.29", "2343403.12", "2144458541.27", "11957835436.78", "3866410779.37", "0.00", "8372448445.99", "-281023788.57", "22554163384.33", "22273139595.76", "187470400583.15", "62156412183.88", "62156412183.88", "365400616028.00", "343127476432.24"]}, "diff_itax_xdec": {"20-30_6": ["18412913.86", "11150.57", "0.06", "13480301.03", "73.21", "1826.16", "33624968022.80", "6.03", "341926643067.73", "205934126095.78", "205934126095.78", "50.44"], "0-10n_6": ["98298.53", "867.29", "0.88", "6006.67", "6.11", "192.98", "18969686.74", "0.00", "2211969085.91", "1096584075.94", "1096584075.94", "-6.91"], "0-10p_6": ["17005711.74", "359491.58", "2.11", "9720324.11", "57.16", "711.58", "12100902179.43", "2.17", "245578332495.13", "39362712093.23", "39362712093.23", "182.23"], "ALL_6": ["184129204.31", "431546.49", "0.23", "151049588.87", "82.03", "3027.06", "557370594014.21", "100.00", "4191776731142.19", "3450233773581.76", "3450233773581.76", "21.07"], "40-50_6": ["18413258.39", "1971.23", "0.01", "15522070.76", "84.30", "2323.40", "42781437807.83", "7.68", "403226220148.83", "293479281500.70", "293479281500.70", "34.85"], "30-40_6": ["18412455.38", "10514.65", "0.06", "14364749.71", "78.02", "1954.35", "35984292118.81", "6.46", "368211769321.48", "255921130684.63", "255921130684.63", "41.16"], "70-80_6": ["18412960.14", "2163.71", "0.01", "17071876.71", "92.72", "4248.77", "78232476155.99", "14.04", "499745277469.46", "474155902133.49", "474155902133.49", "18.71"], "Top 1%_6": ["1841312.14", "40.89", "0.00", "1828759.87", "99.32", "9408.55", "17324074238.78", "3.11", "55338281178.26", "78767208566.36", "78767208566.36", "1.71"], "50-60_6": ["18411915.96", "701.48", "0.00", "16164959.86", "87.80", "2667.49", "49113686285.36", "8.81", "433834481571.10", "340718827452.82", "340718827452.82", "29.25"], "0-10z_6": ["1308598.14", "0.00", "0.00", "389278.32", "29.75", "400.50", "524088291.03", "0.09", "26498789439.79", "0.00", "0.00", "inf"], "10-20_6": ["18413152.97", "34491.67", "0.19", "12151319.45", "65.99", "1271.21", "23406903487.74", "4.20", "312507236477.98", "161350319152.26", "161350319152.26", "69.57"], "90-100_6": ["18412986.54", "197.11", "0.00", "17860194.46", "97.00", "6896.02", "126976415382.95", "22.78", "558684679228.74", "738795004310.58", "738795004310.58", "6.07"], "95-99_6": ["7365494.01", "108.58", "0.00", "7114016.36", "96.59", "7088.14", "52207621079.83", "9.37", "226021875731.29", "340265955795.70", "340265955795.70", "6.07"], "60-70_6": ["18414021.79", "8565.01", "0.05", "16752549.19", "90.98", "3061.95", "56382748647.60", "10.12", "466015923740.18", "394427960640.77", "394427960640.77", "24.12"], "90-95_6": ["9206180.39", "47.64", "0.00", "8917418.23", "96.86", "6239.80", "57444720064.34", "10.31", "277324522319.18", "319761839948.53", "319761839948.53", "9.61"], "80-90_6": ["18412930.87", "1432.19", "0.01", "17565958.60", "95.40", "5334.50", "98223705947.94", "17.62", "533335409095.88", "544991925441.56", "544991925441.56", "13.73"]}, "diff_itax_xbin": {">$1000K_6": ["512294.82", "0.00", "0.00", "506966.05", "98.96", "10025.75", "5136139424.00", "0.92", "15294539058.21", "15783084226.03", "15783084226.03", "0.84"], "$20-30K_6": ["16268823.24", "16565.10", "0.10", "10771231.42", "66.21", "1425.47", "23190725608.00", "4.16", "282404018078.20", "161546617621.04", "161546617621.04", "62.33"], "ALL_6": ["184129204.31", "431546.49", "0.23", "151049588.87", "82.03", "3027.06", "557370594014.21", "100.00", "4191776731142.19", "3450233773581.76", "3450233773581.76", "21.07"], "$200-500K_6": ["17560353.42", "169.85", "0.00", "16983674.04", "96.72", "6550.29", "115025374893.71", "20.64", "532666179505.49", "688899439607.85", "688899439607.85", "7.93"], "<$0K_6": ["98298.53", "867.29", "0.88", "6006.67", "6.11", "192.98", "18969686.74", "0.00", "2211969085.91", "1096584075.94", "1096584075.94", "-6.91"], "$30-40K_6": ["17138533.27", "10314.42", "0.06", "12715486.03", "74.19", "1870.67", "32060540375.23", "5.75", "321891415837.85", "199556829870.29", "199556829870.29", "48.42"], "=$0K_6": ["1308598.14", "0.00", "0.00", "389278.32", "29.75", "400.50", "524088291.03", "0.09", "26498789439.79", "0.00", "0.00", "inf"], "$100-200K_6": ["40879810.20", "5716.26", "0.01", "38282881.81", "93.65", "4579.65", "187215178951.65", "33.59", "1133482465523.46", "1100614246665.44", "1100614246665.44", "16.64"], "$75-100K_6": ["20742032.74", "7132.50", "0.03", "18677602.28", "90.05", "2884.66", "59833680806.63", "10.73", "512525021871.95", "422566553273.12", "422566553273.12", "25.87"], "$500-1000K_6": ["1445756.96", "40.89", "0.00", "1436206.20", "99.34", "9102.82", "13160467244.99", "2.36", "43705866476.62", "70717513217.48", "70717513217.48", "2.73"], "$50-75K_6": ["29592740.19", "2694.10", "0.01", "25260970.27", "85.36", "2427.26", "71829174706.95", "12.89", "662462595348.49", "491731245593.92", "491731245593.92", "33.03"], "$0-10K_6": ["11206436.98", "327958.90", "2.93", "5656160.29", "50.47", "597.14", "6691772321.36", "1.20", "154741034760.08", "16562160311.91", "16562160311.91", "284.38"], "$40-50K_6": ["15779927.82", "6784.19", "0.04", "12411482.92", "78.65", "1961.63", "30954303974.85", "5.55", "316422435573.00", "219003086934.88", "219003086934.88", "40.76"], "$10-20K_6": ["11595598.00", "53302.99", "0.46", "7951642.57", "68.57", "1011.61", "11730177729.08", "2.10", "187470400583.15", "62156412183.88", "62156412183.88", "95.95"]}, "dist1_xbin": {">$1000K_6": ["512294.82", "1025318395780.46", "68729.72", "1806801596.55", "439190.31", "25902424406.78", "0.00", "994769949308.91", "290845376128.35", "1004383280943.71", "67601.76", "913723874.38", "291759100002.73", "10507626.54", "7681873377.47", "51375.98", "299430414377.67", "33292729000.84", "332723143378.52", "0.00", "15842060764.54", "15842060764.54", "1068176632446.11", "735453489067.59"], "$20-30K_6": ["16268823.24", "225428258860.27", "12101317.51", "253273867975.40", "393308.63", "8213090320.79", "0.00", "66381922110.04", "6467151370.67", "218363562544.22", "39465.08", "41372095.58", "6508523466.26", "1656969094.80", "0.00", "18927892027.29", "-14076337655.83", "32456496926.10", "18380159270.27", "0.00", "168862319741.69", "168862319741.69", "409025854082.00", "390645694811.73"], "ALL_6": ["184129204.31", "13973059277798.35", "127690908.93", "2820314103494.12", "36853433.51", "1153734875347.69", "0.00", "10625465856178.30", "1802621722110.83", "13158367811910.53", "491842.07", "2219807560.14", "1804841529670.97", "112138387757.82", "11690666895.83", "104713099834.77", "1599680708974.22", "1550748838431.51", "3150429547405.73", "0.00", "3522100198170.20", "3522100198170.20", "18225132021623.54", "15074702474217.81"], "$200-500K_6": ["17560353.42", "3995963441429.33", "6859335.88", "191989214795.47", "10340947.40", "379069709163.22", "0.00", "3422787511574.36", "615354989869.14", "3731589612665.91", "91661.12", "319813651.29", "615674803520.43", "21280071987.55", "2083792012.09", "955383179.41", "595523140365.57", "418506532161.66", "1014029672527.24", "0.00", "693641831731.72", "693641831731.72", "4928298055505.06", "3914268382977.82"], "<$0K_6": ["98298.53", "-14983168445.61", "6603.25", "1892185977.28", "65.56", "10702365.96", "0.00", "984522254.93", "242890621.01", "-14993127928.27", "0.00", "0.00", "242890621.01", "1051740.37", "3065203.20", "210960.03", "244693123.81", "61084466.92", "305777590.73", "0.00", "1164282631.27", "1164282631.27", "-30180782491.02", "-30486560081.75"], "$30-40K_6": ["17138533.27", "363036563777.60", "13711803.02", "278727883205.40", "645954.51", "14174810615.10", "0.00", "151920555717.46", "15704758722.06", "351201239261.02", "39502.62", "65138746.88", "15769897468.93", "4063271010.83", "0.00", "20891796175.60", "-9185169717.49", "52222176408.58", "43037006691.09", "0.00", "206898225047.21", "206898225047.21", "597849538874.65", "554812532183.57"], "=$0K_6": ["1308598.14", "-16903603.26", "0.00", "24248403330.66", "0.00", "0.00", "0.00", "0.00", "0.00", "-16903603.26", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$100-200K_6": ["40879810.20", "4386701776657.81", "23672776.02", "618862902486.18", "15671688.56", "481937148073.27", "0.00", "3334283584773.03", "467292345769.05", "4058048613436.46", "76104.18", "282398568.08", "467574744337.14", "44706699985.03", "0.00", "5169763118.08", "417698281234.02", "542129623993.93", "959827905227.95", "0.00", "1116572591778.48", "1116572591778.48", "5724110358239.68", "4764282453011.73"], "$75-100K_6": ["20742032.74", "1305008401476.23", "15441602.09", "365110150866.10", "4116277.43", "105992639894.08", "0.00", "881101127812.62", "110367507604.46", "1228318679201.46", "44937.51", "152429403.28", "110519937007.75", "17195071583.55", "0.00", "7005394119.09", "86319471305.11", "169588772209.13", "255908243514.23", "0.00", "432098640699.01", "432098640699.01", "1801533802195.16", "1545625558680.93"], "$500-1000K_6": ["1445756.96", "854411325955.87", "409522.26", "11109125792.08", "1028923.05", "45679959451.02", "0.00", "793768001307.16", "188230974922.35", "820444348190.59", "33018.88", "164253668.67", "188395228591.02", "107863950.87", "1921936303.07", "106973217.67", "190102327725.56", "49616046556.54", "239718374282.10", "0.00", "70975904726.35", "70975904726.35", "962047670439.91", "722329296157.81"], "$50-75K_6": ["29592740.19", "1240365001061.64", "23811961.07", "521289258037.22", "3218348.52", "71815192839.21", "0.00", "741685436705.29", "83039090669.35", "1186304918468.31", "52368.35", "215980766.38", "83255071435.72", "17274373164.38", "0.00", "20220585798.41", "45760112472.93", "169572785761.98", "215332898234.91", "0.00", "506613058665.85", "506613058665.85", "1825741198194.53", "1610408299959.62"], "$0-10K_6": ["11206436.98", "35863106194.14", "9383008.89", "114049883995.22", "26369.47", "228255159.17", "0.00", "2192569953.56", "153369521.53", "35642234344.70", "249.04", "56124.30", "153425645.83", "66297695.55", "0.00", "3567313275.71", "-3480185325.44", "4707976346.62", "1227791021.18", "0.00", "16785119248.82", "16785119248.82", "52797322659.37", "51569531638.19"], "$40-50K_6": ["15779927.82", "446475921452.95", "12947227.82", "266496741158.46", "865801.76", "18467034031.01", "0.00", "227022422789.36", "24184196023.39", "431647783160.68", "20762.41", "48290363.19", "24232486386.58", "5558676501.59", "0.00", "15318647299.03", "3355162585.96", "63516623188.09", "66871785774.05", "0.00", "226552788892.61", "226552788892.61", "707555413831.15", "640683628057.10"], "$10-20K_6": ["11595598.00", "109487157200.91", "9277021.40", "171457684278.10", "106558.31", "2243909028.07", "0.00", "8568251871.57", "739070889.47", "107433571224.99", "26171.12", "16350298.10", "755421187.57", "217533416.76", "0.00", "12549089288.46", "-12011201517.65", "15077991411.12", "3066789893.47", "0.00", "66093374242.67", "66093374242.67", "178176957646.94", "175110167753.47"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_6\nind_tax,906219815.667163\npayroll_tax,-225102654467.907\ncombined_tax,-224196434652.23987\n", "aggr_1": ",0_6\nind_tax,1534627746335.8767\npayroll_tax,1485931242437.9941\ncombined_tax,3020558988773.871\n", "aggr_2": ",0_6\nind_tax,1535533966151.544\npayroll_tax,1260828587970.0872\ncombined_tax,2796362554121.6313\n", "dist1_xbin": ",s006_6,c00100_6,num_returns_StandardDed_6,standard_6,num_returns_ItemDed_6,c04470_6,c04600_6,c04800_6,taxbc_6,c62100_6,num_returns_AMT_6,c09600_6,c05800_6,c07100_6,othertaxes_6,refund_6,iitax_6,payrolltax_6,combined_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,expanded_income_6,aftertax_income_6\n<$0K,63693.59585940196,-8476012096.503925,63693.59585940196,1514975336.778882,0.0,0.0,0.0,0.0,0.0,-8476012096.503925,0.0,0.0,0.0,0.0,0.0,1363714.287886345,-1363714.287886345,21243227.643247597,19879513.355361253,0.0,958492956.6129552,958492956.6129552,-7425027279.595329,-7444906792.950691\n=$0K,1137873.342839591,0.0,1137873.342839591,19491625761.59949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10858808.91976992,33438522538.02938,10803646.643741116,102906616225.21584,55162.276028803906,303506282.81999475,0.0,2305125879.9065075,152088843.96074298,33150272312.57337,0.0,0.0,152088843.96074298,56836138.09268969,0.0,3236338655.1786027,-3141085949.3105493,4464748621.427198,1323662672.1166484,0.0,15676458811.403564,15676458811.403564,49298883330.341064,47975220658.22441\n$10-20K,11426243.752031576,106292559887.7233,11299474.23488227,164951733701.02814,126769.51714930277,1941118751.8297312,0.0,7387488743.489955,673133017.8723885,104612421808.86716,15129.222315633808,627605.9950893325,673760623.8674778,182451009.63293397,0.0,13083446007.933716,-12592136393.699173,14831408197.79397,2239271804.0947967,0.0,68070436733.3647,68070436733.3647,177034096510.78433,174794824706.6895\n$20-30K,15220288.786978686,208630512505.95572,14951380.672805322,231984105790.37262,268908.1141733654,5050038717.13475,0.0,63584922947.94018,6034628609.0945835,204411151392.3495,25993.942649012643,15845063.776129749,6050473672.870713,1364287762.5675397,0.0,18103885853.26311,-13417699942.959938,29874962788.621902,16457262845.661964,0.0,159725924190.6057,159725924190.6057,381373475503.69336,364916212658.0314\n$30-40K,17125476.717440918,356689215187.8677,16516881.666357208,273250204520.95117,608595.05108371,10947661928.904442,0.0,152281565681.66852,15803840185.135777,347940726415.28644,162820.27370495518,316205454.482651,16120045639.618427,4063110455.757117,0.0,19428299808.72075,-7371364624.85944,50618718992.12645,43247354367.26701,0.0,215990604371.10242,215990604371.10242,599356273378.2385,556108919010.9714\n$40-50K,15610344.487953452,450017179823.64355,14730406.02408572,257739330561.67267,879938.4638677333,17090311205.966356,0.0,231484009680.87204,24537212640.01059,436905849857.4324,39394.53634887592,78958212.18973807,24616170852.200325,5515583251.903032,0.0,14459540120.376757,4641047479.920536,63505021505.409546,68146068985.33008,0.0,217450235357.18982,217450235357.18982,701935595791.9585,633789526806.6285\n$50-75K,31804265.725640725,1315600830862.7817,27837563.61036039,544102242080.20593,3966702.1152803367,84673947527.58057,0.0,788969609233.522,88890926702.25174,1251990717606.146,83563.72689541697,198536839.4606977,89089463541.71245,17703542435.976227,0.0,23010032194.315903,48375888911.4203,179103087620.63293,227478976532.05325,0.0,558350556650.6892,558350556650.6892,1958015357218.342,1730536380686.2888\n$75-100K,20104996.911207143,1280930641293.166,16231855.455048585,357365147622.93823,3873141.4561585584,88033701871.5924,0.0,872361798992.8937,109858962850.4155,1219670119648.6206,130969.83655711572,452826685.9460979,110311789536.36159,15000204572.710049,0.0,5605694089.063173,89705890874.58838,162927028903.7959,252632919778.38428,0.0,413882000987.54236,413882000987.54236,1748639470852.5571,1496006551074.1729\n$100-200K,40604010.97775178,4402821003204.17,25176799.88663815,607092298311.8948,15427211.091113627,474991629790.8639,0.0,3364251773411.162,475484852417.1765,4077602546024.842,173197.0079697672,421330112.06410766,475906182529.2406,40593864648.40147,0.0,3493068040.2476735,431819249840.59155,538589196014.68555,970408445855.277,0.0,1090963204467.6445,1090963204467.6445,5710702991753.263,4740294545897.985\n$200-500K,16098097.315721381,3569904039224.5923,6769210.738791658,172996827443.9679,9328886.576929722,330061716013.7512,0.0,3067914554563.507,554547381822.3328,3341475981520.534,78177.35321247723,315289605.6858231,554862671428.0186,17863836971.684563,1977927966.450573,951039940.2954932,538025722482.48914,371452324437.16846,909478046919.6575,0.0,708437581877.5819,708437581877.5819,4508469263927.33,3598991217007.6724\n$500-1000K,1154434.1012356915,699138402218.0223,315414.3444408257,8556588503.721073,839019.7567948659,36903333922.82236,0.0,650546816138.5957,155241485027.98358,671560369769.9626,15420.359766710948,68983030.74357407,155310468058.72717,42682308.09389229,1913600522.558391,143628415.06722364,157037757858.12445,40922907705.77617,197960665563.9006,0.0,42549742583.33963,42549742583.33963,767778029467.0349,569817363903.1343\n>$1000K,468036.20556975354,988303621559.0587,71557.6154186107,1880483160.5087752,396478.5901511429,22960629743.27025,0.0,960032954040.8203,293418665304.5357,969737263353.696,31885.836815186325,510035070.213613,293928700374.74927,8460963.164902914,7625600102.275026,0.0,301545839513.85944,29620594422.912888,331166433936.7723,0.0,8617500785.65813,8617500785.65813,1017984411104.0963,686817977167.3237\nALL,181676570.84,13403290516208.506,145905757.83126885,2743832179020.8555,35770813.008731164,1072957595756.536,0.0,10161120619314.379,1724643177420.7698,12650581407613.807,756552.0962351518,2378637680.557522,1727021815101.3274,102394860517.9844,11517128591.28399,101516336838.75029,1534627746335.8767,1485931242437.9941,3020558988773.871,0.0,3500672739772.7354,3500672739772.7354,17613162821558.043,14592603832784.174\n", "dist2_xbin": ",s006_6,c00100_6,num_returns_StandardDed_6,standard_6,num_returns_ItemDed_6,c04470_6,c04600_6,c04800_6,taxbc_6,c62100_6,num_returns_AMT_6,c09600_6,c05800_6,c07100_6,othertaxes_6,refund_6,iitax_6,payrolltax_6,combined_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,expanded_income_6,aftertax_income_6\n<$0K,63693.59585940196,-8476012096.503925,63693.59585940196,1514975336.778882,0.0,0.0,0.0,0.0,0.0,-8476012096.503925,0.0,0.0,0.0,0.0,0.0,1363714.287886345,-1363714.287886345,17910956.640385233,16547242.352498885,0.0,958492956.6129552,958492956.6129552,-7426693415.09676,-7443240657.449261\n=$0K,1137873.342839591,0.0,1137873.342839591,19491625761.59949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10858808.91976992,33438532952.38372,10803646.643741116,102906616225.21584,55162.276028803906,303506282.81999475,0.0,2305125879.9065075,152088843.96074298,33150282726.92771,0.0,0.0,152088843.96074298,56836138.09268969,0.0,3231904525.892043,-3136651820.0239897,3764397460.469164,627745640.4451737,0.0,15676458811.403564,15676458811.403564,48948718164.21638,48320972523.77121\n$10-20K,11426243.752031576,106307855010.55803,11299474.23488227,164951733701.02814,126769.51714930277,1941118751.8297312,0.0,7390272885.835198,673411432.1069129,104627716931.7019,15129.222315633808,627605.9950893325,674039038.1020023,182451009.63293397,0.0,13081305566.422626,-12589717537.953556,12507209733.503288,-82507804.45026845,0.0,68070436733.3647,68070436733.3647,175887292401.4737,175969800205.92398\n$20-30K,15220288.786978686,208757955401.47784,14951380.672805322,231984414464.75305,268908.1141733654,5049692842.473083,0.0,63638224018.677,6039934810.42535,204539026631.19873,25993.942649012643,15845063.776129749,6055779874.20148,1365235688.5828269,0.0,18103904592.74099,-13413360407.122337,25207832804.514313,11794472397.391975,0.0,159725924190.6057,159725924190.6057,379167353407.16174,367372881009.7698\n$30-40K,17125476.717440918,357038675322.4441,16516881.666357208,273250204520.95117,608595.05108371,10946429640.194035,0.0,152524780162.4096,15830018902.221584,348291726910.75085,162820.27370495518,316205454.482651,16146224356.704235,4067992745.5199413,0.0,19412716456.51197,-7334484845.327681,42731007821.168106,35396522975.84042,0.0,215990604371.10242,215990604371.10242,595761877927.3358,560365354951.4954\n$40-50K,15610344.487953452,450440958988.3082,14730406.02408572,257739330561.67267,879938.4638677333,17087700015.872612,0.0,231846221315.01248,24574635678.352154,437332893009.71423,39394.53634887592,78958212.18973807,24653593890.541893,5525763082.376654,0.0,14435374910.750355,4692455897.414883,53605813829.916824,58298269727.33171,0.0,217450235357.18982,217450235357.18982,697401270678.8684,639103000951.5367\n$50-75K,31804265.725640725,1316306440292.7075,27837563.61036039,544102242080.20593,3966702.1152803367,84673712684.3369,0.0,789606875388.4822,88963072039.0278,1252696516908.4734,83563.72689541697,198536839.4606977,89161608878.48851,17721285769.48446,0.0,22979619508.29163,48460703600.71242,151108765067.61847,199569468668.3309,0.0,558350556650.6892,558350556650.6892,1944685948093.2222,1745116479424.891\n$75-100K,20104996.911207143,1281287476782.547,16231855.455048585,357365147622.93823,3873141.4561585584,88033152356.71205,0.0,872682386880.3176,109905484759.00827,1220027642031.6025,130969.83655711572,452809124.14148813,110358293883.14977,15007197360.62656,0.0,5592533394.62015,89758563127.90306,137421273759.70224,227179836887.60532,0.0,413882000987.54236,413882000987.54236,1736229033699.9185,1509049196812.313\n$100-200K,40604010.97775178,4404241775414.091,25176799.88663815,607092298311.8948,15427211.091113627,474988721578.7722,0.0,3365617655422.2188,475735462970.0152,4079026323044.142,173197.0079697672,424622564.60481596,476160085534.62,40599966975.229805,0.0,3483136649.0028744,432076981910.3873,454384895012.55237,886461876922.9397,0.0,1090963204467.6445,1090963204467.6445,5669984119605.125,4783522242682.186\n$200-500K,16098097.315721381,3570734023540.918,6769210.738791658,172996827443.9679,9328886.576929722,330057240240.68274,0.0,3068828071193.1504,554779791136.3619,3342310796564.575,78663.6850909811,312134623.8224909,555091925760.1846,17859888609.53785,1980254398.6434639,950765546.5753365,538261526002.7147,315831812843.4325,854093338846.1472,0.0,708437581877.5819,708437581877.5819,4481485173857.105,3627391835010.958\n$500-1000K,1154434.1012356915,699428162285.7141,315414.3444408257,8556588503.721073,839019.7567948659,36903250714.87072,0.0,650845097094.0889,155342949149.85986,671850233847.5939,15420.359766710948,67316774.52185425,155410265924.3817,42469321.346684694,1913663411.5752609,143628415.06722364,157137831599.5431,36185010167.39914,193322841766.94223,0.0,42549742583.33963,42549742583.33963,765693540333.603,572370698566.6609\n>$1000K,468036.20556975354,988508536057.7415,71557.6154186107,1880483160.5087752,396478.5901511429,22960629743.27025,0.0,960237868539.5033,293494570904.16016,969942177852.3788,31885.836815186325,509711899.41653776,294004282803.57666,8460963.164902914,7625660497.1720295,0.0,301621482337.5838,28062658513.17032,329684140850.754,0.0,8617500785.65813,8617500785.65813,1017393953266.048,687709812415.2938\nALL,181676570.84,13408014379952.389,145905757.83126885,2743832487695.236,35770813.008731164,1072945154851.8344,0.0,10165522578779.602,1725491420625.5,12655319324362.555,757038.4281136557,2376768162.411493,1727868188787.9116,102437547663.59529,11519578307.390755,101416253280.16309,1535533966151.5437,1260828587970.0872,2796362554121.631,0.0,3500672739772.7354,3500672739772.7354,17505211588018.982,14708849033897.348\n", "diff_itax_xbin": ",count_6,tax_cut_6,perc_cut_6,tax_inc_6,perc_inc_6,mean_6,tot_change_6,share_of_change_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,pc_aftertaxinc_6\n<$0K,63693.59585940196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,958492956.6129552,958492956.6129552,-0.02237953473115395\n=$0K,1137873.342839591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,10858808.91976992,22242.57042428114,0.2048343477504752,284404.5666829715,2.6191138345309195,0.4083439831496205,4434129.286559477,0.48929952864637505,0.0,15676458811.403564,15676458811.403564,0.7206884320760887\n$10-20K,11426243.752031576,36591.67670623324,0.3202423954917579,117429.62921594045,1.0277185728254885,0.21169299361263672,2418855.7456152504,0.26691711037398563,0.0,68070436733.3647,68070436733.3647,0.6722026817476578\n$20-30K,15220288.786978686,72352.95000087144,0.47537172923270077,319842.280401299,2.101420576690579,0.28511521025237235,4339535.837601254,0.4788612831652184,0.0,159725924190.6057,159725924190.6057,0.67321436168708\n$30-40K,17125476.717440918,42707.87904494135,0.2493821325361811,850050.2269725513,4.963658769900658,2.153503820083502,36879779.53176009,4.069628460354184,0.0,215990604371.10242,215990604371.10242,0.7653960932858084\n$40-50K,15610344.487953452,31793.863847686953,0.20367176311978488,1301560.412137526,8.33780710696003,3.293227611602002,51408417.49434742,5.672841909388211,0.0,217450235357.18982,217450235357.18982,0.8383657224000363\n$50-75K,31804265.725640725,7703.563123103722,0.02422179210033791,1607379.130861259,5.053973403213593,2.666770867271766,84814689.29210863,9.35917399131994,0.0,558350556650.6892,558350556650.6892,0.8425190537063587\n$75-100K,20104996.911207143,1464.9507197381697,0.00728650059588699,982509.8271003494,4.886893698315706,2.619858811583579,52672253.31468667,5.812304300133751,0.0,413882000987.54236,413882000987.54236,0.8718307903648581\n$100-200K,40604010.97775178,21766.163686154905,0.053605944738024214,3362186.627729845,8.280429806730409,6.347453455696264,257732069.79585955,28.44034806346803,0.0,1090963204467.6445,1090963204467.6445,0.9119200582505371\n$200-500K,16098097.315721381,127443.10334293124,0.7916656288222985,1145944.7978326923,7.118510811296711,14.647912458283196,235803520.2256105,26.02056544658659,0.0,708437581877.5819,708437581877.5819,0.7891271828915025\n$500-1000K,1154434.1012356915,17556.249975976898,1.520766751188735,203227.8360483745,17.60410887298305,86.68640445698881,100073741.41865751,11.042987549878589,0.0,42549742583.33963,42549742583.33963,0.44809702639398985\n>$1000K,468036.20556975354,19121.775451541722,4.085533389081354,139674.5155063097,29.842673247100617,161.6174621197831,75642823.72435667,8.347072356685127,0.0,8617500785.65813,8617500785.65813,0.12985030643029027\nALL,181676570.84,400744.7463234608,0.22058141260074257,10314209.850489117,5.677237192886416,4.988094014969371,906219815.667163,100.00000000000001,0.0,3500672739772.7354,3500672739772.7354,0.7966035564675122\n", "diff_ptax_xbin": ",count_6,tax_cut_6,perc_cut_6,tax_inc_6,perc_inc_6,mean_6,tot_change_6,share_of_change_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,pc_aftertaxinc_6\n<$0K,63693.59585940196,4337.617183036843,6.8101307902473485,0.0,0.0,-52.31720643026754,-3332271.0028623664,0.0014803339439684177,0.0,958492956.6129552,958492956.6129552,-0.02237953473115395\n=$0K,1137873.342839591,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10858808.91976992,7881622.788182503,72.5827560500945,0.0,0.0,-64.49613084939277,-700351160.9580342,0.31112523422414096,0.0,15676458811.403564,15676458811.403564,0.7206884320760887\n$10-20K,11426243.752031576,8326088.77038346,72.86811791410531,0.0,0.0,-203.40879423979035,-2324198464.290681,1.032506022545391,0.0,68070436733.3647,68070436733.3647,0.6722026817476578\n$20-30K,15220288.786978686,9981873.803380458,65.58268337142317,0.0,0.0,-306.6387273873824,-4667129984.107591,2.0733340506977394,0.0,159725924190.6057,159725924190.6057,0.67321436168708\n$30-40K,17125476.717440918,11805420.506638419,68.934843107845,0.0,0.0,-460.58345125805175,-7887711170.958349,3.504050713930122,0.0,215990604371.10242,215990604371.10242,0.7653960932858084\n$40-50K,15610344.487953452,11465888.732755978,73.45058106567883,0.0,0.0,-634.1440884364827,-9899207675.492714,4.397641466686503,0.0,217450235357.18982,217450235357.18982,0.8383657224000363\n$50-75K,31804265.725640725,24474828.784043685,76.95454752886177,0.0,0.0,-880.2065356423353,-27994322553.01449,12.436247195390429,0.0,558350556650.6892,558350556650.6892,0.8425190537063587\n$75-100K,20104996.911207143,15939501.181761146,79.28129137327038,0.0,0.0,-1268.6276579269688,-25505755144.09366,11.330721623156172,0.0,413882000987.54236,413882000987.54236,0.8718307903648581\n$100-200K,40604010.97775178,32667712.907095,80.45439876615804,0.0,0.0,-2073.7926863499097,-84204301002.13309,37.40706710064059,0.0,1090963204467.6445,1090963204467.6445,0.9119200582505371\n$200-500K,16098097.315721381,13561435.231414936,84.2424726689337,0.0,0.0,-3455.0984816955365,-55620511593.73594,24.70895411038602,0.0,708437581877.5819,708437581877.5819,0.7891271828915025\n$500-1000K,1154434.1012356915,1042804.3932184256,90.33035251663313,0.0,0.0,-4104.086611185204,-4737897538.377026,2.104771953745446,0.0,42549742583.33963,42549742583.33963,0.44809702639398985\n>$1000K,468036.20556975354,398486.77688754996,85.14016055712204,6909.221054880743,1.4762150817947846,-3328.665370761323,-1557935909.7425666,0.6921001946534943,0.0,8617500785.65813,8617500785.65813,0.12985030643029027\nALL,181676570.84,137550001.49294457,75.71146948501297,6909.221054880743,0.003803033612388907,-1239.0296306624573,-225102654467.90695,100.0,0.0,3500672739772.7354,3500672739772.7354,0.7966035564675122\n", "diff_comb_xbin": ",count_6,tax_cut_6,perc_cut_6,tax_inc_6,perc_inc_6,mean_6,tot_change_6,share_of_change_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,pc_aftertaxinc_6\n<$0K,63693.59585940196,4337.617183036843,6.8101307902473485,0.0,0.0,-52.31720643026754,-3332271.0028623664,0.0014863175714775242,0.0,958492956.6129552,958492956.6129552,-0.02237953473115395\n=$0K,1137873.342839591,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10858808.91976992,7881622.788182503,72.5827560500945,0.0,0.0,-64.08778686624314,-695917031.6714746,0.31040503955869747,0.0,15676458811.403564,15676458811.403564,0.7206884320760887\n$10-20K,11426243.752031576,8326088.77038346,72.86811791410531,0.0,0.0,-203.19710124617774,-2321779608.545066,1.0356005938035864,0.0,68070436733.3647,68070436733.3647,0.6722026817476578\n$20-30K,15220288.786978686,9981873.803380458,65.58268337142317,0.0,0.0,-306.35361217713,-4662790448.269989,2.07977903640735,0.0,159725924190.6057,159725924190.6057,0.67321436168708\n$30-40K,17125476.717440918,11805420.506638419,68.934843107845,0.0,0.0,-458.42994743796817,-7850831391.426588,3.501764603707605,0.0,215990604371.10242,215990604371.10242,0.7653960932858084\n$40-50K,15610344.487953452,11465888.732755978,73.45058106567883,0.0,0.0,-630.8508608248807,-9847799257.998367,4.392487005100542,0.0,217450235357.18982,217450235357.18982,0.8383657224000363\n$50-75K,31804265.725640725,24474828.784043685,76.95454752886177,0.0,0.0,-877.5397647750636,-27909507863.72238,12.448684969952328,0.0,558350556650.6892,558350556650.6892,0.8425190537063587\n$75-100K,20104996.911207143,15939501.181761146,79.28129137327038,0.0,0.0,-1266.007799115385,-25453082890.77897,11.353027504768427,0.0,413882000987.54236,413882000987.54236,0.8718307903648581\n$100-200K,40604010.97775178,32667712.907095,80.45439876615804,0.0,0.0,-2067.4452328942143,-83946568932.33725,37.44331129197043,0.0,1090963204467.6445,1090963204467.6445,0.9119200582505371\n$200-500K,16098097.315721381,13561435.231414936,84.2424726689337,0.0,0.0,-3440.4505692372536,-55384708073.51033,24.703652473073348,0.0,708437581877.5819,708437581877.5819,0.7891271828915025\n$500-1000K,1154434.1012356915,1042804.3932184256,90.33035251663313,0.0,0.0,-4017.4002067282154,-4637823796.958368,2.068642975590706,0.0,42549742583.33963,42549742583.33963,0.44809702639398985\n>$1000K,468036.20556975354,398486.77688754996,85.14016055712204,6909.221054880743,1.4762150817947846,-3167.047908641534,-1482293086.018207,0.6611581884954824,0.0,8617500785.65813,8617500785.65813,0.12985030643029027\nALL,181676570.84,137550001.49294457,75.71146948501297,6909.221054880743,0.003803033612388907,-1234.0415366474886,-224196434652.2399,100.0,0.0,3500672739772.7354,3500672739772.7354,0.7966035564675122\n", "dist1_xdec": ",s006_6,c00100_6,num_returns_StandardDed_6,standard_6,num_returns_ItemDed_6,c04470_6,c04600_6,c04800_6,taxbc_6,c62100_6,num_returns_AMT_6,c09600_6,c05800_6,c07100_6,othertaxes_6,refund_6,iitax_6,payrolltax_6,combined_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,expanded_income_6,aftertax_income_6\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18165906.355404988,81323929966.01688,18067924.37708299,210462726725.48523,97981.9783219999,899021756.7514727,0.0,3954561299.828291,269244240.38485825,80513103316.12273,15129.222315633808,627605.9950893325,269871846.37994754,81632603.61261977,0.0,10095960653.883541,-9907721411.11621,12254676305.482422,2346954894.36621,0.0,39640074524.705215,39640074524.705215,122350733618.3898,120003778724.0236\n10-20,18152774.73300936,220322068030.88788,17836110.813394994,274243845285.64474,316663.9196143693,5892921783.965955,0.0,54817692658.254,5133398327.694847,215322728280.82874,19586.602859227383,9536933.30487748,5142935260.999724,1091447917.5800977,0.0,21084929300.2038,-17033441956.784172,31305001793.497402,14271559836.713232,0.0,176100850392.52478,176100850392.52478,407923982083.3672,393652422246.65393\n20-30,18177633.239599172,362491344430.2446,17565609.383353002,287356440288.6305,612023.8562461687,10893017085.390602,0.0,150338909672.054,15577278866.141598,353818999003.1946,99248.09539617288,282146149.9531807,15859425016.09478,4031254936.897968,0.0,21152319040.870064,-9324148961.673254,51562097419.73884,42237948458.06558,0.0,226012245633.54498,226012245633.54498,616363618078.4028,574125669620.3372\n30-40,18163249.064487886,531000157288.51013,17161823.243179824,300316215262.9069,1001425.8213080614,19267991113.91774,0.0,275192226312.4855,29125701187.378635,516160534291.2714,109374.05444744347,119325647.1904606,29245026834.569096,6591757346.612757,0.0,17012752891.320976,5640516596.635363,75069743712.63268,80710260309.26804,0.0,245641976376.8098,245641976376.8098,816195677978.6553,735485417669.3872\n40-50,18150769.523815066,687445433741.5397,16276477.562834358,309423976811.8455,1874291.9609807082,36209912143.82675,0.0,403607179628.2854,43930993542.22192,660391032982.062,82240.04400705373,193611939.19350272,44124605481.41542,10142664213.715366,0.0,13524409704.961266,20457531562.73879,93866851856.72334,114324383419.46213,0.0,303547127438.45233,303547127438.45233,1036468686314.98,922144302895.5178\n50-60,18186616.81499298,906404945440.4199,15328305.413060483,321020077061.77875,2858311.401932495,65626893378.630005,0.0,572594099171.5658,67909935823.05796,857776327630.2603,74869.6347626258,148500113.34546962,68058435936.403435,11116525744.209526,0.0,10204550792.712446,46737359399.48146,120886908888.55513,167624268288.03656,0.0,353436049700.94653,353436049700.94653,1311375415187.0552,1143751146899.0188\n60-70,18176636.755505256,1242660173503.7617,14189797.853750762,313949353541.2274,3986838.901754497,94546121380.74756,0.0,863733897063.1292,110459979415.39656,1177272121015.4517,103760.395049856,618022561.2701132,111078001976.66667,14853757768.905521,0.0,4935100838.465153,91289143369.296,155902921593.59467,247192064962.89066,0.0,396525210162.04333,396525210162.04333,1691386154635.319,1444194089672.4285\n70-80,18165354.848438006,1678182242084.6777,12287283.756106261,290284960349.88306,5878071.092331745,174206850409.79663,0.0,1240502471467.644,164441135787.04755,1556324033346.504,35245.49683301404,57464061.19638015,164498599848.24393,15581089444.32195,0.0,1519495923.8101013,147398014480.11188,205028536852.6659,352426551332.7778,0.0,475241361206.54736,475241361206.54736,2216102954240.932,1863676402908.1545\n80-90,18162780.928700075,2359342323150.581,9780455.982098952,246503009544.21082,8382324.9466011245,269427296933.88147,0.0,1853953515959.4136,274171328551.302,2177414212002.1082,91615.00076975032,55094962.46543756,274226423513.76746,20550358396.552948,0.0,892149337.1602311,252783915780.05426,287320231802.04834,540104147582.1026,0.0,518200958812.6123,518200958812.6123,3010457719060.3833,2470353571478.2812\n90-100,18174848.576047223,5334117898571.867,7411969.44640722,190271574149.2425,10762879.129640002,395987569769.62775,0.0,4742426066081.717,1013624181680.144,5055588315746.003,125483.5497943745,894307706.6430101,1014518489386.7869,18354372145.575665,11517128591.28399,1094668355.362717,1006586577477.1326,452734272213.05554,1459320849690.188,0.0,766326885524.5482,766326885524.5482,6384537880360.558,4925217030670.369\nALL,181676570.84000003,13403290516208.504,145905757.83126885,2743832179020.8555,35770813.00873118,1072957595756.536,0.0,10161120619314.379,1724643177420.77,12650581407613.805,756552.0962351519,2378637680.557522,1727021815101.3271,102394860517.98442,11517128591.28399,101516336838.75029,1534627746335.8765,1485931242437.9941,3020558988773.871,0.0,3500672739772.7344,3500672739772.7344,17613162821558.043,14592603832784.17\n90-95,9090989.563866261,1615405649186.6384,4431584.111238079,113616053656.67596,4659405.452628183,154568762793.2008,0.0,1348948597760.9893,225043036317.93628,1511104529621.1812,28502.025622439713,62537634.88974741,225105573952.82605,10059405364.169575,64868122.950616,721847385.0383797,214389189326.56866,187351265563.5666,401740454890.13525,0.0,344821934518.0947,344821934518.0947,2057560869697.29,1655820414807.1548\n95-99,7266860.916544158,1948105600087.9854,2539207.8828133047,64686153916.32707,4727653.033730854,175952792720.15005,0.0,1708119605428.8892,324042942505.3878,1824120746410.0557,34698.62159820663,184549639.46967506,324227492144.8575,8171189160.273066,1781688852.6923738,209836479.79325786,317628155357.4835,187903098977.1905,505531254334.6741,0.0,364098286704.588,364098286704.588,2447241150726.12,1941709896391.4463\nTop 1%,1816998.095636802,1770606649297.2432,441177.45235583675,11969366576.239447,1375820.643280965,65466014256.27693,0.0,1685357862891.8389,464538202856.8199,1720363039714.7659,62282.90257372816,647220432.2835877,465185423289.1034,123777621.13302349,9670571615.641,162984490.53107932,474569232793.0803,77479907672.29843,552049140465.3788,0.0,57406664301.86543,57406664301.86543,1879735859937.1472,1327686719471.768\n", "dist2_xdec": ",s006_6,c00100_6,num_returns_StandardDed_6,standard_6,num_returns_ItemDed_6,c04470_6,c04600_6,c04800_6,taxbc_6,c62100_6,num_returns_AMT_6,c09600_6,c05800_6,c07100_6,othertaxes_6,refund_6,iitax_6,payrolltax_6,combined_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,expanded_income_6,aftertax_income_6\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18165906.355404988,81331170217.3895,18067924.37708299,210462726725.48523,97981.9783219999,899021756.7514727,0.0,3954561299.828291,269244240.38485825,80520343567.49535,15129.222315633808,627605.9950893325,269871846.37994754,81632603.61261977,0.0,10089906063.242706,-9901666820.475376,10333461441.92711,431794621.4517321,0.0,39640074524.705215,39640074524.705215,121397366437.98477,120965571816.53305\n10-20,18152774.73300936,220439825972.42215,17836110.813394994,274243845285.64474,316663.9196143693,5892587036.143071,0.0,54870208411.074974,5138625997.234028,215440904657.1416,19586.602859227383,9536933.30487748,5148162930.538906,1092270057.965045,0.0,21085318883.272327,-17029426010.698467,26412097531.186913,9382671520.488447,0.0,176100850392.52478,176100850392.52478,405595287893.7462,396212616373.2577\n20-30,18177633.239599172,362823052449.3807,17565609.383353002,287356748963.011,612023.8562461687,10891773669.84141,0.0,150550479840.12067,15599597874.942066,354152261291.76697,99248.09539617288,282146149.9531807,15881744024.895245,4036225871.4928894,0.0,21135934831.90618,-9290416678.503822,43523739401.73913,34233322723.23531,0.0,226012245633.54498,226012245633.54498,612676147088.539,578442824365.3036\n30-40,18163249.064487886,531493119377.2491,17161823.243179824,300316215262.9069,1001425.8213080614,19265290204.620716,0.0,275622332895.7445,29170608997.649963,516656872516.6317,109374.05444744347,119325647.1904606,29289934644.840424,6602479942.538864,0.0,16987599102.577225,5699855599.724335,63366838882.62424,69066694482.34857,0.0,245641976376.8098,245641976376.8098,810828603295.1257,741761908812.7772\n40-50,18150769.523815066,687744607961.0663,16276477.562834358,309423976811.8455,1874291.9609807082,36209912143.82675,0.0,403860395998.8762,43958261296.106575,660690207201.5886,82240.04400705373,193611939.19350272,44151873235.30008,10152692193.951696,0.0,13506893176.922009,20492287864.426373,79185859127.85297,99678146992.27933,0.0,303547127438.45233,303547127438.45233,1029415983764.2429,929737836771.9634\n50-60,18186616.81499298,906856156408.4265,15328305.413060483,321020077061.77875,2858311.401932495,65626748254.58963,0.0,573002936327.5693,67958006743.88884,858227616321.6646,74869.6347626258,148482551.54085988,68106489295.4297,11126049737.803078,0.0,10186896452.425898,46793543105.200714,101986997066.80614,148780540172.00684,0.0,353436049700.94653,353436049700.94653,1302343243268.1475,1153562703096.1406\n60-70,18176636.755505256,1243065220757.4167,14189797.853750762,313949353541.2274,3986838.901754497,94545410250.445,0.0,864119915104.1741,110517489238.44331,1177678057181.9849,103760.395049856,618022561.2701132,111135511799.71344,14859172100.401733,0.0,4925897486.35469,91350442212.957,131505624259.2496,222856066472.2066,0.0,396525210162.04333,396525210162.04333,1679574141972.2292,1456718075500.0225\n70-80,18165354.848438006,1678609050266.9607,12287283.756106261,290284960349.88306,5878071.092331745,174205282916.2341,0.0,1240900430442.0696,164498328590.34586,1556752771272.679,35245.49683301404,57464061.19638015,164555792651.54224,15581955318.444283,0.0,1518147429.465533,147455689903.63245,172928787010.9417,320384476914.57416,0.0,475241361206.54736,475241361206.54736,2200463197033.313,1880078720118.7393\n80-90,18162780.928700075,2360199266888.88,9780455.982098952,246503009544.21082,8382324.9466011245,269426117830.77457,0.0,1854788188095.9788,274344992150.71313,2178272028786.6162,91615.00076975032,58387415.00614597,274403379565.7193,20554859040.703354,0.0,885265892.3539617,252963254632.662,242441740099.7181,495404994732.3801,0.0,518200958812.6123,518200958812.6123,2988865663759.751,2493460669027.371\n90-100,18174848.576047223,5335452909653.196,7411969.44640722,190271574149.2425,10762879.129640002,395983010788.60767,0.0,4743853130364.166,1014036265495.7914,5056928261564.986,125969.88167287837,889163297.7608827,1014925428793.5522,18350210796.681747,11519578307.390755,1094393961.64256,1007000402342.6187,389143443148.04126,1396143845490.66,0.0,766326885524.5482,766326885524.5482,6354051953505.901,4957908108015.241\nALL,181676570.84000003,13408014379952.389,145905757.83126885,2743832487695.2363,35770813.00873118,1072945154851.8344,0.0,10165522578779.602,1725491420625.5,12655319324362.555,757038.4281136558,2376768162.411493,1727868188787.9116,102437547663.59534,11519578307.390755,101416253280.16309,1535533966151.544,1260828587970.0872,2796362554121.631,0.0,3500672739772.7344,3500672739772.7344,17505211588018.979,14708849033897.35\n90-95,9090989.563866261,1615726387751.1475,4431584.111238079,113616053656.67596,4659405.452628183,154567224487.18726,0.0,1349274195604.2322,225117246376.5665,1511426710506.463,28091.455648818424,63275757.92660074,225180522134.4931,10059144286.199852,65075889.719685495,721847385.0383797,214464606352.97455,158467741285.15753,372932347638.1321,0.0,344821934518.0947,344821934518.0947,2043439345003.3364,1670506997365.204\n95-99,7266860.916544158,1948550375899.4429,2539207.8828133047,64686153916.32707,4727653.033730854,175949855253.09512,0.0,1708627286991.1511,324175633074.81384,1824568910628.4546,35595.523450331784,183091262.51811716,324358724337.332,8167785775.573418,1783807518.116195,209836479.79325786,317764909600.08154,160397391604.9649,478162301205.0464,0.0,364098286704.588,364098286704.588,2433930574815.348,1955768273610.3018\nTop 1%,1816998.095636802,1771176146002.606,441177.45235583675,11969366576.239447,1375820.643280965,65465931048.325294,0.0,1685951647768.7822,464743386044.411,1720932640430.0684,62282.90257372816,642796277.3161649,465386182321.7272,123280734.90847655,9670694899.554874,162710096.8109225,474770886389.5626,70278310257.9188,545049196647.4814,0.0,57406664301.86543,57406664301.86543,1876682033687.2168,1331632837039.7356\n", "diff_itax_xdec": ",count_6,tax_cut_6,perc_cut_6,tax_inc_6,perc_inc_6,mean_6,tot_change_6,share_of_change_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,pc_aftertaxinc_6\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,18165906.355404988,46208.14521811882,0.2543674084523192,334166.24299429444,1.8395241969023381,0.3332941677877744,6054590.640835347,0.6681150131745829,0.0,39640074524.705215,39640074524.705215,0.8014690060063057\n10-20,18152774.73300936,80765.8298229631,0.4449227790839983,298215.3995184435,1.6428089033472264,0.22123042591396813,4015946.08570398,0.44315363847428374,0.0,176100850392.52478,176100850392.52478,0.6503692043839715\n20-30,18177633.239599172,46921.10113524523,0.25812546945346926,853492.9273315384,4.695291824197672,1.8557027047914822,33732283.16943174,3.7223069487393503,0.0,226012245633.54498,226012245633.54498,0.7519529213562803\n30-40,18163249.064487886,31793.863847686953,0.17504502490057872,1458099.7261735043,8.0277472438801,3.266981743095108,59339003.08897122,6.547970157249937,0.0,245641976376.8098,245641976376.8098,0.8533807731061493\n40-50,18150769.523815066,4178.484098982178,0.023020974915139093,822745.5041176663,4.532840897121013,1.9148665648572836,34756301.68758403,3.8353058592077116,0.0,303547127438.45233,303547127438.45233,0.8234648148453649\n50-60,18186616.81499298,4990.0297438597145,0.027437922042465604,983967.1685457976,5.410391490376697,3.0892884746401963,56183705.7192554,6.199787816148415,0.0,353436049700.94653,353436049700.94653,0.8578401187813611\n60-70,18176636.755505256,0.0,0.0,973048.8524543798,5.353294261985332,3.3723974619475814,61298843.66100904,6.764235630389583,0.0,396525210162.04333,396525210162.04333,0.8671954771975798\n70-80,18165354.848438006,9342.203799450413,0.051428688717598744,1482266.1196409825,8.159852268277813,3.1750232242503276,57675423.520538956,6.364396642339813,0.0,475241361206.54736,475241361206.54736,0.8801054295150212\n80-90,18162780.928700075,12423.95988670449,0.06840340108420656,1595597.327556987,8.784983609176777,9.873975428748134,179338852.60771975,19.78977390553855,0.0,518200958812.6123,518200958812.6123,0.9353761265543215\n90-100,18174848.576047223,164121.12877044987,0.903012358445431,1512610.5821555231,8.32254847035702,22.769095640857035,413824865.48611355,45.66495438873778,0.0,766326885524.5482,766326885524.5482,0.6637489706808442\nALL,181676570.84000003,400744.7463234608,0.22058141260074254,10314209.850489117,5.677237192886415,4.98809401496937,906219815.667163,100.00000000000001,0.0,3500672739772.7344,3500672739772.7344,0.7966035564675567\n90-95,9090989.563866261,11807.939507266263,0.12988618482413616,606724.823798552,6.67391398412871,8.295799470017462,75417026.40585601,8.322155960619076,0.0,344821934518.0947,344821934518.0947,0.8869671147133218\n95-99,7266860.916544158,110601.79431215629,1.5220023553822781,504830.6859777031,6.947025569574013,18.81888812356279,136754242.59793547,15.090625942366575,0.0,364098286704.588,364098286704.588,0.724020475199838\nTop 1%,1816998.095636802,41711.394951027316,2.2956212805720497,401055.072379268,22.07239915893861,110.98173243359876,201653596.48232207,22.252172485752126,0.0,57406664301.86543,57406664301.86543,0.29721752203242247\n", "diff_ptax_xdec": ",count_6,tax_cut_6,perc_cut_6,tax_inc_6,perc_inc_6,mean_6,tot_change_6,share_of_change_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,pc_aftertaxinc_6\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18165906.355404988,12866355.484622676,70.82693939350011,0.0,0.0,-105.75937285857937,-1921214863.5553126,0.8534838774321165,0.0,39640074524.705215,39640074524.705215,0.8014690060063057\n10-20,18152774.73300936,11747507.643372962,64.7146665793801,0.0,0.0,-269.54029531436504,-4892904262.310487,2.1736324140096137,0.0,176100850392.52478,176100850392.52478,0.6503692043839715\n20-30,18177633.239599172,12462378.45091623,68.55886179817672,0.0,0.0,-442.211475611055,-8038358017.999712,3.5709743347987675,0.0,226012245633.54498,226012245633.54498,0.7519529213562803\n30-40,18163249.064487886,13449430.68392941,74.04749357440261,0.0,0.0,-644.3178083644476,-11702904830.008438,5.198919069911246,0.0,245641976376.8098,245641976376.8098,0.8533807731061493\n40-50,18150769.523815066,13605834.354380228,74.96009652113335,0.0,0.0,-808.8358297761374,-14680992728.870384,6.521910087454547,0.0,303547127438.45233,303547127438.45233,0.8234648148453649\n50-60,18186616.81499298,14480653.430841178,79.62257949429815,0.0,0.0,-1039.2208740092863,-18899911821.748985,8.396130141789843,0.0,353436049700.94653,353436049700.94653,0.8578401187813611\n60-70,18176636.755505256,14426770.17456904,79.36985465806552,0.0,0.0,-1342.2338611105113,-24397297334.34506,10.838298371920526,0.0,396525210162.04333,396525210162.04333,0.8671954771975798\n70-80,18165354.848438006,14111738.609708779,77.68490474009216,0.0,0.0,-1767.0863085002886,-32099749841.724136,14.260049450594376,0.0,475241361206.54736,475241361206.54736,0.8801054295150212\n80-90,18162780.928700075,14973384.0473465,82.439930901144,0.0,0.0,-2470.904201207157,-44878491702.33024,19.936900259311948,0.0,518200958812.6123,518200958812.6123,0.9353761265543215\n90-100,18174848.576047223,15425948.613257593,84.87525246063161,6909.221054880743,0.03801528813828172,-3498.836801799885,-63590829065.01426,28.249701992777,0.0,766326885524.5482,766326885524.5482,0.6637489706808442\nALL,181676570.84000003,137550001.4929446,75.71146948501297,6909.221054880743,0.0038030336123889064,-1239.0296306624575,-225102654467.90704,100.0,0.0,3500672739772.7344,3500672739772.7344,0.7966035564675567\n90-95,9090989.563866261,7815508.4505849965,85.96983194930849,0.0,0.0,-3177.159546328345,-28883524278.40905,12.831267737238958,0.0,344821934518.0947,344821934518.0947,0.8869671147133218\n95-99,7266860.916544158,5988981.558509644,82.41497432371082,0.0,0.0,-3785.087906334423,-27505707372.225574,12.219183926214905,0.0,364098286704.588,364098286704.588,0.724020475199838\nTop 1%,1816998.095636802,1621458.604162952,89.23832160620293,6909.221054880743,0.380254721866358,-3963.458977570196,-7201597414.379633,3.1992503293231342,0.0,57406664301.86543,57406664301.86543,0.29721752203242247\n", "diff_comb_xdec": ",count_6,tax_cut_6,perc_cut_6,tax_inc_6,perc_inc_6,mean_6,tot_change_6,share_of_change_6,ubi_6,benefit_cost_total_6,benefit_value_total_6,pc_aftertaxinc_6\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18165906.355404988,12866355.484622676,70.82693939350011,0.0,0.0,-105.4260786907916,-1915160272.9144776,0.8542331531209051,0.0,39640074524.705215,39640074524.705215,0.8014690060063057\n10-20,18152774.73300936,11747507.643372962,64.7146665793801,0.0,0.0,-269.31906488845107,-4888888316.224783,2.180627146817984,0.0,176100850392.52478,176100850392.52478,0.6503692043839715\n20-30,18177633.239599172,12462378.45091623,68.55886179817672,0.0,0.0,-440.3557729062635,-8004625734.83028,3.5703626363401275,0.0,226012245633.54498,226012245633.54498,0.7519529213562803\n30-40,18163249.064487886,13449430.68392941,74.04749357440261,0.0,0.0,-641.0508266213526,-11643565826.919468,5.193466098147491,0.0,245641976376.8098,245641976376.8098,0.8533807731061493\n40-50,18150769.523815066,13605834.354380228,74.96009652113335,0.0,0.0,-806.9209632112801,-14646236427.1828,6.532769555368342,0.0,303547127438.45233,303547127438.45233,0.8234648148453649\n50-60,18186616.81499298,14480653.430841178,79.62257949429815,0.0,0.0,-1036.131585534646,-18843728116.02973,8.405007932110518,0.0,353436049700.94653,353436049700.94653,0.8578401187813611\n60-70,18176636.755505256,14426770.17456904,79.36985465806552,0.0,0.0,-1338.8614636485638,-24335998490.68405,10.854766057467689,0.0,396525210162.04333,396525210162.04333,0.8671954771975798\n70-80,18165354.848438006,14111738.609708779,77.68490474009216,0.0,0.0,-1763.911285276038,-32042074418.20359,14.291964307061953,0.0,475241361206.54736,475241361206.54736,0.8801054295150212\n80-90,18162780.928700075,14973384.0473465,82.439930901144,0.0,0.0,-2461.0302257784087,-44699152849.72252,19.937494955732543,0.0,518200958812.6123,518200958812.6123,0.9353761265543215\n90-100,18174848.576047223,15425948.613257593,84.87525246063161,6909.221054880743,0.03801528813828172,-3476.0677061590272,-63177004199.52814,28.179308157832462,0.0,766326885524.5482,766326885524.5482,0.6637489706808442\nALL,181676570.84000003,137550001.4929446,75.71146948501297,6909.221054880743,0.0038030336123889064,-1234.0415366474876,-224196434652.2398,100.0,0.0,3500672739772.7344,3500672739772.7344,0.7966035564675567\n90-95,9090989.563866261,7815508.4505849965,85.96983194930849,0.0,0.0,-3168.863746858328,-28808107252.003197,12.849493925578532,0.0,344821934518.0947,344821934518.0947,0.8869671147133218\n95-99,7266860.916544158,5988981.558509644,82.41497432371082,0.0,0.0,-3766.26901821086,-27368953129.627636,12.207577329265174,0.0,364098286704.588,364098286704.588,0.724020475199838\nTop 1%,1816998.095636802,1621458.604162952,89.23832160620293,6909.221054880743,0.380254721866358,-3852.477245136596,-6999943817.897308,3.122236902988759,0.0,57406664301.86543,57406664301.86543,0.29721752203242247\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_6
ind_tax906,219,815.67
payroll_tax-225,102,654,467.91
combined_tax-224,196,434,652.24
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_6
ind_tax1,534,627,746,335.88
payroll_tax1,485,931,242,437.99
combined_tax3,020,558,988,773.87
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_6
ind_tax1,535,533,966,151.54
payroll_tax1,260,828,587,970.09
combined_tax2,796,362,554,121.63
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_6c00100_6num_returns_StandardDed_6standard_6num_returns_ItemDed_6c04470_6c04600_6c04800_6taxbc_6c62100_6num_returns_AMT_6c09600_6c05800_6c07100_6othertaxes_6refund_6iitax_6payrolltax_6combined_6ubi_6benefit_cost_total_6benefit_value_total_6expanded_income_6aftertax_income_6
<$0K63,693.60-8,476,012,096.5063,693.601,514,975,336.780.000.000.000.000.00-8,476,012,096.500.000.000.000.000.001,363,714.29-1,363,714.2921,243,227.6419,879,513.360.00958,492,956.61958,492,956.61-7,425,027,279.60-7,444,906,792.95
=$0K1,137,873.340.001,137,873.3419,491,625,761.600.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,858,808.9233,438,522,538.0310,803,646.64102,906,616,225.2255,162.28303,506,282.820.002,305,125,879.91152,088,843.9633,150,272,312.570.000.00152,088,843.9656,836,138.090.003,236,338,655.18-3,141,085,949.314,464,748,621.431,323,662,672.120.0015,676,458,811.4015,676,458,811.4049,298,883,330.3447,975,220,658.22
$10-20K11,426,243.75106,292,559,887.7211,299,474.23164,951,733,701.03126,769.521,941,118,751.830.007,387,488,743.49673,133,017.87104,612,421,808.8715,129.22627,606.00673,760,623.87182,451,009.630.0013,083,446,007.93-12,592,136,393.7014,831,408,197.792,239,271,804.090.0068,070,436,733.3668,070,436,733.36177,034,096,510.78174,794,824,706.69
$20-30K15,220,288.79208,630,512,505.9614,951,380.67231,984,105,790.37268,908.115,050,038,717.130.0063,584,922,947.946,034,628,609.09204,411,151,392.3525,993.9415,845,063.786,050,473,672.871,364,287,762.570.0018,103,885,853.26-13,417,699,942.9629,874,962,788.6216,457,262,845.660.00159,725,924,190.61159,725,924,190.61381,373,475,503.69364,916,212,658.03
$30-40K17,125,476.72356,689,215,187.8716,516,881.67273,250,204,520.95608,595.0510,947,661,928.900.00152,281,565,681.6715,803,840,185.14347,940,726,415.29162,820.27316,205,454.4816,120,045,639.624,063,110,455.760.0019,428,299,808.72-7,371,364,624.8650,618,718,992.1343,247,354,367.270.00215,990,604,371.10215,990,604,371.10599,356,273,378.24556,108,919,010.97
$40-50K15,610,344.49450,017,179,823.6414,730,406.02257,739,330,561.67879,938.4617,090,311,205.970.00231,484,009,680.8724,537,212,640.01436,905,849,857.4339,394.5478,958,212.1924,616,170,852.205,515,583,251.900.0014,459,540,120.384,641,047,479.9263,505,021,505.4168,146,068,985.330.00217,450,235,357.19217,450,235,357.19701,935,595,791.96633,789,526,806.63
$50-75K31,804,265.731,315,600,830,862.7827,837,563.61544,102,242,080.213,966,702.1284,673,947,527.580.00788,969,609,233.5288,890,926,702.251,251,990,717,606.1583,563.73198,536,839.4689,089,463,541.7117,703,542,435.980.0023,010,032,194.3248,375,888,911.42179,103,087,620.63227,478,976,532.050.00558,350,556,650.69558,350,556,650.691,958,015,357,218.341,730,536,380,686.29
$75-100K20,104,996.911,280,930,641,293.1716,231,855.46357,365,147,622.943,873,141.4688,033,701,871.590.00872,361,798,992.89109,858,962,850.421,219,670,119,648.62130,969.84452,826,685.95110,311,789,536.3615,000,204,572.710.005,605,694,089.0689,705,890,874.59162,927,028,903.80252,632,919,778.380.00413,882,000,987.54413,882,000,987.541,748,639,470,852.561,496,006,551,074.17
$100-200K40,604,010.984,402,821,003,204.1725,176,799.89607,092,298,311.8915,427,211.09474,991,629,790.860.003,364,251,773,411.16475,484,852,417.184,077,602,546,024.84173,197.01421,330,112.06475,906,182,529.2440,593,864,648.400.003,493,068,040.25431,819,249,840.59538,589,196,014.69970,408,445,855.280.001,090,963,204,467.641,090,963,204,467.645,710,702,991,753.264,740,294,545,897.99
$200-500K16,098,097.323,569,904,039,224.596,769,210.74172,996,827,443.979,328,886.58330,061,716,013.750.003,067,914,554,563.51554,547,381,822.333,341,475,981,520.5378,177.35315,289,605.69554,862,671,428.0217,863,836,971.681,977,927,966.45951,039,940.30538,025,722,482.49371,452,324,437.17909,478,046,919.660.00708,437,581,877.58708,437,581,877.584,508,469,263,927.333,598,991,217,007.67
$500-1000K1,154,434.10699,138,402,218.02315,414.348,556,588,503.72839,019.7636,903,333,922.820.00650,546,816,138.60155,241,485,027.98671,560,369,769.9615,420.3668,983,030.74155,310,468,058.7342,682,308.091,913,600,522.56143,628,415.07157,037,757,858.1240,922,907,705.78197,960,665,563.900.0042,549,742,583.3442,549,742,583.34767,778,029,467.03569,817,363,903.13
>$1000K468,036.21988,303,621,559.0671,557.621,880,483,160.51396,478.5922,960,629,743.270.00960,032,954,040.82293,418,665,304.54969,737,263,353.7031,885.84510,035,070.21293,928,700,374.758,460,963.167,625,600,102.280.00301,545,839,513.8629,620,594,422.91331,166,433,936.770.008,617,500,785.668,617,500,785.661,017,984,411,104.10686,817,977,167.32
ALL181,676,570.8413,403,290,516,208.51145,905,757.832,743,832,179,020.8635,770,813.011,072,957,595,756.540.0010,161,120,619,314.381,724,643,177,420.7712,650,581,407,613.81756,552.102,378,637,680.561,727,021,815,101.33102,394,860,517.9811,517,128,591.28101,516,336,838.751,534,627,746,335.881,485,931,242,437.993,020,558,988,773.870.003,500,672,739,772.743,500,672,739,772.7417,613,162,821,558.0414,592,603,832,784.17
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_6c00100_6num_returns_StandardDed_6standard_6num_returns_ItemDed_6c04470_6c04600_6c04800_6taxbc_6c62100_6num_returns_AMT_6c09600_6c05800_6c07100_6othertaxes_6refund_6iitax_6payrolltax_6combined_6ubi_6benefit_cost_total_6benefit_value_total_6expanded_income_6aftertax_income_6
<$0K63,693.60-8,476,012,096.5063,693.601,514,975,336.780.000.000.000.000.00-8,476,012,096.500.000.000.000.000.001,363,714.29-1,363,714.2917,910,956.6416,547,242.350.00958,492,956.61958,492,956.61-7,426,693,415.10-7,443,240,657.45
=$0K1,137,873.340.001,137,873.3419,491,625,761.600.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,858,808.9233,438,532,952.3810,803,646.64102,906,616,225.2255,162.28303,506,282.820.002,305,125,879.91152,088,843.9633,150,282,726.930.000.00152,088,843.9656,836,138.090.003,231,904,525.89-3,136,651,820.023,764,397,460.47627,745,640.450.0015,676,458,811.4015,676,458,811.4048,948,718,164.2248,320,972,523.77
$10-20K11,426,243.75106,307,855,010.5611,299,474.23164,951,733,701.03126,769.521,941,118,751.830.007,390,272,885.84673,411,432.11104,627,716,931.7015,129.22627,606.00674,039,038.10182,451,009.630.0013,081,305,566.42-12,589,717,537.9512,507,209,733.50-82,507,804.450.0068,070,436,733.3668,070,436,733.36175,887,292,401.47175,969,800,205.92
$20-30K15,220,288.79208,757,955,401.4814,951,380.67231,984,414,464.75268,908.115,049,692,842.470.0063,638,224,018.686,039,934,810.43204,539,026,631.2025,993.9415,845,063.786,055,779,874.201,365,235,688.580.0018,103,904,592.74-13,413,360,407.1225,207,832,804.5111,794,472,397.390.00159,725,924,190.61159,725,924,190.61379,167,353,407.16367,372,881,009.77
$30-40K17,125,476.72357,038,675,322.4416,516,881.67273,250,204,520.95608,595.0510,946,429,640.190.00152,524,780,162.4115,830,018,902.22348,291,726,910.75162,820.27316,205,454.4816,146,224,356.704,067,992,745.520.0019,412,716,456.51-7,334,484,845.3342,731,007,821.1735,396,522,975.840.00215,990,604,371.10215,990,604,371.10595,761,877,927.34560,365,354,951.50
$40-50K15,610,344.49450,440,958,988.3114,730,406.02257,739,330,561.67879,938.4617,087,700,015.870.00231,846,221,315.0124,574,635,678.35437,332,893,009.7139,394.5478,958,212.1924,653,593,890.545,525,763,082.380.0014,435,374,910.754,692,455,897.4153,605,813,829.9258,298,269,727.330.00217,450,235,357.19217,450,235,357.19697,401,270,678.87639,103,000,951.54
$50-75K31,804,265.731,316,306,440,292.7127,837,563.61544,102,242,080.213,966,702.1284,673,712,684.340.00789,606,875,388.4888,963,072,039.031,252,696,516,908.4783,563.73198,536,839.4689,161,608,878.4917,721,285,769.480.0022,979,619,508.2948,460,703,600.71151,108,765,067.62199,569,468,668.330.00558,350,556,650.69558,350,556,650.691,944,685,948,093.221,745,116,479,424.89
$75-100K20,104,996.911,281,287,476,782.5516,231,855.46357,365,147,622.943,873,141.4688,033,152,356.710.00872,682,386,880.32109,905,484,759.011,220,027,642,031.60130,969.84452,809,124.14110,358,293,883.1515,007,197,360.630.005,592,533,394.6289,758,563,127.90137,421,273,759.70227,179,836,887.610.00413,882,000,987.54413,882,000,987.541,736,229,033,699.921,509,049,196,812.31
$100-200K40,604,010.984,404,241,775,414.0925,176,799.89607,092,298,311.8915,427,211.09474,988,721,578.770.003,365,617,655,422.22475,735,462,970.024,079,026,323,044.14173,197.01424,622,564.60476,160,085,534.6240,599,966,975.230.003,483,136,649.00432,076,981,910.39454,384,895,012.55886,461,876,922.940.001,090,963,204,467.641,090,963,204,467.645,669,984,119,605.124,783,522,242,682.19
$200-500K16,098,097.323,570,734,023,540.926,769,210.74172,996,827,443.979,328,886.58330,057,240,240.680.003,068,828,071,193.15554,779,791,136.363,342,310,796,564.5878,663.69312,134,623.82555,091,925,760.1817,859,888,609.541,980,254,398.64950,765,546.58538,261,526,002.71315,831,812,843.43854,093,338,846.150.00708,437,581,877.58708,437,581,877.584,481,485,173,857.113,627,391,835,010.96
$500-1000K1,154,434.10699,428,162,285.71315,414.348,556,588,503.72839,019.7636,903,250,714.870.00650,845,097,094.09155,342,949,149.86671,850,233,847.5915,420.3667,316,774.52155,410,265,924.3842,469,321.351,913,663,411.58143,628,415.07157,137,831,599.5436,185,010,167.40193,322,841,766.940.0042,549,742,583.3442,549,742,583.34765,693,540,333.60572,370,698,566.66
>$1000K468,036.21988,508,536,057.7471,557.621,880,483,160.51396,478.5922,960,629,743.270.00960,237,868,539.50293,494,570,904.16969,942,177,852.3831,885.84509,711,899.42294,004,282,803.588,460,963.167,625,660,497.170.00301,621,482,337.5828,062,658,513.17329,684,140,850.750.008,617,500,785.668,617,500,785.661,017,393,953,266.05687,709,812,415.29
ALL181,676,570.8413,408,014,379,952.39145,905,757.832,743,832,487,695.2435,770,813.011,072,945,154,851.830.0010,165,522,578,779.601,725,491,420,625.5012,655,319,324,362.55757,038.432,376,768,162.411,727,868,188,787.91102,437,547,663.6011,519,578,307.39101,416,253,280.161,535,533,966,151.541,260,828,587,970.092,796,362,554,121.630.003,500,672,739,772.743,500,672,739,772.7417,505,211,588,018.9814,708,849,033,897.35
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_6tax_cut_6perc_cut_6tax_inc_6perc_inc_6mean_6tot_change_6share_of_change_6ubi_6benefit_cost_total_6benefit_value_total_6pc_aftertaxinc_6
<$0K63,693.600.000.000.000.000.000.000.000.00958,492,956.61958,492,956.61-0.02
=$0K1,137,873.340.000.000.000.000.000.000.000.000.000.00nan
$0-10K10,858,808.9222,242.570.20284,404.572.620.414,434,129.290.490.0015,676,458,811.4015,676,458,811.400.72
$10-20K11,426,243.7536,591.680.32117,429.631.030.212,418,855.750.270.0068,070,436,733.3668,070,436,733.360.67
$20-30K15,220,288.7972,352.950.48319,842.282.100.294,339,535.840.480.00159,725,924,190.61159,725,924,190.610.67
$30-40K17,125,476.7242,707.880.25850,050.234.962.1536,879,779.534.070.00215,990,604,371.10215,990,604,371.100.77
$40-50K15,610,344.4931,793.860.201,301,560.418.343.2951,408,417.495.670.00217,450,235,357.19217,450,235,357.190.84
$50-75K31,804,265.737,703.560.021,607,379.135.052.6784,814,689.299.360.00558,350,556,650.69558,350,556,650.690.84
$75-100K20,104,996.911,464.950.01982,509.834.892.6252,672,253.315.810.00413,882,000,987.54413,882,000,987.540.87
$100-200K40,604,010.9821,766.160.053,362,186.638.286.35257,732,069.8028.440.001,090,963,204,467.641,090,963,204,467.640.91
$200-500K16,098,097.32127,443.100.791,145,944.807.1214.65235,803,520.2326.020.00708,437,581,877.58708,437,581,877.580.79
$500-1000K1,154,434.1017,556.251.52203,227.8417.6086.69100,073,741.4211.040.0042,549,742,583.3442,549,742,583.340.45
>$1000K468,036.2119,121.784.09139,674.5229.84161.6275,642,823.728.350.008,617,500,785.668,617,500,785.660.13
ALL181,676,570.84400,744.750.2210,314,209.855.684.99906,219,815.67100.000.003,500,672,739,772.743,500,672,739,772.740.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_6tax_cut_6perc_cut_6tax_inc_6perc_inc_6mean_6tot_change_6share_of_change_6ubi_6benefit_cost_total_6benefit_value_total_6pc_aftertaxinc_6
<$0K63,693.604,337.626.810.000.00-52.32-3,332,271.000.000.00958,492,956.61958,492,956.61-0.02
=$0K1,137,873.340.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,858,808.927,881,622.7972.580.000.00-64.50-700,351,160.960.310.0015,676,458,811.4015,676,458,811.400.72
$10-20K11,426,243.758,326,088.7772.870.000.00-203.41-2,324,198,464.291.030.0068,070,436,733.3668,070,436,733.360.67
$20-30K15,220,288.799,981,873.8065.580.000.00-306.64-4,667,129,984.112.070.00159,725,924,190.61159,725,924,190.610.67
$30-40K17,125,476.7211,805,420.5168.930.000.00-460.58-7,887,711,170.963.500.00215,990,604,371.10215,990,604,371.100.77
$40-50K15,610,344.4911,465,888.7373.450.000.00-634.14-9,899,207,675.494.400.00217,450,235,357.19217,450,235,357.190.84
$50-75K31,804,265.7324,474,828.7876.950.000.00-880.21-27,994,322,553.0112.440.00558,350,556,650.69558,350,556,650.690.84
$75-100K20,104,996.9115,939,501.1879.280.000.00-1,268.63-25,505,755,144.0911.330.00413,882,000,987.54413,882,000,987.540.87
$100-200K40,604,010.9832,667,712.9180.450.000.00-2,073.79-84,204,301,002.1337.410.001,090,963,204,467.641,090,963,204,467.640.91
$200-500K16,098,097.3213,561,435.2384.240.000.00-3,455.10-55,620,511,593.7424.710.00708,437,581,877.58708,437,581,877.580.79
$500-1000K1,154,434.101,042,804.3990.330.000.00-4,104.09-4,737,897,538.382.100.0042,549,742,583.3442,549,742,583.340.45
>$1000K468,036.21398,486.7885.146,909.221.48-3,328.67-1,557,935,909.740.690.008,617,500,785.668,617,500,785.660.13
ALL181,676,570.84137,550,001.4975.716,909.220.00-1,239.03-225,102,654,467.91100.000.003,500,672,739,772.743,500,672,739,772.740.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_6tax_cut_6perc_cut_6tax_inc_6perc_inc_6mean_6tot_change_6share_of_change_6ubi_6benefit_cost_total_6benefit_value_total_6pc_aftertaxinc_6
<$0K63,693.604,337.626.810.000.00-52.32-3,332,271.000.000.00958,492,956.61958,492,956.61-0.02
=$0K1,137,873.340.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,858,808.927,881,622.7972.580.000.00-64.09-695,917,031.670.310.0015,676,458,811.4015,676,458,811.400.72
$10-20K11,426,243.758,326,088.7772.870.000.00-203.20-2,321,779,608.551.040.0068,070,436,733.3668,070,436,733.360.67
$20-30K15,220,288.799,981,873.8065.580.000.00-306.35-4,662,790,448.272.080.00159,725,924,190.61159,725,924,190.610.67
$30-40K17,125,476.7211,805,420.5168.930.000.00-458.43-7,850,831,391.433.500.00215,990,604,371.10215,990,604,371.100.77
$40-50K15,610,344.4911,465,888.7373.450.000.00-630.85-9,847,799,258.004.390.00217,450,235,357.19217,450,235,357.190.84
$50-75K31,804,265.7324,474,828.7876.950.000.00-877.54-27,909,507,863.7212.450.00558,350,556,650.69558,350,556,650.690.84
$75-100K20,104,996.9115,939,501.1879.280.000.00-1,266.01-25,453,082,890.7811.350.00413,882,000,987.54413,882,000,987.540.87
$100-200K40,604,010.9832,667,712.9180.450.000.00-2,067.45-83,946,568,932.3437.440.001,090,963,204,467.641,090,963,204,467.640.91
$200-500K16,098,097.3213,561,435.2384.240.000.00-3,440.45-55,384,708,073.5124.700.00708,437,581,877.58708,437,581,877.580.79
$500-1000K1,154,434.101,042,804.3990.330.000.00-4,017.40-4,637,823,796.962.070.0042,549,742,583.3442,549,742,583.340.45
>$1000K468,036.21398,486.7885.146,909.221.48-3,167.05-1,482,293,086.020.660.008,617,500,785.668,617,500,785.660.13
ALL181,676,570.84137,550,001.4975.716,909.220.00-1,234.04-224,196,434,652.24100.000.003,500,672,739,772.743,500,672,739,772.740.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_6c00100_6num_returns_StandardDed_6standard_6num_returns_ItemDed_6c04470_6c04600_6c04800_6taxbc_6c62100_6num_returns_AMT_6c09600_6c05800_6c07100_6othertaxes_6refund_6iitax_6payrolltax_6combined_6ubi_6benefit_cost_total_6benefit_value_total_6expanded_income_6aftertax_income_6
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,165,906.3681,323,929,966.0218,067,924.38210,462,726,725.4997,981.98899,021,756.750.003,954,561,299.83269,244,240.3880,513,103,316.1215,129.22627,606.00269,871,846.3881,632,603.610.0010,095,960,653.88-9,907,721,411.1212,254,676,305.482,346,954,894.370.0039,640,074,524.7139,640,074,524.71122,350,733,618.39120,003,778,724.02
10-2018,152,774.73220,322,068,030.8917,836,110.81274,243,845,285.64316,663.925,892,921,783.970.0054,817,692,658.255,133,398,327.69215,322,728,280.8319,586.609,536,933.305,142,935,261.001,091,447,917.580.0021,084,929,300.20-17,033,441,956.7831,305,001,793.5014,271,559,836.710.00176,100,850,392.52176,100,850,392.52407,923,982,083.37393,652,422,246.65
20-3018,177,633.24362,491,344,430.2417,565,609.38287,356,440,288.63612,023.8610,893,017,085.390.00150,338,909,672.0515,577,278,866.14353,818,999,003.1999,248.10282,146,149.9515,859,425,016.094,031,254,936.900.0021,152,319,040.87-9,324,148,961.6751,562,097,419.7442,237,948,458.070.00226,012,245,633.54226,012,245,633.54616,363,618,078.40574,125,669,620.34
30-4018,163,249.06531,000,157,288.5117,161,823.24300,316,215,262.911,001,425.8219,267,991,113.920.00275,192,226,312.4929,125,701,187.38516,160,534,291.27109,374.05119,325,647.1929,245,026,834.576,591,757,346.610.0017,012,752,891.325,640,516,596.6475,069,743,712.6380,710,260,309.270.00245,641,976,376.81245,641,976,376.81816,195,677,978.66735,485,417,669.39
40-5018,150,769.52687,445,433,741.5416,276,477.56309,423,976,811.851,874,291.9636,209,912,143.830.00403,607,179,628.2943,930,993,542.22660,391,032,982.0682,240.04193,611,939.1944,124,605,481.4210,142,664,213.720.0013,524,409,704.9620,457,531,562.7493,866,851,856.72114,324,383,419.460.00303,547,127,438.45303,547,127,438.451,036,468,686,314.98922,144,302,895.52
50-6018,186,616.81906,404,945,440.4215,328,305.41321,020,077,061.782,858,311.4065,626,893,378.630.00572,594,099,171.5767,909,935,823.06857,776,327,630.2674,869.63148,500,113.3568,058,435,936.4011,116,525,744.210.0010,204,550,792.7146,737,359,399.48120,886,908,888.56167,624,268,288.040.00353,436,049,700.95353,436,049,700.951,311,375,415,187.061,143,751,146,899.02
60-7018,176,636.761,242,660,173,503.7614,189,797.85313,949,353,541.233,986,838.9094,546,121,380.750.00863,733,897,063.13110,459,979,415.401,177,272,121,015.45103,760.40618,022,561.27111,078,001,976.6714,853,757,768.910.004,935,100,838.4791,289,143,369.30155,902,921,593.59247,192,064,962.890.00396,525,210,162.04396,525,210,162.041,691,386,154,635.321,444,194,089,672.43
70-8018,165,354.851,678,182,242,084.6812,287,283.76290,284,960,349.885,878,071.09174,206,850,409.800.001,240,502,471,467.64164,441,135,787.051,556,324,033,346.5035,245.5057,464,061.20164,498,599,848.2415,581,089,444.320.001,519,495,923.81147,398,014,480.11205,028,536,852.67352,426,551,332.780.00475,241,361,206.55475,241,361,206.552,216,102,954,240.931,863,676,402,908.15
80-9018,162,780.932,359,342,323,150.589,780,455.98246,503,009,544.218,382,324.95269,427,296,933.880.001,853,953,515,959.41274,171,328,551.302,177,414,212,002.1191,615.0055,094,962.47274,226,423,513.7720,550,358,396.550.00892,149,337.16252,783,915,780.05287,320,231,802.05540,104,147,582.100.00518,200,958,812.61518,200,958,812.613,010,457,719,060.382,470,353,571,478.28
90-10018,174,848.585,334,117,898,571.877,411,969.45190,271,574,149.2410,762,879.13395,987,569,769.630.004,742,426,066,081.721,013,624,181,680.145,055,588,315,746.00125,483.55894,307,706.641,014,518,489,386.7918,354,372,145.5811,517,128,591.281,094,668,355.361,006,586,577,477.13452,734,272,213.061,459,320,849,690.190.00766,326,885,524.55766,326,885,524.556,384,537,880,360.564,925,217,030,670.37
ALL181,676,570.8413,403,290,516,208.50145,905,757.832,743,832,179,020.8635,770,813.011,072,957,595,756.540.0010,161,120,619,314.381,724,643,177,420.7712,650,581,407,613.80756,552.102,378,637,680.561,727,021,815,101.33102,394,860,517.9811,517,128,591.28101,516,336,838.751,534,627,746,335.881,485,931,242,437.993,020,558,988,773.870.003,500,672,739,772.733,500,672,739,772.7317,613,162,821,558.0414,592,603,832,784.17
90-959,090,989.561,615,405,649,186.644,431,584.11113,616,053,656.684,659,405.45154,568,762,793.200.001,348,948,597,760.99225,043,036,317.941,511,104,529,621.1828,502.0362,537,634.89225,105,573,952.8310,059,405,364.1764,868,122.95721,847,385.04214,389,189,326.57187,351,265,563.57401,740,454,890.140.00344,821,934,518.09344,821,934,518.092,057,560,869,697.291,655,820,414,807.15
95-997,266,860.921,948,105,600,087.992,539,207.8864,686,153,916.334,727,653.03175,952,792,720.150.001,708,119,605,428.89324,042,942,505.391,824,120,746,410.0634,698.62184,549,639.47324,227,492,144.868,171,189,160.271,781,688,852.69209,836,479.79317,628,155,357.48187,903,098,977.19505,531,254,334.670.00364,098,286,704.59364,098,286,704.592,447,241,150,726.121,941,709,896,391.45
Top 1%1,816,998.101,770,606,649,297.24441,177.4511,969,366,576.241,375,820.6465,466,014,256.280.001,685,357,862,891.84464,538,202,856.821,720,363,039,714.7762,282.90647,220,432.28465,185,423,289.10123,777,621.139,670,571,615.64162,984,490.53474,569,232,793.0877,479,907,672.30552,049,140,465.380.0057,406,664,301.8757,406,664,301.871,879,735,859,937.151,327,686,719,471.77
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_6c00100_6num_returns_StandardDed_6standard_6num_returns_ItemDed_6c04470_6c04600_6c04800_6taxbc_6c62100_6num_returns_AMT_6c09600_6c05800_6c07100_6othertaxes_6refund_6iitax_6payrolltax_6combined_6ubi_6benefit_cost_total_6benefit_value_total_6expanded_income_6aftertax_income_6
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,165,906.3681,331,170,217.3918,067,924.38210,462,726,725.4997,981.98899,021,756.750.003,954,561,299.83269,244,240.3880,520,343,567.5015,129.22627,606.00269,871,846.3881,632,603.610.0010,089,906,063.24-9,901,666,820.4810,333,461,441.93431,794,621.450.0039,640,074,524.7139,640,074,524.71121,397,366,437.98120,965,571,816.53
10-2018,152,774.73220,439,825,972.4217,836,110.81274,243,845,285.64316,663.925,892,587,036.140.0054,870,208,411.075,138,625,997.23215,440,904,657.1419,586.609,536,933.305,148,162,930.541,092,270,057.970.0021,085,318,883.27-17,029,426,010.7026,412,097,531.199,382,671,520.490.00176,100,850,392.52176,100,850,392.52405,595,287,893.75396,212,616,373.26
20-3018,177,633.24362,823,052,449.3817,565,609.38287,356,748,963.01612,023.8610,891,773,669.840.00150,550,479,840.1215,599,597,874.94354,152,261,291.7799,248.10282,146,149.9515,881,744,024.904,036,225,871.490.0021,135,934,831.91-9,290,416,678.5043,523,739,401.7434,233,322,723.240.00226,012,245,633.54226,012,245,633.54612,676,147,088.54578,442,824,365.30
30-4018,163,249.06531,493,119,377.2517,161,823.24300,316,215,262.911,001,425.8219,265,290,204.620.00275,622,332,895.7429,170,608,997.65516,656,872,516.63109,374.05119,325,647.1929,289,934,644.846,602,479,942.540.0016,987,599,102.585,699,855,599.7263,366,838,882.6269,066,694,482.350.00245,641,976,376.81245,641,976,376.81810,828,603,295.13741,761,908,812.78
40-5018,150,769.52687,744,607,961.0716,276,477.56309,423,976,811.851,874,291.9636,209,912,143.830.00403,860,395,998.8843,958,261,296.11660,690,207,201.5982,240.04193,611,939.1944,151,873,235.3010,152,692,193.950.0013,506,893,176.9220,492,287,864.4379,185,859,127.8599,678,146,992.280.00303,547,127,438.45303,547,127,438.451,029,415,983,764.24929,737,836,771.96
50-6018,186,616.81906,856,156,408.4315,328,305.41321,020,077,061.782,858,311.4065,626,748,254.590.00573,002,936,327.5767,958,006,743.89858,227,616,321.6674,869.63148,482,551.5468,106,489,295.4311,126,049,737.800.0010,186,896,452.4346,793,543,105.20101,986,997,066.81148,780,540,172.010.00353,436,049,700.95353,436,049,700.951,302,343,243,268.151,153,562,703,096.14
60-7018,176,636.761,243,065,220,757.4214,189,797.85313,949,353,541.233,986,838.9094,545,410,250.450.00864,119,915,104.17110,517,489,238.441,177,678,057,181.98103,760.40618,022,561.27111,135,511,799.7114,859,172,100.400.004,925,897,486.3591,350,442,212.96131,505,624,259.25222,856,066,472.210.00396,525,210,162.04396,525,210,162.041,679,574,141,972.231,456,718,075,500.02
70-8018,165,354.851,678,609,050,266.9612,287,283.76290,284,960,349.885,878,071.09174,205,282,916.230.001,240,900,430,442.07164,498,328,590.351,556,752,771,272.6835,245.5057,464,061.20164,555,792,651.5415,581,955,318.440.001,518,147,429.47147,455,689,903.63172,928,787,010.94320,384,476,914.570.00475,241,361,206.55475,241,361,206.552,200,463,197,033.311,880,078,720,118.74
80-9018,162,780.932,360,199,266,888.889,780,455.98246,503,009,544.218,382,324.95269,426,117,830.770.001,854,788,188,095.98274,344,992,150.712,178,272,028,786.6291,615.0058,387,415.01274,403,379,565.7220,554,859,040.700.00885,265,892.35252,963,254,632.66242,441,740,099.72495,404,994,732.380.00518,200,958,812.61518,200,958,812.612,988,865,663,759.752,493,460,669,027.37
90-10018,174,848.585,335,452,909,653.207,411,969.45190,271,574,149.2410,762,879.13395,983,010,788.610.004,743,853,130,364.171,014,036,265,495.795,056,928,261,564.99125,969.88889,163,297.761,014,925,428,793.5518,350,210,796.6811,519,578,307.391,094,393,961.641,007,000,402,342.62389,143,443,148.041,396,143,845,490.660.00766,326,885,524.55766,326,885,524.556,354,051,953,505.904,957,908,108,015.24
ALL181,676,570.8413,408,014,379,952.39145,905,757.832,743,832,487,695.2435,770,813.011,072,945,154,851.830.0010,165,522,578,779.601,725,491,420,625.5012,655,319,324,362.55757,038.432,376,768,162.411,727,868,188,787.91102,437,547,663.6011,519,578,307.39101,416,253,280.161,535,533,966,151.541,260,828,587,970.092,796,362,554,121.630.003,500,672,739,772.733,500,672,739,772.7317,505,211,588,018.9814,708,849,033,897.35
90-959,090,989.561,615,726,387,751.154,431,584.11113,616,053,656.684,659,405.45154,567,224,487.190.001,349,274,195,604.23225,117,246,376.571,511,426,710,506.4628,091.4663,275,757.93225,180,522,134.4910,059,144,286.2065,075,889.72721,847,385.04214,464,606,352.97158,467,741,285.16372,932,347,638.130.00344,821,934,518.09344,821,934,518.092,043,439,345,003.341,670,506,997,365.20
95-997,266,860.921,948,550,375,899.442,539,207.8864,686,153,916.334,727,653.03175,949,855,253.100.001,708,627,286,991.15324,175,633,074.811,824,568,910,628.4535,595.52183,091,262.52324,358,724,337.338,167,785,775.571,783,807,518.12209,836,479.79317,764,909,600.08160,397,391,604.96478,162,301,205.050.00364,098,286,704.59364,098,286,704.592,433,930,574,815.351,955,768,273,610.30
Top 1%1,816,998.101,771,176,146,002.61441,177.4511,969,366,576.241,375,820.6465,465,931,048.330.001,685,951,647,768.78464,743,386,044.411,720,932,640,430.0762,282.90642,796,277.32465,386,182,321.73123,280,734.919,670,694,899.55162,710,096.81474,770,886,389.5670,278,310,257.92545,049,196,647.480.0057,406,664,301.8757,406,664,301.871,876,682,033,687.221,331,632,837,039.74
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_6tax_cut_6perc_cut_6tax_inc_6perc_inc_6mean_6tot_change_6share_of_change_6ubi_6benefit_cost_total_6benefit_value_total_6pc_aftertaxinc_6
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p18,165,906.3646,208.150.25334,166.241.840.336,054,590.640.670.0039,640,074,524.7139,640,074,524.710.80
10-2018,152,774.7380,765.830.44298,215.401.640.224,015,946.090.440.00176,100,850,392.52176,100,850,392.520.65
20-3018,177,633.2446,921.100.26853,492.934.701.8633,732,283.173.720.00226,012,245,633.54226,012,245,633.540.75
30-4018,163,249.0631,793.860.181,458,099.738.033.2759,339,003.096.550.00245,641,976,376.81245,641,976,376.810.85
40-5018,150,769.524,178.480.02822,745.504.531.9134,756,301.693.840.00303,547,127,438.45303,547,127,438.450.82
50-6018,186,616.814,990.030.03983,967.175.413.0956,183,705.726.200.00353,436,049,700.95353,436,049,700.950.86
60-7018,176,636.760.000.00973,048.855.353.3761,298,843.666.760.00396,525,210,162.04396,525,210,162.040.87
70-8018,165,354.859,342.200.051,482,266.128.163.1857,675,423.526.360.00475,241,361,206.55475,241,361,206.550.88
80-9018,162,780.9312,423.960.071,595,597.338.789.87179,338,852.6119.790.00518,200,958,812.61518,200,958,812.610.94
90-10018,174,848.58164,121.130.901,512,610.588.3222.77413,824,865.4945.660.00766,326,885,524.55766,326,885,524.550.66
ALL181,676,570.84400,744.750.2210,314,209.855.684.99906,219,815.67100.000.003,500,672,739,772.733,500,672,739,772.730.80
90-959,090,989.5611,807.940.13606,724.826.678.3075,417,026.418.320.00344,821,934,518.09344,821,934,518.090.89
95-997,266,860.92110,601.791.52504,830.696.9518.82136,754,242.6015.090.00364,098,286,704.59364,098,286,704.590.72
Top 1%1,816,998.1041,711.392.30401,055.0722.07110.98201,653,596.4822.250.0057,406,664,301.8757,406,664,301.870.30
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_6tax_cut_6perc_cut_6tax_inc_6perc_inc_6mean_6tot_change_6share_of_change_6ubi_6benefit_cost_total_6benefit_value_total_6pc_aftertaxinc_6
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,165,906.3612,866,355.4870.830.000.00-105.76-1,921,214,863.560.850.0039,640,074,524.7139,640,074,524.710.80
10-2018,152,774.7311,747,507.6464.710.000.00-269.54-4,892,904,262.312.170.00176,100,850,392.52176,100,850,392.520.65
20-3018,177,633.2412,462,378.4568.560.000.00-442.21-8,038,358,018.003.570.00226,012,245,633.54226,012,245,633.540.75
30-4018,163,249.0613,449,430.6874.050.000.00-644.32-11,702,904,830.015.200.00245,641,976,376.81245,641,976,376.810.85
40-5018,150,769.5213,605,834.3574.960.000.00-808.84-14,680,992,728.876.520.00303,547,127,438.45303,547,127,438.450.82
50-6018,186,616.8114,480,653.4379.620.000.00-1,039.22-18,899,911,821.758.400.00353,436,049,700.95353,436,049,700.950.86
60-7018,176,636.7614,426,770.1779.370.000.00-1,342.23-24,397,297,334.3510.840.00396,525,210,162.04396,525,210,162.040.87
70-8018,165,354.8514,111,738.6177.680.000.00-1,767.09-32,099,749,841.7214.260.00475,241,361,206.55475,241,361,206.550.88
80-9018,162,780.9314,973,384.0582.440.000.00-2,470.90-44,878,491,702.3319.940.00518,200,958,812.61518,200,958,812.610.94
90-10018,174,848.5815,425,948.6184.886,909.220.04-3,498.84-63,590,829,065.0128.250.00766,326,885,524.55766,326,885,524.550.66
ALL181,676,570.84137,550,001.4975.716,909.220.00-1,239.03-225,102,654,467.91100.000.003,500,672,739,772.733,500,672,739,772.730.80
90-959,090,989.567,815,508.4585.970.000.00-3,177.16-28,883,524,278.4112.830.00344,821,934,518.09344,821,934,518.090.89
95-997,266,860.925,988,981.5682.410.000.00-3,785.09-27,505,707,372.2312.220.00364,098,286,704.59364,098,286,704.590.72
Top 1%1,816,998.101,621,458.6089.246,909.220.38-3,963.46-7,201,597,414.383.200.0057,406,664,301.8757,406,664,301.870.30
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_6tax_cut_6perc_cut_6tax_inc_6perc_inc_6mean_6tot_change_6share_of_change_6ubi_6benefit_cost_total_6benefit_value_total_6pc_aftertaxinc_6
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,165,906.3612,866,355.4870.830.000.00-105.43-1,915,160,272.910.850.0039,640,074,524.7139,640,074,524.710.80
10-2018,152,774.7311,747,507.6464.710.000.00-269.32-4,888,888,316.222.180.00176,100,850,392.52176,100,850,392.520.65
20-3018,177,633.2412,462,378.4568.560.000.00-440.36-8,004,625,734.833.570.00226,012,245,633.54226,012,245,633.540.75
30-4018,163,249.0613,449,430.6874.050.000.00-641.05-11,643,565,826.925.190.00245,641,976,376.81245,641,976,376.810.85
40-5018,150,769.5213,605,834.3574.960.000.00-806.92-14,646,236,427.186.530.00303,547,127,438.45303,547,127,438.450.82
50-6018,186,616.8114,480,653.4379.620.000.00-1,036.13-18,843,728,116.038.410.00353,436,049,700.95353,436,049,700.950.86
60-7018,176,636.7614,426,770.1779.370.000.00-1,338.86-24,335,998,490.6810.850.00396,525,210,162.04396,525,210,162.040.87
70-8018,165,354.8514,111,738.6177.680.000.00-1,763.91-32,042,074,418.2014.290.00475,241,361,206.55475,241,361,206.550.88
80-9018,162,780.9314,973,384.0582.440.000.00-2,461.03-44,699,152,849.7219.940.00518,200,958,812.61518,200,958,812.610.94
90-10018,174,848.5815,425,948.6184.886,909.220.04-3,476.07-63,177,004,199.5328.180.00766,326,885,524.55766,326,885,524.550.66
ALL181,676,570.84137,550,001.4975.716,909.220.00-1,234.04-224,196,434,652.24100.000.003,500,672,739,772.733,500,672,739,772.730.80
90-959,090,989.567,815,508.4585.970.000.00-3,168.86-28,808,107,252.0012.850.00344,821,934,518.09344,821,934,518.090.89
95-997,266,860.925,988,981.5682.410.000.00-3,766.27-27,368,953,129.6312.210.00364,098,286,704.59364,098,286,704.590.72
Top 1%1,816,998.101,621,458.6089.246,909.220.38-3,852.48-6,999,943,817.903.120.0057,406,664,301.8757,406,664,301.870.30
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_7.json b/webapp/apps/taxbrain/tests/response_year_7.json index b07eb5c7..931b773c 100644 --- a/webapp/apps/taxbrain/tests/response_year_7.json +++ b/webapp/apps/taxbrain/tests/response_year_7.json @@ -1 +1 @@ -{"aggr_1": {"ind_tax_7": "1689713493450.29", "payroll_tax_7": "1622431911166.10", "combined_tax_7": "3312145404616.39"}, "aggr_2": {"ind_tax_7": "2270815537179.89", "payroll_tax_7": "2398726408009.91", "combined_tax_7": "4669541945189.80"}, "diff_ptax_xdec": {"10-20_7": ["18661877.83", "0.00", "0.00", "12174073.93", "65.23", "885.11", "16517800014.84", "2.13", "323791110801.25", "168171735833.03", "168171735833.03", "68.91"], "70-80_7": ["18661570.56", "0.00", "0.00", "14968090.48", "80.21", "5972.80", "111461807006.02", "14.36", "517610971049.56", "494182171425.95", "494182171425.95", "18.47"], "0-10z_7": ["1324688.91", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "27371718058.70", "0.00", "0.00", "inf"], "0-10n_7": ["99625.56", "0.00", "0.00", "21488.81", "21.57", "300.79", "29966739.85", "0.00", "2289581685.65", "1129106277.48", "1129106277.48", "-6.82"], "40-50_7": ["18661471.56", "0.00", "0.00", "14239377.55", "76.30", "2680.41", "50020468509.27", "6.44", "417192832671.51", "308876166538.71", "308876166538.71", "34.42"], "0-10p_7": ["17236792.61", "0.00", "0.00", "12697102.66", "73.66", "347.09", "5982659114.79", "0.77", "254077580852.50", "40998792900.90", "40998792900.90", "180.50"], "30-40_7": ["18662741.01", "0.00", "0.00", "13632780.42", "73.05", "1993.98", "37213197036.57", "4.79", "381249779092.89", "268868866859.59", "268868866859.59", "40.73"], "50-60_7": ["18661387.17", "0.00", "0.00", "14616454.16", "78.32", "3512.36", "65545486760.62", "8.44", "449329693678.31", "355987449731.12", "355987449731.12", "28.91"], "Top 1%_7": ["1866580.93", "1635.64", "0.09", "1644566.44", "88.11", "13290.91", "24808553792.18", "3.20", "57296020280.66", "81533786354.32", "81533786354.32", "1.67"], "80-90_7": ["18661391.14", "0.00", "0.00", "15390980.96", "82.47", "8249.46", "153946491052.34", "19.83", "552208675374.15", "570160454288.47", "570160454288.47", "13.55"], "20-30_7": ["18660105.57", "0.00", "0.00", "13157137.89", "70.51", "1467.23", "27378632261.69", "3.53", "353598497465.00", "215210510112.09", "215210510112.09", "49.83"], "ALL_7": ["186614949.59", "1635.64", "0.00", "141729322.25", "75.95", "4159.87", "776294496843.81", "100.00", "4338856315783.00", "3612799088058.24", "3612799088058.24", "20.81"], "90-100_7": ["18661602.18", "1635.64", "0.01", "16001838.52", "85.75", "11961.87", "223227679028.50", "28.76", "578132540657.53", "773383034990.99", "773383034990.99", "5.98"], "95-99_7": ["7464238.73", "0.00", "0.00", "6426880.14", "86.10", "13043.13", "97357066034.25", "12.54", "233889423456.87", "354786583751.37", "354786583751.37", "5.98"], "90-95_7": ["9330782.52", "0.00", "0.00", "7930391.94", "84.99", "10831.04", "101062059202.06", "13.02", "286947096920.00", "337062664885.30", "337062664885.30", "9.47"], "60-70_7": ["18661695.49", "0.00", "0.00", "14829996.87", "79.47", "4553.19", "84970309319.32", "10.95", "482003334395.96", "415830799099.91", "415830799099.91", "23.81"]}, "diff_comb_xbin": {">$1000K_7": ["555284.98", "140.30", "0.03", "549963.62", "99.04", "23376.25", "12980480240.81", "0.96", "16946761995.52", "17352208280.80", "17352208280.80", "0.85"], "ALL_7": ["186614949.59", "140.30", "0.00", "158932113.62", "85.17", "7273.78", "1357396540573.41", "100.00", "4338856315783.00", "3612799088058.24", "3612799088058.24", "20.81"], "$200-500K_7": ["19031850.76", "0.00", "0.00", "18444302.08", "96.91", "18142.17", "345279076961.03", "25.44", "588860641047.77", "754975946791.18", "754975946791.18", "8.08"], "$20-30K_7": ["15709339.40", "0.00", "0.00", "10761287.15", "68.50", "2415.07", "37939206718.21", "2.79", "276365605535.07", "156929707391.96", "156929707391.96", "63.10"], "<$0K_7": ["99625.56", "0.00", "0.00", "25570.59", "25.67", "503.37", "50148444.93", "0.00", "2289581685.65", "1129106277.48", "1129106277.48", "-6.82"], "$100-200K_7": ["42434074.51", "0.00", "0.00", "39831177.66", "93.87", "11172.49", "474094181818.73", "34.93", "1193424352652.22", "1159637417338.76", "1159637417338.76", "16.91"], "$30-40K_7": ["17052750.98", "0.00", "0.00", "12887827.98", "75.58", "3397.48", "57936457962.09", "4.27", "324905422019.68", "199096804118.12", "199096804118.12", "49.05"], "$75-100K_7": ["20977290.42", "0.00", "0.00", "18957382.90", "90.37", "6938.82", "145557585181.55", "10.72", "524647593879.41", "435520034973.47", "435520034973.47", "26.20"], "$500-1000K_7": ["1575387.70", "0.00", "0.00", "1563403.75", "99.24", "22606.06", "35613307110.36", "2.62", "48624585756.07", "81899583098.62", "81899583098.62", "2.79"], "$50-75K_7": ["29827108.50", "0.00", "0.00", "25453719.43", "85.34", "5264.30", "157018707334.90", "11.57", "676502997406.88", "509187573999.85", "509187573999.85", "33.38"], "$40-50K_7": ["15766785.12", "0.00", "0.00", "12524220.05", "79.43", "3966.61", "62540692525.66", "4.61", "319374742483.91", "222065128188.44", "222065128188.44", "40.97"], "$0-10K_7": ["11094104.78", "0.00", "0.00", "8871097.15", "79.96", "817.53", "9069750003.20", "0.67", "155999216003.31", "16297054090.58", "16297054090.58", "289.12"], "=$0K_7": ["1324688.91", "0.00", "0.00", "393130.22", "29.68", "408.03", "540514585.29", "0.04", "27371718058.70", "0.00", "0.00", "inf"], "$10-20K_7": ["11166657.97", "0.00", "0.00", "8669031.04", "77.63", "1681.47", "18776431686.64", "1.38", "183543097258.81", "58708523508.98", "58708523508.98", "97.54"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"10-20_7": ["18661877.83", "558261481912.97", "18306309.50", "359792222224.83", "347985.62", "6673333689.22", "0.00", "217797568209.46", "22813845325.25", "552395135164.75", "1343582.27", "1837808459.92", "24651653785.17", "7606347102.47", "0.00", "9680721792.23", "7364584890.47", "49926747443.08", "57291332333.55", "323791110801.25", "168171735833.03", "168171735833.03", "747520610984.18", "690229278650.63"], "70-80_7": ["18661570.56", "2319179298071.78", "14666629.10", "422485822079.98", "3990775.96", "131218476842.46", "0.00", "1763972867105.40", "257917388108.26", "2226661098839.64", "57316.47", "216246853.01", "258133634961.27", "21564310747.46", "0.00", "310510495.68", "236258813718.13", "336631592566.30", "572890406284.43", "517610971049.56", "494182171425.95", "494182171425.95", "2951190009776.50", "2378299603492.07"], "0-10z_7": ["1324688.91", "27354170793.73", "1311619.56", "29883706705.65", "11387.06", "20175663.60", "0.00", "2661476288.48", "276623870.80", "27336613645.59", "334967.15", "495410990.74", "772034861.54", "231520276.25", "0.00", "0.00", "540514585.29", "0.00", "540514585.29", "27371718058.70", "0.00", "0.00", "27371718058.70", "26831203473.40"], "0-10n_7": ["99625.56", "-13088896932.72", "22595.13", "2340302028.38", "66.45", "11279716.56", "0.00", "1182495059.06", "286251823.43", "-13099407642.69", "0.00", "0.00", "286251823.43", "3340836.79", "3231720.78", "310009.48", "285832697.93", "93855617.99", "379688315.93", "2289581685.65", "1129106277.48", "1129106277.48", "-29402066553.48", "-29781754869.40"], "40-50_7": ["18661471.56", "1150134021859.74", "17651982.41", "417631699975.77", "999046.32", "25519955148.40", "0.00", "712251415037.93", "84651160600.25", "1129953323876.01", "271866.96", "703519848.58", "85354680448.83", "17075531116.85", "0.00", "1699881299.46", "66579268032.52", "151445926209.14", "218025194241.66", "417192832671.51", "308876166538.71", "308876166538.71", "1531806881377.33", "1313781687135.67"], "0-10p_7": ["17236792.61", "344225009921.69", "16813909.26", "244275047062.52", "414783.98", "5306345594.93", "0.00", "113849736106.55", "11406719623.89", "339278503835.55", "4453151.65", "4547737246.09", "15954456869.98", "5270160832.73", "0.00", "8244603159.21", "2439692878.04", "18035471396.69", "20475164274.73", "254077580852.50", "40998792900.90", "40998792900.90", "388856093036.49", "368380928761.75"], "30-40_7": ["18662741.01", "912293168385.77", "17914370.00", "395914855874.02", "738902.91", "17405710611.43", "0.00", "508663392019.09", "56641964564.97", "898033436374.47", "401613.81", "861832099.01", "57503796663.98", "13826949094.29", "0.00", "2682479187.75", "40994368381.94", "112939927217.36", "153934295599.29", "381249779092.89", "268868866859.59", "268868866859.59", "1240537484229.16", "1086603188629.87"], "50-60_7": ["18661387.17", "1442728095657.93", "17035256.89", "431588069049.78", "1621307.74", "43876563925.95", "0.00", "970541373694.25", "124604619415.75", "1409393178662.24", "163255.83", "528735667.71", "125133355083.46", "18893305341.07", "0.00", "1026082571.26", "105213967171.13", "198206037338.40", "303420004509.52", "449329693678.31", "355987449731.12", "355987449731.12", "1885928450118.81", "1582508445609.29"], "Top 1%_7": ["1866580.93", "1974368120725.40", "546558.45", "17151682319.64", "1319881.17", "68968800475.30", "0.00", "1881302875477.41", "511893902736.39", "1920747160758.32", "99572.10", "1186875630.34", "513080778366.72", "135400871.76", "10025627772.87", "20546840.87", "522950458426.97", "108147802534.99", "631098260961.95", "57296020280.66", "81533786354.32", "81533786354.32", "2132644423137.27", "1501546162175.32"], "80-90_7": ["18661391.14", "3112599352669.56", "12498045.30", "381442325264.46", "6157045.20", "223227222803.42", "0.00", "2499083817029.55", "402816067529.44", "2957657275451.07", "102756.82", "278184499.28", "403094252028.72", "22942323555.18", "16891795.24", "203277891.14", "379965542377.64", "465564758575.97", "845530300953.61", "552208675374.15", "570160454288.47", "570160454288.47", "3897582024373.71", "3052051723420.10"], "20-30_7": ["18660105.57", "738804726818.37", "18090962.98", "377837766787.27", "559654.01", "13168932758.00", "0.00", "364041461756.60", "39545222923.35", "727623126621.32", "621613.74", "1224778987.84", "40770001911.19", "11521832041.68", "0.00", "5332957404.53", "23915212464.98", "83118196130.31", "107033408595.29", "353598497465.00", "215210510112.09", "215210510112.09", "996938900109.35", "889905491514.05"], "ALL_7": ["186614949.59", "18953125212893.12", "159540435.79", "3790664915029.55", "26924905.22", "936874554271.50", "0.00", "14295142027069.72", "2433919859689.51", "18274861259748.53", "8084112.84", "12674547926.70", "2446594407616.21", "158959990411.45", "13127909034.51", "29946789059.38", "2270815537179.89", "2398726408009.91", "4669541945189.80", "4338856315783.00", "3612799088058.24", "3612799088058.24", "23709973078237.88", "19040431133048.07"], "90-100_7": ["18661602.18", "6538542844603.76", "9208026.88", "291840476869.87", "9449085.92", "393128575079.06", "0.00", "5831613088378.48", "1256086016177.92", "6253790731588.52", "227819.57", "1579797367.88", "1257665813545.80", "19691939581.12", "13107785518.49", "144536535.37", "1250937122947.80", "726001836589.80", "1976938959537.60", "578132540657.53", "773383034990.99", "773383034990.99", "7729215087369.42", "5752276127831.83"], "95-99_7": ["7464238.73", "2447522464050.39", "3442900.60", "109068641546.04", "4020480.81", "166462392033.93", "0.00", "2162872876222.99", "426505704973.25", "2327319171559.37", "83605.44", "287433819.89", "426793138793.14", "7922067812.58", "2537348213.75", "59073502.88", "421349345691.42", "309019381361.31", "730368727052.74", "233889423456.87", "354786583751.37", "354786583751.37", "2983630510551.35", "2253261783498.61"], "90-95_7": ["9330782.52", "2116652259827.98", "5218567.83", "165620153004.19", "4108723.94", "157697382569.83", "0.00", "1787437336678.09", "317686408468.28", "2005724399270.84", "44642.03", "105487917.65", "317791896385.94", "11634470896.77", "544809531.87", "64916191.62", "306637318829.41", "308834652693.50", "615471971522.91", "286947096920.00", "337062664885.30", "337062664885.30", "2612940153680.81", "1997468182157.90"], "60-70_7": ["18661695.49", "1822091939130.53", "16020728.78", "435632621107.02", "2634864.05", "77317982438.48", "0.00", "1309483336384.86", "176873979726.20", "1765838243332.05", "106168.57", "400495906.63", "177274475632.83", "20332429885.56", "0.00", "621428713.28", "156320617034.00", "256762058924.89", "413082675958.89", "482003334395.96", "415830799099.91", "415830799099.91", "2342427885357.71", "1929345209398.82"]}, "aggr_d": {"ind_tax_7": "581102043729.60", "payroll_tax_7": "776294496843.81", "combined_tax_7": "1357396540573.41"}, "dropq_version": "0.17.0", "dist1_xdec": {"10-20_7": ["18661877.83", "234744138592.99", "13827081.07", "292788630213.43", "373073.15", "7914118012.67", "0.00", "57096987737.31", "5480207180.94", "227796171372.91", "52316.11", "49934138.09", "5530141319.03", "1394215852.85", "0.00", "21344864575.00", "-17208939108.82", "33408947428.24", "16200008319.41", "0.00", "177265833705.30", "177265833705.30", "424838465529.05", "408638457209.63"], "70-80_7": ["18661570.56", "1802973903157.66", "11372843.70", "301108480517.11", "6515896.42", "194433313166.97", "0.00", "1335224893390.31", "176551237336.05", "1669445143702.60", "24919.10", "118873682.29", "176670111018.33", "19706993373.48", "0.00", "2634598193.76", "154328519451.09", "225169785560.28", "379498305011.37", "0.00", "502027390763.49", "502027390763.49", "2387061365795.41", "2007563060784.04"], "0-10z_7": ["1324688.91", "-17547264.97", "0.00", "25036502773.29", "0.00", "0.00", "0.00", "0.00", "0.00", "-17547264.97", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "0-10n_7": ["99625.56", "-15375326057.44", "10137.73", "1958577847.57", "66.45", "11279716.56", "0.00", "1076398972.20", "264211525.63", "-15385836767.42", "0.00", "0.00", "264211525.63", "1570139.06", "3231720.78", "222114.49", "265650992.85", "63888878.14", "329539870.99", "0.00", "1199203646.58", "1199203646.58", "-31633381679.03", "-31962921550.02"], "40-50_7": ["18661471.56", "734274335356.44", "15190585.21", "333957414647.80", "1748283.20", "38913872856.09", "0.00", "425252844986.69", "46247577785.01", "704638906528.74", "31210.48", "135506206.46", "46383083991.47", "9997488784.64", "0.00", "14414899720.76", "21970695486.07", "101425457699.87", "123396153185.94", "0.00", "318769753754.65", "318769753754.65", "1100772034499.49", "977375881313.54"], "0-10p_7": ["17236792.61", "90162827450.60", "14522271.65", "204834336453.50", "41962.67", "538148884.30", "0.00", "3619792766.70", "244482250.85", "89651034218.51", "9054.95", "5275129.05", "249757379.90", "103501738.28", "0.00", "10333027364.08", "-10186771722.46", "12052812281.90", "1866040559.44", "0.00", "42394350448.07", "42394350448.07", "133198138555.17", "131332097995.73"], "30-40_7": ["18662741.01", "532491437591.17", "15183165.08", "320580973875.01", "1049519.92", "22798854580.97", "0.00", "269709615883.60", "28722870759.49", "514238808813.15", "26457.13", "61549991.87", "28784420751.36", "6576709979.52", "0.00", "18570472642.52", "3637238129.31", "75726730180.78", "79363968310.10", "0.00", "278246989566.63", "278246989566.63", "851481850806.30", "772117882496.20"], "50-60_7": ["18661161.77", "994680314829.43", "14355942.26", "335465643848.98", "2955738.41", "71527331142.01", "0.00", "639290060408.28", "76279431808.73", "942110339394.62", "38904.07", "146083264.15", "76425515072.88", "13595279067.05", "0.00", "8974528952.03", "53855707053.80", "132657804241.67", "186513511295.47", "0.00", "365009440495.40", "365009440495.40", "1414069585418.11", "1227556074122.65"], "Top 1%_7": ["1866580.93", "1919072524864.67", "437137.35", "11937302679.08", "1419503.88", "71972032661.64", "0.00", "1828409852206.19", "494116095075.96", "1863560318165.98", "97279.49", "1109179141.07", "495225274217.02", "98561856.04", "9952960177.32", "108103718.04", "504971568820.26", "83339248742.80", "588310817563.06", "0.00", "81791278012.00", "81791278012.00", "2065131798547.83", "1476820980984.77"], "80-90_7": ["18661391.14", "2562627009217.47", "9125102.90", "252140940664.35", "9003284.32", "304432490669.47", "0.00", "2017706222127.71", "301023048406.49", "2356454680067.79", "50204.29", "146679650.98", "301169728057.47", "22104644696.31", "587938.06", "1320413293.27", "277745258005.94", "311618267523.63", "589363525529.57", "0.00", "576773746545.76", "576773746545.76", "3277223748766.86", "2687860223237.29"], "20-30_7": ["18660105.57", "386300685289.31", "14772291.18", "306771248235.33", "703044.39", "15782381075.15", "0.00", "157268620210.20", "16158807107.51", "373096580429.76", "40770.60", "66022086.54", "16224829194.06", "4147598791.76", "0.00", "23172564132.52", "-11095333730.22", "55739563868.62", "44644230138.39", "0.00", "223057272777.30", "223057272777.30", "638589448900.23", "593945218761.83"], "ALL_7": ["186614949.59", "14629975613277.41", "128373920.51", "2895146072175.34", "38414660.37", "1233817615783.67", "0.00", "11143834912567.38", "1896574887148.51", "13757721725964.50", "498408.83", "2321510965.75", "1898896398114.26", "114620518172.23", "12390233905.95", "106952620397.70", "1689713493450.29", "1622431911166.10", "3312145404616.39", "0.00", "3687137666682.49", "3687137666682.49", "19072655978604.03", "15760510573987.64"], "90-100_7": ["18661602.18", "5965670890971.17", "6802343.91", "194090374023.20", "11511515.32", "454932458967.83", "0.00", "5306660272218.16", "1126210877330.92", "5641855482822.95", "190423.00", "1447211172.99", "1127658088503.91", "20171713963.36", "12386414247.11", "983703827.04", "1118889084960.63", "502774157561.30", "1621663242521.93", "0.00", "778139137729.06", "778139137729.06", "7049385787144.46", "5427722544622.53"], "95-99_7": ["7464238.73", "2215510014556.27", "2513650.88", "72628731006.67", "4784086.22", "189461764555.76", "0.00", "1949224059594.29", "373555143837.21", "2080876715826.05", "64090.81", "273287343.55", "373828431180.76", "8651256086.34", "2230139074.84", "403361816.60", "367003952352.66", "211662315327.06", "578666267679.72", "0.00", "356720280173.95", "356720280173.95", "2704855417602.85", "2126189149923.13"], "90-95_7": ["9330782.52", "1831088351550.24", "3851555.68", "109524340337.46", "5307925.22", "193498661750.43", "0.00", "1529026360417.68", "258539638417.75", "1697418448830.93", "29052.70", "64744688.38", "258604383106.13", "11421896020.98", "203314994.96", "472238292.40", "246913563787.71", "207772593491.44", "454686157279.14", "0.00", "339627579543.11", "339627579543.11", "2279398570993.77", "1824712413714.63"], "60-70_7": ["18661920.89", "1341442944143.57", "13212155.82", "326412949075.76", "4512276.12", "122533366711.67", "0.00", "930929203866.22", "119392135656.89", "1253837962645.85", "34149.10", "144375643.35", "119536511300.24", "16820801785.92", "0.00", "5203325582.23", "97512383932.09", "171794495941.68", "269306879873.77", "0.00", "424254547250.25", "424254547250.25", "1827668934867.98", "1558362054994.21"]}, "diff_comb_xdec": {"10-20_7": ["18661877.83", "0.00", "0.00", "12906154.19", "69.16", "2201.89", "41091324014.13", "3.03", "323791110801.25", "168171735833.03", "168171735833.03", "68.91"], "70-80_7": ["18661570.56", "0.00", "0.00", "17396602.59", "93.22", "10363.12", "193392101273.06", "14.25", "517610971049.56", "494182171425.95", "494182171425.95", "18.47"], "0-10z_7": ["1324688.91", "0.00", "0.00", "393130.22", "29.68", "408.03", "540514585.29", "0.04", "27371718058.70", "0.00", "0.00", "inf"], "0-10n_7": ["99625.56", "0.00", "0.00", "25570.59", "25.67", "503.37", "50148444.93", "0.00", "2289581685.65", "1129106277.48", "1129106277.48", "-6.82"], "40-50_7": ["18661471.56", "0.00", "0.00", "15868611.84", "85.03", "5070.82", "94629041055.72", "6.97", "417192832671.51", "308876166538.71", "308876166538.71", "34.42"], "0-10p_7": ["17236792.61", "0.00", "0.00", "13932885.07", "80.83", "1079.62", "18609123715.29", "1.37", "254077580852.50", "40998792900.90", "40998792900.90", "180.50"], "30-40_7": ["18662741.01", "0.00", "0.00", "14818025.38", "79.40", "3995.68", "74570327289.20", "5.49", "381249779092.89", "268868866859.59", "268868866859.59", "40.73"], "50-60_7": ["18661387.17", "0.00", "0.00", "16507408.04", "88.46", "6264.28", "116900163054.00", "8.61", "449329693678.31", "355987449731.12", "355987449731.12", "28.91"], "Top 1%_7": ["1866580.93", "140.30", "0.01", "1854564.68", "99.36", "22922.90", "42787443398.89", "3.15", "57296020280.66", "81533786354.32", "81533786354.32", "1.67"], "80-90_7": ["18661391.14", "0.00", "0.00", "17846630.38", "95.63", "13727.10", "256166775424.04", "18.87", "552208675374.15", "570160454288.47", "570160454288.47", "13.55"], "20-30_7": ["18660105.57", "0.00", "0.00", "14003504.00", "75.05", "3343.45", "62389178456.90", "4.60", "353598497465.00", "215210510112.09", "215210510112.09", "49.83"], "ALL_7": ["186614949.59", "140.30", "0.00", "158932113.62", "85.17", "7273.78", "1357396540573.41", "100.00", "4338856315783.00", "3612799088058.24", "3612799088058.24", "20.81"], "90-100_7": ["18661602.18", "140.30", "0.00", "18140002.62", "97.20", "19037.79", "355275717015.67", "26.17", "578132540657.53", "773383034990.99", "773383034990.99", "5.98"], "95-99_7": ["7464238.73", "0.00", "0.00", "7224642.96", "96.79", "20323.90", "151702459373.02", "11.18", "233889423456.87", "354786583751.37", "354786583751.37", "5.98"], "90-95_7": ["9330782.52", "0.00", "0.00", "9060794.98", "97.11", "17231.76", "160785814243.77", "11.85", "286947096920.00", "337062664885.30", "337062664885.30", "9.47"], "60-70_7": ["18661695.49", "0.00", "0.00", "17093588.70", "91.60", "7704.67", "143782126245.17", "10.59", "482003334395.96", "415830799099.91", "415830799099.91", "23.81"]}, "diff_ptax_xbin": {">$1000K_7": ["555284.98", "1635.64", "0.29", "499879.52", "90.02", "13148.64", "7301243088.28", "0.94", "16946761995.52", "17352208280.80", "17352208280.80", "0.85"], "ALL_7": ["186614949.59", "1635.64", "0.00", "141729322.25", "75.95", "4159.87", "776294496843.81", "100.00", "4338856315783.00", "3612799088058.24", "3612799088058.24", "20.81"], "$200-500K_7": ["19031850.76", "0.00", "0.00", "16243674.85", "85.35", "11487.86", "218635177110.53", "28.16", "588860641047.77", "754975946791.18", "754975946791.18", "8.08"], "$20-30K_7": ["15709339.40", "0.00", "0.00", "10175026.91", "64.77", "981.64", "15420953257.60", "1.99", "276365605535.07", "156929707391.96", "156929707391.96", "63.10"], "<$0K_7": ["99625.56", "0.00", "0.00", "21488.81", "21.57", "300.79", "29966739.85", "0.00", "2289581685.65", "1129106277.48", "1129106277.48", "-6.82"], "$100-200K_7": ["42434074.51", "0.00", "0.00", "34323768.19", "80.89", "6578.36", "279146664772.89", "35.96", "1193424352652.22", "1159637417338.76", "1159637417338.76", "16.91"], "$30-40K_7": ["17052750.98", "0.00", "0.00", "12077273.70", "70.82", "1502.30", "25618376639.38", "3.30", "324905422019.68", "199096804118.12", "199096804118.12", "49.05"], "$75-100K_7": ["20977290.42", "0.00", "0.00", "16580347.27", "79.04", "4025.79", "84450191003.72", "10.88", "524647593879.41", "435520034973.47", "435520034973.47", "26.20"], "$500-1000K_7": ["1575387.70", "0.00", "0.00", "1362099.73", "86.46", "13383.96", "21084927818.07", "2.72", "48624585756.07", "81899583098.62", "81899583098.62", "2.79"], "$50-75K_7": ["29827108.50", "0.00", "0.00", "22800613.86", "76.44", "2811.15", "83848603681.44", "10.80", "676502997406.88", "509187573999.85", "509187573999.85", "33.38"], "$40-50K_7": ["15766785.12", "0.00", "0.00", "11551062.68", "73.26", "1976.98", "31170592297.43", "4.02", "319374742483.91", "222065128188.44", "222065128188.44", "40.97"], "$0-10K_7": ["11094104.78", "0.00", "0.00", "7924839.62", "71.43", "209.83", "2327866206.65", "0.30", "155999216003.31", "16297054090.58", "16297054090.58", "289.12"], "=$0K_7": ["1324688.91", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "27371718058.70", "0.00", "0.00", "inf"], "$10-20K_7": ["11166657.97", "0.00", "0.00", "8169247.11", "73.16", "650.14", "7259934227.96", "0.94", "183543097258.81", "58708523508.98", "58708523508.98", "97.54"]}, "dist2_xbin": {">$1000K_7": ["555284.98", "1125654051975.22", "93922.51", "2842077873.96", "461234.01", "28361163474.97", "0.00", "1091249294964.67", "319854712046.14", "1102630312857.02", "70667.88", "1050096697.76", "320904808743.90", "12333508.11", "8115966348.35", "21988.84", "329008419595.29", "43838524595.48", "372846944190.78", "16946761995.52", "17352208280.80", "17352208280.80", "1176288776885.08", "803441832694.31"], "ALL_7": ["186614949.59", "18953125212893.12", "159540435.79", "3790664915029.54", "26924905.22", "936874554271.50", "0.00", "14295142027069.72", "2433919859689.51", "18274861259748.52", "8084112.84", "12674547926.70", "2446594407616.21", "158959990411.45", "13127909034.51", "29946789059.38", "2270815537179.89", "2398726408009.91", "4669541945189.80", "4338856315783.00", "3612799088058.24", "3612799088058.24", "23709973078237.88", "19040431133048.07"], "$200-500K_7": ["19031850.76", "4928916343630.96", "10066314.35", "318493392479.32", "8958484.44", "354187485990.21", "0.00", "4240533103750.77", "787910829103.29", "4677072256071.00", "134025.01", "399118129.36", "788309947232.65", "22668899968.15", "2868726077.94", "139579790.56", "768370193551.87", "678057024418.01", "1446427217969.89", "588860641047.77", "754975946791.18", "754975946791.18", "6052856404456.85", "4606429186486.96"], "$20-30K_7": ["15709339.40", "493178471060.35", "15414239.19", "306345506503.20", "291185.66", "6284864826.97", "0.00", "202553512388.60", "21488783142.15", "487699634175.09", "790140.98", "1291530095.31", "22780313237.47", "6989865467.02", "0.00", "7261394781.78", "8529052988.66", "46668800966.10", "55197853954.77", "276365605535.07", "156929707391.96", "156929707391.96", "671486071272.74", "616288217317.98"], "<$0K_7": ["99625.56", "-13088896932.72", "22595.13", "2340302028.38", "66.45", "11279716.56", "0.00", "1182495059.06", "286251823.43", "-13099407642.69", "0.00", "0.00", "286251823.43", "3340836.79", "3231720.78", "310009.48", "285832697.93", "93855617.99", "379688315.93", "2289581685.65", "1129106277.48", "1129106277.48", "-29402066553.48", "-29781754869.40"], "$100-200K_7": ["42434074.51", "5741433961056.72", "31980285.50", "931763749984.21", "10444284.34", "355728070553.06", "0.00", "4444900587543.54", "673774949736.65", "5492286914508.85", "182353.96", "618615641.85", "674393565378.51", "49836021311.93", "3059093.48", "717720613.36", "623842882546.70", "843431399253.26", "1467274281799.96", "1193424352652.22", "1159637417338.76", "1159637417338.76", "7264369425102.17", "5797095143302.21"], "$30-40K_7": ["17052750.98", "686043698368.50", "16511806.55", "346333645431.73", "532108.87", "12290022065.20", "0.00", "341438451324.51", "37127943330.65", "675654303307.21", "545729.91", "1089899725.30", "38217843055.95", "10669173896.45", "0.00", "4642909612.47", "22905759547.03", "77771371330.77", "100677130877.80", "324905422019.68", "199096804118.12", "199096804118.12", "925446938265.20", "824769807387.41"], "$75-100K_7": ["20977290.42", "1835612248934.13", "18683452.15", "491861893354.93", "2287473.22", "64490044618.78", "0.00", "1281039242170.77", "168730704229.53", "1787753633354.50", "150320.79", "497375068.76", "169228079298.29", "22018073463.15", "0.00", "842371095.27", "146367634739.87", "255270505405.89", "401638140145.76", "524647593879.41", "435520034973.47", "435520034973.47", "2376777590078.64", "1975139449932.88"], "$500-1000K_7": ["1575387.70", "969156027628.88", "560513.22", "17863991848.20", "1014736.97", "47736631759.48", "0.00", "899078688452.31", "215194527599.19", "933260540528.31", "36146.07", "164678893.45", "215359206492.64", "143026835.93", "2136925793.97", "20913691.63", "217332191759.05", "76250562779.89", "293582754538.93", "48624585756.07", "81899583098.62", "81899583098.62", "1102253449624.38", "808670695085.45"], "$50-75K_7": ["29827108.50", "1913464728573.45", "28005827.73", "670714183729.70", "1807943.66", "46876671866.44", "0.00", "1204126927552.56", "145800485877.68", "1876712948356.73", "397262.04", "1068413732.07", "146868899609.75", "27805521708.73", "0.00", "2563570300.07", "116499807600.95", "253834037535.17", "370333845136.12", "676502997406.88", "509187573999.85", "509187573999.85", "2543131989681.84", "2172798144545.72"], "$40-50K_7": ["15766785.12", "763373969880.90", "15158588.29", "333359943200.18", "598929.95", "13900310401.16", "0.00", "424471987027.59", "47197262567.26", "751997044526.59", "352581.76", "755531968.99", "47952794536.25", "11531596046.43", "0.00", "2314831601.64", "34106366888.19", "94596646529.42", "128703013417.61", "319374742483.91", "222065128188.44", "222065128188.44", "1035238880707.19", "906535867289.58"], "$0-10K_7": ["11094104.78", "191729753280.91", "10832880.31", "135688045484.98", "257219.98", "3003707216.59", "0.00", "66830293414.66", "6733328610.57", "188894648712.41", "2722767.81", "3054990928.07", "9788319538.64", "3322668264.38", "0.00", "3172230015.13", "3293421259.13", "7016248247.88", "10309669507.01", "155999216003.31", "16297054090.58", "16297054090.58", "209320506063.86", "199010836556.85"], "=$0K_7": ["1324688.91", "27354170793.73", "1311619.56", "29883706705.65", "11387.06", "20175663.60", "0.00", "2661476288.48", "276623870.80", "27336613645.59", "334967.15", "495410990.74", "772034861.54", "231520276.25", "0.00", "0.00", "540514585.29", "0.00", "540514585.29", "27371718058.70", "0.00", "0.00", "27371718058.70", "26831203473.40"], "$10-20K_7": ["11166657.97", "290296684642.10", "10898391.30", "203174476405.11", "259850.61", "3984126118.48", "0.00", "95075967132.19", "9543457752.15", "286661817347.92", "2367149.48", "2188886055.06", "11732343807.21", "3727948828.12", "0.00", "8270935559.16", "-266540580.08", "21897431330.04", "21630890749.97", "183543097258.81", "58708523508.98", "58708523508.98", "354833394594.69", "333202503844.73"]}, "diff_itax_xdec": {"10-20_7": ["18661877.83", "34973.76", "0.19", "12335725.37", "66.10", "1316.78", "24573523999.30", "4.23", "323791110801.25", "168171735833.03", "168171735833.03", "68.91"], "70-80_7": ["18661570.56", "2192.92", "0.01", "17328707.74", "92.86", "4390.32", "81930294267.04", "14.10", "517610971049.56", "494182171425.95", "494182171425.95", "18.47"], "0-10z_7": ["1324688.91", "0.00", "0.00", "393130.22", "29.68", "408.03", "540514585.29", "0.09", "27371718058.70", "0.00", "0.00", "inf"], "0-10n_7": ["99625.56", "879.00", "0.88", "6087.76", "6.11", "202.58", "20181705.08", "0.00", "2289581685.65", "1129106277.48", "1129106277.48", "-6.82"], "40-50_7": ["18661471.56", "2741.66", "0.01", "15742391.24", "84.36", "2390.41", "44608572546.45", "7.68", "417192832671.51", "308876166538.71", "308876166538.71", "34.42"], "0-10p_7": ["17236792.61", "365129.21", "2.12", "9902504.78", "57.45", "732.53", "12626464600.50", "2.17", "254077580852.50", "40998792900.90", "40998792900.90", "180.50"], "30-40_7": ["18662741.01", "9874.31", "0.05", "14562791.97", "78.03", "2001.70", "37357130252.62", "6.43", "381249779092.89", "268868866859.59", "268868866859.59", "40.73"], "50-60_7": ["18661387.17", "1376.00", "0.01", "16399816.10", "87.88", "2751.92", "51354676293.38", "8.84", "449329693678.31", "355987449731.12", "355987449731.12", "28.91"], "Top 1%_7": ["1866580.93", "41.43", "0.00", "1854275.29", "99.34", "9631.99", "17978889606.70", "3.09", "57296020280.66", "81533786354.32", "81533786354.32", "1.67"], "80-90_7": ["18661391.14", "2047.53", "0.01", "17805387.65", "95.41", "5477.63", "102220284371.70", "17.59", "552208675374.15", "570160454288.47", "570160454288.47", "13.55"], "20-30_7": ["18660105.57", "10570.80", "0.06", "13673679.04", "73.28", "1876.22", "35010546195.21", "6.02", "353598497465.00", "215210510112.09", "215210510112.09", "49.83"], "ALL_7": ["186614949.59", "438665.55", "0.24", "153254864.84", "82.12", "3113.91", "581102043729.60", "100.00", "4338856315783.00", "3612799088058.24", "3612799088058.24", "20.81"], "90-100_7": ["18661602.18", "199.76", "0.00", "18110669.03", "97.05", "7075.92", "132048037987.17", "22.72", "578132540657.53", "773383034990.99", "773383034990.99", "5.98"], "95-99_7": ["7464238.73", "110.05", "0.00", "7213183.24", "96.64", "7280.77", "54345393338.77", "9.35", "233889423456.87", "354786583751.37", "354786583751.37", "5.98"], "90-95_7": ["9330782.52", "48.28", "0.00", "9043210.50", "96.92", "6400.72", "59723755041.70", "10.28", "286947096920.00", "337062664885.30", "337062664885.30", "9.47"], "60-70_7": ["18661695.49", "8680.60", "0.05", "16993973.94", "91.06", "3151.47", "58811816925.85", "10.12", "482003334395.96", "415830799099.91", "415830799099.91", "23.81"]}, "diff_itax_xbin": {">$1000K_7": ["555284.98", "0.00", "0.00", "549884.30", "99.03", "10227.61", "5679237152.53", "0.98", "16946761995.52", "17352208280.80", "17352208280.80", "0.85"], "ALL_7": ["186614949.59", "438665.55", "0.24", "153254864.84", "82.12", "3113.91", "581102043729.60", "100.00", "4338856315783.00", "3612799088058.24", "3612799088058.24", "20.81"], "$200-500K_7": ["19031850.76", "153.87", "0.00", "18410197.53", "96.73", "6654.31", "126643899850.50", "21.79", "588860641047.77", "754975946791.18", "754975946791.18", "8.08"], "$20-30K_7": ["15709339.40", "17997.79", "0.11", "10361811.43", "65.96", "1433.43", "22518253460.61", "3.88", "276365605535.07", "156929707391.96", "156929707391.96", "63.10"], "<$0K_7": ["99625.56", "879.00", "0.88", "6087.76", "6.11", "202.58", "20181705.08", "0.00", "2289581685.65", "1129106277.48", "1129106277.48", "-6.82"], "$100-200K_7": ["42434074.51", "7699.64", "0.02", "39688643.73", "93.53", "4594.13", "194947517045.84", "33.55", "1193424352652.22", "1159637417338.76", "1159637417338.76", "16.91"], "$30-40K_7": ["17052750.98", "9255.21", "0.05", "12597212.95", "73.87", "1895.18", "32318081322.72", "5.56", "324905422019.68", "199096804118.12", "199096804118.12", "49.05"], "$75-100K_7": ["20977290.42", "6583.60", "0.03", "18844052.17", "89.83", "2913.03", "61107394177.83", "10.52", "524647593879.41", "435520034973.47", "435520034973.47", "26.20"], "$500-1000K_7": ["1575387.70", "59.70", "0.00", "1563014.79", "99.21", "9222.10", "14528379292.29", "2.50", "48624585756.07", "81899583098.62", "81899583098.62", "2.79"], "$50-75K_7": ["29827108.50", "4622.63", "0.02", "25245953.41", "84.64", "2453.14", "73170103653.45", "12.59", "676502997406.88", "509187573999.85", "509187573999.85", "33.38"], "$40-50K_7": ["15766785.12", "7719.02", "0.05", "12301077.55", "78.02", "1989.63", "31370100228.23", "5.40", "319374742483.91", "222065128188.44", "222065128188.44", "40.97"], "$0-10K_7": ["11094104.78", "331217.10", "2.99", "5582879.04", "50.32", "607.70", "6741883796.55", "1.16", "155999216003.31", "16297054090.58", "16297054090.58", "289.12"], "=$0K_7": ["1324688.91", "0.00", "0.00", "393130.22", "29.68", "408.03", "540514585.29", "0.09", "27371718058.70", "0.00", "0.00", "inf"], "$10-20K_7": ["11166657.97", "52477.99", "0.47", "7710919.96", "69.05", "1031.33", "11516497458.68", "1.98", "183543097258.81", "58708523508.98", "58708523508.98", "97.54"]}, "dist1_xbin": {">$1000K_7": ["555284.98", "1109510203871.28", "74906.86", "2014234766.32", "475944.30", "28803660972.34", "0.00", "1075562856275.03", "314283136913.28", "1086205553566.72", "68916.38", "964110757.61", "315247247670.89", "12024975.47", "8094010413.54", "50666.19", "323329182442.77", "36537281507.20", "359866463949.97", "0.00", "17413234961.92", "17413234961.92", "1156505489350.77", "796639025400.81"], "ALL_7": ["186614949.59", "14629975613277.40", "128373920.51", "2895146072175.34", "38414660.37", "1233817615783.67", "0.00", "11143834912567.38", "1896574887148.51", "13757721725964.50", "498408.83", "2321510965.75", "1898896398114.26", "114620518172.23", "12390233905.95", "106952620397.70", "1689713493450.29", "1622431911166.10", "3312145404616.39", "0.00", "3687137666682.49", "3687137666682.49", "19072655978604.03", "15760510573987.64"], "$200-500K_7": ["19031850.76", "4343482838027.78", "7369576.52", "210150573796.96", "11276525.08", "423449497344.51", "0.00", "3708094936922.15", "663306424165.92", "4047791115562.26", "92557.39", "321597147.17", "663628021313.09", "23122435566.38", "2217927303.15", "997219348.49", "641726293701.37", "459421847307.48", "1101148141008.85", "0.00", "760229773218.46", "760229773218.46", "5363329192894.73", "4262181051885.87"], "$20-30K_7": ["15709339.40", "217169155651.23", "11658435.23", "248619286504.72", "358901.48", "7854851199.32", "0.00", "62578596898.80", "6097843120.05", "210368596731.27", "40552.73", "42451509.44", "6140294629.49", "1549145048.12", "0.00", "18580350053.32", "-13989200471.95", "31247847708.50", "17258647236.55", "0.00", "164269924133.01", "164269924133.01", "395106495975.88", "377847848739.33"], "<$0K_7": ["99625.56", "-15375326057.44", "10137.73", "1958577847.57", "66.45", "11279716.56", "0.00", "1076398972.20", "264211525.63", "-15385836767.42", "0.00", "0.00", "264211525.63", "1570139.06", "3231720.78", "222114.49", "265650992.85", "63888878.14", "329539870.99", "0.00", "1199203646.58", "1199203646.58", "-31633381679.03", "-31962921550.02"], "$100-200K_7": ["42434074.51", "4551844592464.39", "24546424.27", "652772184714.03", "16273081.92", "508949139698.77", "0.00", "3442992123546.74", "480226786925.50", "4203899082766.14", "79981.07", "315517890.90", "480542304816.40", "45946852828.71", "0.00", "5700086486.82", "428895365500.86", "564284734480.37", "993180099981.23", "0.00", "1176377890489.62", "1176377890489.62", "5951868123292.14", "4958688023310.91"], "$30-40K_7": ["17052750.98", "362157462057.09", "13562622.75", "281360503789.30", "654837.71", "14611187520.05", "0.00", "150139780571.87", "15472551860.10", "349970082309.87", "38973.40", "65080930.13", "15537632790.23", "3949841671.81", "0.00", "21000112894.10", "-9412321775.69", "52152994691.39", "42740672915.70", "0.00", "206445434934.40", "206445434934.40", "596097282066.40", "553356609150.69"], "$75-100K_7": ["20977290.42", "1312442724859.90", "15637637.66", "375089156428.92", "4092793.88", "106344301785.10", "0.00", "880496511783.93", "109759692098.07", "1235368826251.72", "45581.23", "160323011.84", "109920015109.91", "17242395207.85", "0.00", "7417379340.02", "85260240562.04", "170820314402.17", "256080554964.21", "0.00", "445363945994.36", "445363945994.36", "1821168023375.53", "1565087468411.33"], "$500-1000K_7": ["1575387.70", "921894655135.23", "446548.40", "12473035848.48", "1119024.50", "50864025233.85", "0.00", "854322049443.78", "200787328630.87", "884035341088.90", "35920.17", "178288927.22", "200965617558.09", "126030793.65", "2075064468.49", "110838766.17", "202803812466.76", "55165634961.82", "257969447428.58", "0.00", "82185524122.76", "82185524122.76", "1044713313150.99", "786743865722.41"], "$50-75K_7": ["29827108.50", "1239136331075.44", "23940077.81", "533419593758.05", "3195810.14", "72474793772.93", "0.00", "733770720946.39", "81645750485.77", "1184430436504.97", "47120.50", "199306338.77", "81845056824.54", "16929695628.65", "0.00", "21585657248.40", "43329703947.49", "169985433853.73", "213315137801.22", "0.00", "524752607855.24", "524752607855.24", "1842349120276.29", "1629033982475.07"], "$40-50K_7": ["15766785.12", "445204067008.66", "12862118.16", "270041955364.65", "839953.61", "18147796350.26", "0.00", "224774662299.68", "23912239313.52", "430650601792.00", "24945.20", "58738443.95", "23970977757.47", "5475529779.24", "0.00", "15759181318.27", "2736266659.96", "63426054231.99", "66162320891.95", "0.00", "229842715750.04", "229842715750.04", "709240466956.76", "643078146064.81"], "$0-10K_7": ["11094104.78", "35734081701.00", "9279951.12", "114393140287.34", "26093.52", "229259112.53", "0.00", "2228016999.70", "158929516.69", "35512560680.87", "252.40", "69922.06", "158999438.75", "69211781.23", "0.00", "3538250194.94", "-3448462537.42", "4688382041.23", "1239919503.81", "0.00", "16519863038.18", "16519863038.18", "52383710328.23", "51143790824.42"], "=$0K_7": ["1324688.91", "-17547264.97", "0.00", "25036502773.29", "0.00", "0.00", "0.00", "0.00", "0.00", "-17547264.97", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$10-20K_7": ["11166657.97", "106792374747.80", "8985484.00", "167817326295.73", "101627.78", "2077823077.44", "0.00", "7798257907.11", "659992593.12", "104892912742.15", "23608.36", "16026086.66", "676018679.78", "195784752.05", "0.00", "12263271966.49", "-11783038038.76", "14637497102.08", "2854459063.33", "0.00", "62537548537.92", "62537548537.92", "171528142615.35", "168673683552.02"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_7\nind_tax,954558906.8237357\npayroll_tax,-235351076216.50854\ncombined_tax,-234396517309.6848\n", "aggr_1": ",0_7\nind_tax,1622323618552.8955\npayroll_tax,1554210077734.9941\ncombined_tax,3176533696287.8896\n", "aggr_2": ",0_7\nind_tax,1623278177459.7192\npayroll_tax,1318859001518.4858\ncombined_tax,2942137178978.205\n", "dist1_xbin": ",s006_7,c00100_7,num_returns_StandardDed_7,standard_7,num_returns_ItemDed_7,c04470_7,c04600_7,c04800_7,taxbc_7,c62100_7,num_returns_AMT_7,c09600_7,c05800_7,c07100_7,othertaxes_7,refund_7,iitax_7,payrolltax_7,combined_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,expanded_income_7,aftertax_income_7\n<$0K,64553.76469609681,-8872493020.037746,64553.76469609681,1568448088.2691903,0.0,0.0,0.0,0.0,0.0,-8872493020.037746,0.0,0.0,0.0,0.0,0.0,1381579.3266310324,-1381579.3266310324,22208796.104650624,20827216.778019592,0.0,1015374805.3531195,1015374805.3531195,-7761453659.6598625,-7782280876.437881\n=$0K,1153234.9657017367,0.0,1153234.9657017367,20179488056.747562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10829442.391691193,33415439395.86695,10773535.407953149,104636658669.26987,55906.98373804397,311786793.24517936,0.0,2152846186.2251234,133791315.11019595,33119664851.338882,0.0,0.0,133791315.11019595,36193619.84678113,0.0,3246902618.6424255,-3149304923.3790107,4531934715.32768,1382629791.9486694,0.0,15563934105.81694,15563934105.81694,49489265168.00426,48106635376.05559\n$10-20K,10753494.567605924,105749038191.91895,10611103.232389284,156804256591.96954,142391.33521664026,2196170834.9995213,0.0,7137612531.437197,643562771.1953363,103806616970.26437,15333.346995059497,873712.9396406887,644436484.1349771,168712123.831187,0.0,12794765326.785805,-12319040966.482012,14628372950.08493,2309331983.6029177,0.0,58577120795.39487,58577120795.39487,166217973327.09036,163908641343.48746\n$20-30K,14923335.539492983,196750815611.85876,14641114.5473945,230890513170.4062,282220.9920984855,5423235101.791588,0.0,58817576959.659225,5564988752.666505,192201010818.9337,26344.957700899362,17660949.617562816,5582649702.284067,1147493895.7043233,0.0,16597985724.832699,-12162829918.252953,28021548918.735924,15858719000.482971,0.0,165095922929.74503,165095922929.74503,373511967649.0596,357653248648.57666\n$30-40K,16208033.270033821,338433563529.6084,15667982.64537593,263487612063.5774,540050.6246578906,10322856859.371128,0.0,139098144004.96613,14377394352.615639,330177325763.6021,73750.0675079653,235603792.8424687,14612998145.458107,3830213163.6118307,0.0,20051990133.651722,-9269205151.805447,48027869040.966705,38758663889.16126,0.0,200942806447.66815,200942806447.66815,565527864060.155,526769200170.9938\n$40-50K,16285842.71932765,463382830313.19965,15268023.370427318,269055456188.55957,1017819.34890033,19617645118.651615,0.0,239035410122.515,25258353045.84165,448376553635.8292,131193.7935765172,185426009.7637856,25443779055.60544,5623778332.144506,0.0,14996088130.229616,4823912593.231313,65613733548.36765,70437646141.59897,0.0,234515443246.0385,234515443246.0385,731525897821.3989,661088251679.8\n$50-75K,31870939.537730675,1314288415492.2766,28321642.397337873,559797003805.823,3549297.1403928036,78980921693.7367,0.0,780600114874.1221,87467135517.24905,1254352118989.1016,74422.66108340613,197117320.70197922,87664252837.95103,17515052483.745934,0.0,24813507153.081657,45335693201.12346,179259214313.43375,224594907514.5572,0.0,570522707769.169,570522707769.169,1965226236606.3247,1740631329091.7676\n$75-100K,20814111.884360164,1305736955001.464,16839976.78516259,374231839546.286,3974135.0991975754,90204786956.71327,0.0,884341646169.3696,110912815882.46838,1242953961600.48,132738.47601809775,475095803.27595115,111387911685.74432,15135926862.02578,0.0,5816388139.668882,90435596684.04967,168225300078.6244,258660896762.67404,0.0,443927623122.0137,443927623122.0137,1809395006180.547,1550734109417.8733\n$100-200K,41943655.929569736,4575637130680.448,25750939.46463291,632402213524.3104,16192716.46493683,507153874024.41986,0.0,3480259801376.819,489239615572.32166,4227573901915.282,175535.0130234467,447075433.3828294,489686691005.70447,41430201362.78847,0.0,3547079035.389851,444709410607.52625,556146884904.9661,1000856295512.4923,0.0,1133276358663.75,1133276358663.75,5924175214100.084,4923318918587.592\n$200-500K,17552078.368272863,3901189276577.381,7508790.013096597,197326828176.5501,10043288.35517627,364346426981.94434,0.0,3341966252320.077,601519154601.9045,3648648253791.502,76431.8400227333,301939646.96047616,601821094248.8651,19672199286.358627,2198425010.1922297,1241771366.5493798,583105548606.1493,412374091914.9419,995479640521.0913,0.0,790451006028.4473,790451006028.4473,4943656319210.74,3948176678689.6494\n$500-1000K,1231545.9653449836,747694312400.5857,314576.2830433758,8695180980.19679,916969.6823016078,41152340487.10408,0.0,694271335068.1835,164521069217.34976,716904741452.9404,16111.147042212167,90979131.801887,164612048349.15167,54002036.4423143,2005379961.2306828,147694989.88074884,166415731284.05927,45131607091.29201,211547338375.3513,0.0,45884138895.822174,45884138895.822174,822798135076.4529,611250796701.1016\n>$1000K,498935.40617216314,1062978625972.9115,73887.36526192888,1981894025.1702282,425048.0409102343,25327828766.587463,0.0,1032016743805.5693,315785839923.61414,1042463460396.6211,32315.921227488652,525041098.86744976,316310881022.48157,9086660.242142797,8097693753.762823,0.0,324399488116.00226,32227311462.148552,356626799578.1509,0.0,9763732623.923044,9763732623.923044,1095332831878.5723,738706032300.4214\nALL,184129204.31,14036383910147.482,146989360.2424733,2821057392887.136,37139844.06752672,1145037873618.5647,0.0,10659697483418.945,1815423720952.337,13231705117165.86,754177.2241978261,2476812900.1540303,1817900533852.4912,104622859826.7419,12301498725.185736,103255554198.03941,1622323618552.8955,1554210077734.9941,3176533696287.8896,0.0,3669536169433.1416,3669536169433.1416,18439095257418.77,15262561561130.879\n", "dist2_xbin": ",s006_7,c00100_7,num_returns_StandardDed_7,standard_7,num_returns_ItemDed_7,c04470_7,c04600_7,c04800_7,taxbc_7,c62100_7,num_returns_AMT_7,c09600_7,c05800_7,c07100_7,othertaxes_7,refund_7,iitax_7,payrolltax_7,combined_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,expanded_income_7,aftertax_income_7\n<$0K,64553.76469609681,-8872493020.037746,64553.76469609681,1568448088.2691903,0.0,0.0,0.0,0.0,0.0,-8872493020.037746,0.0,0.0,0.0,0.0,0.0,1381579.3266310324,-1381579.3266310324,18725063.382352486,17343484.055721454,0.0,1015374805.3531195,1015374805.3531195,-7763195526.021011,-7780539010.076733\n=$0K,1153234.9657017367,0.0,1153234.9657017367,20179488056.747562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10829442.391691193,33415450301.994156,10773535.407953149,104636658669.26987,55906.98373804397,311786793.24517936,0.0,2152846186.2251234,133791315.11019595,33119675757.466087,0.0,0.0,133791315.11019595,36193619.84678113,0.0,3242266774.4417534,-3144669079.178338,3821044633.099806,676375553.921468,0.0,15563934105.81694,15563934105.81694,49133831033.01753,48457455479.09606\n$10-20K,10753494.567605924,105765034120.56064,10611103.232389284,156804256591.96954,142391.33521664026,2196170834.9995213,0.0,7140432404.504368,643844758.5020535,103822612898.90607,15333.346995059497,873712.9396406887,644718471.4416943,168712123.831187,0.0,12792510954.87675,-12316504607.266243,12336128395.348461,19623788.08221799,0.0,58577120795.39487,58577120795.39487,165087846978.36383,165068223190.2816\n$20-30K,14923335.539492983,196867772307.98514,14641114.5473945,230890836323.15936,282220.9920984855,5422884657.880805,0.0,58870302664.99657,5570227136.027936,192318405569.94855,26344.957700899362,17660949.617562816,5587888085.645498,1148411454.6063702,0.0,16598747550.211662,-12159270919.172531,23643575761.03459,11484304841.862057,0.0,165095922929.74503,165095922929.74503,371439937766.3353,359955632924.4732\n$30-40K,16208033.270033821,338762637329.95654,15667982.64537593,263487612063.5774,540050.6246578906,10321555125.455803,0.0,139306948698.03625,14399295338.145206,330508026731.3444,73750.0675079653,235603792.8424687,14634899130.987675,3835257180.541892,0.0,20035459687.095146,-9235817736.649363,40543504195.454765,31307686458.805405,0.0,200942806447.66815,200942806447.66815,562114755437.7472,530807068978.94183\n$40-50K,16285842.71932765,463820072595.4454,15268023.370427318,269055456188.55957,1017819.34890033,19614945978.541588,0.0,239416905622.05164,25298448899.191414,448817169843.21246,131193.7935765172,185426009.7637856,25483874908.9552,5634233264.139924,0.0,14970486709.860073,4879154934.955202,55386050543.18036,60265205478.13557,0.0,234515443246.0385,234515443246.0385,726842670723.7502,666577465245.6146\n$50-75K,31870939.537730675,1315050679908.7341,28318698.270319745,559716937594.4158,3552241.2674109284,79065417565.9456,0.0,781289081686.0474,87544596679.45526,1255046181684.4375,74422.66108340613,197117320.70197922,87741714000.15723,17534456012.737595,0.0,24780824340.398376,45426433647.02126,151248590294.60156,196675023941.62283,0.0,570522707769.169,570522707769.169,1951943206573.029,1755268182631.4062\n$75-100K,20814111.884360164,1306114805353.0798,16839976.78516259,374231839546.286,3974135.0991975754,90204146597.0611,0.0,884689329611.001,110963119850.59776,1243332612401.6611,132738.47601809775,475077417.8899804,111438197268.48775,15141985035.071526,0.0,5805050671.687738,90491161561.72849,141891037239.43866,232382198801.16714,0.0,443927623122.0137,443927623122.0137,1796587586178.8625,1564205387377.6956\n$100-200K,41943655.929569736,4577094430754.51,25750737.98431444,632396734220.7092,16192917.945255298,507160645974.2595,0.0,3481654110270.3345,489495119723.1147,4229026814186.2686,175535.0130234467,450518210.2263252,489945637933.34106,41435836020.48138,0.0,3537491811.917877,444972310100.9418,469171674831.13434,914143984932.0762,0.0,1133276358663.75,1133276358663.75,5882106534847.261,4967962549915.186\n$200-500K,17552078.368272863,3902081658673.773,7509104.309159886,197333238691.0613,10042974.05911298,364337388394.0592,0.0,3342939075714.4062,601760619797.5278,3649548711168.845,74583.11749466477,300450416.4859809,602061070214.0139,19669789624.586052,2199888446.348504,1238657740.9950302,583352511294.7814,350446540766.50464,933799052061.286,0.0,790451006028.4473,790451006028.4473,4913580279435.709,3979781227374.423\n$500-1000K,1231545.9653449836,748022860982.5662,314576.2830433758,8695180980.19679,916969.6823016078,41152253658.73589,0.0,694612184200.6616,164636020196.85095,717233398570.3811,16111.147042212167,90387416.13084225,164726407612.9818,53702129.02980012,2005441571.01295,147694989.88074884,166530452065.0842,39843630682.71003,206374082747.79422,0.0,45884138895.822174,45884138895.822174,820477020691.8389,614102937944.0444\n>$1000K,498935.40617216314,1063206985885.6007,73887.36526192888,1981894025.1702282,425048.0409102343,25327828766.587463,0.0,1032245103718.2584,315870424258.36804,1042691820309.3104,32315.921227488652,524703297.14112824,316395127555.50916,9086660.242142797,8097756881.532957,0.0,324483797776.7999,30508499112.596203,354992296889.3961,0.0,9763732623.923044,9763732623.923044,1094683999559.3445,739691702669.9484\nALL,184129204.31,14041329895194.168,146986528.9312,2820978581039.3926,37142675.37880002,1145115024346.7717,0.0,10664316320776.523,1816315507952.8916,13236592936101.744,752328.5016697575,2477818543.739694,1818793326496.6313,104667663125.11465,12303086898.894411,103150572810.6918,1623278177459.7192,1318859001518.4856,2942137178978.205,0.0,3669536169433.1416,3669536169433.1416,18326234473699.24,15384097294721.033\n", "diff_itax_xbin": ",count_7,tax_cut_7,perc_cut_7,tax_inc_7,perc_inc_7,mean_7,tot_change_7,share_of_change_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,pc_aftertaxinc_7\n<$0K,64553.76469609681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1015374805.3531195,1015374805.3531195,-0.02238246587092929\n=$0K,1153234.9657017367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,10829442.391691193,22542.96784897316,0.20816369886476407,288244.2280229693,2.661671927301839,0.4280778301410191,4635844.200672334,0.48565302440034397,0.0,15563934105.81694,15563934105.81694,0.7292551231198541\n$10-20K,10753494.567605924,37085.94295434837,0.3448734057677113,118559.7535081777,1.1025230241463073,0.23586371851712887,2536359.215769278,0.265710077988684,0.0,58577120795.39487,58577120795.39487,0.7074562007771679\n$20-30K,14923335.539492983,71488.45920412199,0.479038074396542,235965.2133691773,1.5811827908360103,0.23848549615483688,3558999.0804210943,0.37284226829578804,0.0,165095922929.74503,165095922929.74503,0.6437476199632641\n$30-40K,16208033.270033821,44007.07310595786,0.2715139608413824,804870.2016648678,4.965872097220765,2.0599300729355536,33387415.156082653,3.497679914503989,0.0,200942806447.66815,200942806447.66815,0.766534718931422\n$40-50K,16285842.71932765,32222.95576034705,0.1978586943008213,1264197.025427328,7.762552096410762,3.3920468640120647,55242341.72388907,5.7872113841257,0.0,234515443246.0385,234515443246.0385,0.8303299221952054\n$50-75K,31870939.537730675,7016.742322441945,0.02201611381470294,1763675.6675320407,5.533805068545591,2.8471217734384466,90740445.89781326,9.506007984331653,0.0,570522707769.169,570522707769.169,0.8408933755820636\n$75-100K,20814111.884360164,2154.747642324692,0.010352340058015068,1000300.4863325395,4.805876377959565,2.6695771593586826,55564877.67882401,5.82100038893507,0.0,443927623122.0137,443927623122.0137,0.8687032727279886\n$100-200K,41943655.929569736,22059.944425390473,0.05259423370826981,3328928.9518738883,7.9366685571322275,6.26792032285082,262899493.41561246,27.541463553087794,0.0,1133276358663.75,1133276358663.75,0.906779188304152\n$200-500K,17552078.368272863,127649.85733445025,0.7272634878681384,1269403.7532631801,7.23221334037429,14.07028178944695,246962688.6320554,25.871917056833702,0.0,790451006028.4473,790451006028.4473,0.8004846605613958\n$500-1000K,1231545.9653449836,17696.191715078374,1.4369087482756906,225837.601696086,18.337732252878098,93.15184674638,114720781.02493852,12.018198165126158,0.0,45884138895.822174,45884138895.822174,0.4666073661311776\n>$1000K,498935.40617216314,24913.421842103267,4.993316075369206,147653.9746679621,29.593805699371924,168.9791098300324,84309660.79765779,8.832316182371132,0.0,9763732623.923044,9763732623.923044,0.13343201847932917\nALL,184129204.31,408838.3041555374,0.22203881545440074,10447636.857358217,5.674079186139626,5.184179828511288,954558906.8237357,100.0,0.0,3669536169433.1416,3669536169433.1416,0.7962997109192349\n", "diff_ptax_xbin": ",count_7,tax_cut_7,perc_cut_7,tax_inc_7,perc_inc_7,mean_7,tot_change_7,share_of_change_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,pc_aftertaxinc_7\n<$0K,64553.76469609681,4396.174830525181,6.810098297475425,0.0,0.0,-53.966375759782416,-3483732.722298137,0.0014802280823620784,0.0,1015374805.3531195,1015374805.3531195,-0.02238246587092929\n=$0K,1153234.9657017367,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10829442.391691193,7849741.690933316,72.48518812894716,0.0,0.0,-65.64419999808104,-710890082.2278737,0.30205516526888476,0.0,15563934105.81694,15563934105.81694,0.7292551231198541\n$10-20K,10753494.567605924,8130951.311383931,75.61217667675955,0.0,0.0,-213.1627574948222,-2292244554.7364693,0.9739681634715558,0.0,58577120795.39487,58577120795.39487,0.7074562007771679\n$20-30K,14923335.539492983,9401342.615961764,62.99759588653712,0.0,0.0,-293.3642513173751,-4377973157.701335,1.8601882889517232,0.0,165095922929.74503,165095922929.74503,0.6437476199632641\n$30-40K,16208033.270033821,11272704.385726029,69.55010640660232,0.0,0.0,-461.76884763368474,-7484364845.511941,3.1800852436412,0.0,200942806447.66815,200942806447.66815,0.766534718931422\n$40-50K,16285842.71932765,11854987.137827192,72.79320660365936,0.0,0.0,-628.0106704609965,-10227683005.187296,4.345713293351783,0.0,234515443246.0385,234515443246.0385,0.8303299221952054\n$50-75K,31870939.537730675,24530142.755490407,76.96711521933703,0.0,0.0,-878.8766326035534,-28010624018.832188,11.901634132772836,0.0,570522707769.169,570522707769.169,0.8408933755820636\n$75-100K,20814111.884360164,16406204.216373382,78.82250421023772,0.0,0.0,-1265.2119382030146,-26334262839.185722,11.189353056095577,0.0,443927623122.0137,443927623122.0137,0.8687032727279886\n$100-200K,41943655.929569736,33650633.05599983,80.22818304752631,0.0,0.0,-2073.620149370799,-86975210073.83179,36.95551831418861,0.0,1133276358663.75,1133276358663.75,0.906779188304152\n$200-500K,17552078.368272863,14768041.52378338,84.13842061278676,0.0,0.0,-3528.217561994113,-61927551148.437294,26.312839585856732,0.0,790451006028.4473,790451006028.4473,0.8004846605613958\n$500-1000K,1231545.9653449836,1112135.296600193,90.3040022780359,0.0,0.0,-4293.771046621633,-5287976408.58198,2.2468460708109816,0.0,45884138895.822174,45884138895.822174,0.4666073661311776\n>$1000K,498935.40617216314,425640.57169902645,85.3097548166695,7002.84712806491,1.4035578636903752,-3444.959664697062,-1718812349.5523477,0.7303184575077729,0.0,9763732623.923044,9763732623.923044,0.13343201847932917\nALL,184129204.31,139406920.73660898,75.71146644499882,7002.84712806491,0.003803224564135363,-1278.1843982786745,-235351076216.50848,100.0,0.0,3669536169433.1416,3669536169433.1416,0.7962997109192349\n", "diff_comb_xbin": ",count_7,tax_cut_7,perc_cut_7,tax_inc_7,perc_inc_7,mean_7,tot_change_7,share_of_change_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,pc_aftertaxinc_7\n<$0K,64553.76469609681,4396.174830525181,6.810098297475425,0.0,0.0,-53.966375759782416,-3483732.722298137,0.0014862561791800972,0.0,1015374805.3531195,1015374805.3531195,-0.02238246587092929\n=$0K,1153234.9657017367,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10829442.391691193,7849741.690933316,72.48518812894716,0.0,0.0,-65.21612216794001,-706254238.0272014,0.3013074793658721,0.0,15563934105.81694,15563934105.81694,0.7292551231198541\n$10-20K,10753494.567605924,8130951.311383931,75.61217667675955,0.0,0.0,-212.926893776305,-2289708195.5206995,0.9768524813427734,0.0,58577120795.39487,58577120795.39487,0.7074562007771679\n$20-30K,14923335.539492983,9401342.615961764,62.99759588653712,0.0,0.0,-293.1257658212202,-4374414158.6209135,1.8662453729384705,0.0,165095922929.74503,165095922929.74503,0.6437476199632641\n$30-40K,16208033.270033821,11272704.385726029,69.55010640660232,0.0,0.0,-459.7089175607493,-7450977430.35586,3.178791867675928,0.0,200942806447.66815,200942806447.66815,0.766534718931422\n$40-50K,16285842.71932765,11854987.137827192,72.79320660365936,0.0,0.0,-624.6186235969844,-10172440663.463406,4.339842920969501,0.0,234515443246.0385,234515443246.0385,0.8303299221952054\n$50-75K,31870939.537730675,24530142.755490407,76.96711521933703,0.0,0.0,-876.0295108301149,-27919883572.934372,11.911390106554613,0.0,570522707769.169,570522707769.169,0.8408933755820636\n$75-100K,20814111.884360164,16406204.216373382,78.82250421023772,0.0,0.0,-1262.542361043656,-26278697961.5069,11.211215193435434,0.0,443927623122.0137,443927623122.0137,0.8687032727279886\n$100-200K,41943655.929569736,33650633.05599983,80.22818304752631,0.0,0.0,-2067.352229047948,-86712310580.41618,36.993856212399194,0.0,1133276358663.75,1133276358663.75,0.906779188304152\n$200-500K,17552078.368272863,14768041.52378338,84.13842061278676,0.0,0.0,-3514.1472802046665,-61680588459.805244,26.31463520352259,0.0,790451006028.4473,790451006028.4473,0.8004846605613958\n$500-1000K,1231545.9653449836,1112135.296600193,90.3040022780359,0.0,0.0,-4200.619199875254,-5173255627.557042,2.207053111084468,0.0,45884138895.822174,45884138895.822174,0.4666073661311776\n>$1000K,498935.40617216314,425640.57169902645,85.3097548166695,7002.84712806491,1.4035578636903752,-3275.9805548670465,-1634502688.7546983,0.6973237945319778,0.0,9763732623.923044,9763732623.923044,0.13343201847932917\nALL,184129204.31,139406920.73660898,75.71146644499882,7002.84712806491,0.003803224564135363,-1273.0002184501636,-234396517309.6848,100.0,0.0,3669536169433.1416,3669536169433.1416,0.7962997109192349\n", "dist1_xdec": ",s006_7,c00100_7,num_returns_StandardDed_7,standard_7,num_returns_ItemDed_7,c04470_7,c04600_7,c04800_7,taxbc_7,c62100_7,num_returns_AMT_7,c09600_7,c05800_7,c07100_7,othertaxes_7,refund_7,iitax_7,payrolltax_7,combined_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,expanded_income_7,aftertax_income_7\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18412552.836941138,85242017262.06544,18279164.59516693,217701918329.72235,133388.2417742049,1431218356.0855672,0.0,4287816551.2799788,296006814.22047865,83939117076.91176,15333.346995059497,873712.9396406887,296880527.1601194,88911239.31706262,0.0,10625692968.813663,-10417723680.970606,12825818143.50613,2408094462.5355244,0.0,40922886683.36417,40922886683.36417,127483181884.43788,125075087421.90236\n10-20,18378924.481520943,228161640695.83325,18060188.57278941,283573546875.5925,318735.90873152995,6100588104.694387,0.0,57476206626.1003,5386350603.983697,222984821217.73276,19850.939357403066,10833523.873643298,5397184127.857341,1161081402.209841,0.0,21306492491.7356,-17070389766.088102,32328630074.191277,15258240308.103176,0.0,186338923028.51587,186338923028.51587,426210133657.0661,410951893348.9629\n20-30,18431473.4599512,382756886332.93085,17823704.27465886,296563902920.67694,607769.1852923383,11441112075.901562,0.0,162178153831.9652,16843642389.81188,373635575002.5735,100587.31209536537,299705194.88604057,17143347584.697922,4270649138.9798136,0.0,21770175074.9915,-8897476629.273394,54533896151.85863,45636419522.585236,0.0,233078255171.36658,233078255171.36658,645387811736.4514,599751392213.8662\n30-40,18409853.860852376,552789371253.0698,17287492.693704568,309432750161.4162,1122361.1671478078,21668653752.586086,0.0,287748788188.3394,30466613939.953484,536205862316.288,110850.56733261343,128152033.46413323,30594765973.417618,6817886943.237768,0.0,16889015401.659367,6887863628.520484,78015299929.32054,84903163557.84103,0.0,261376953991.84363,261376953991.84363,854454870707.5764,769551707149.7355\n40-50,18427633.092895754,723720667506.936,16507946.152953887,320841110227.0908,1919686.9399418675,38088716585.1028,0.0,426361606867.80066,46522496458.24548,695304606709.123,73081.11315009941,190236607.49872026,46712733065.74421,10616189411.838017,0.0,14327921433.711252,21768622220.19494,98669449541.62555,120438071761.82051,0.0,316531132044.01715,316531132044.01715,1086452582900.6892,966014511138.8687\n50-60,18379561.675434515,948579743090.2363,15414861.498682573,328816180772.4259,2964700.1767519414,70624445305.42194,0.0,603070552738.2715,71926063637.77783,896252876391.5009,75880.66397911086,159414543.0636483,72085478180.84148,11482636313.011137,0.0,9997449096.014122,50605392771.81621,126759436474.29268,177364829246.1089,0.0,366681111432.5415,366681111432.5415,1367907044735.5312,1190542215489.422\n60-70,18429277.357563704,1301300780310.2336,14154886.627318095,321402210987.30853,4274390.730245609,105069877021.80983,0.0,906542821791.7308,116148826857.86081,1228352596322.0317,105161.47774910118,643781769.8801702,116792608627.74098,14852753074.302448,0.0,4916502538.456011,97023353014.98251,162457754727.61182,259481107742.5943,0.0,416260219833.94104,416260219833.94104,1770170552529.338,1510689444786.7437\n70-80,18430882.914190173,1761942214426.6223,12199740.805515839,294948660984.72345,6231142.108674336,188492295025.39914,0.0,1305565963328.955,174157563974.3805,1630498060662.2534,35721.23636374661,57740808.44111054,174215304782.8216,16082398530.114204,0.0,1250607189.3012297,156882299063.40616,215311541849.75195,372193840913.1581,0.0,496933612604.6781,496933612604.6781,2323139510354.469,1950945669441.3113\n80-90,18380199.20018605,2468939472100.6274,9822386.52502568,252659849603.84686,8557812.675160369,283836592114.9938,0.0,1942262178697.5435,288346598959.0703,2276884859329.6387,92851.65888289249,68114828.47711049,288414713787.54736,21140028384.909607,0.0,1065856835.3422952,266208828567.29547,300521837863.53186,566730666430.8273,0.0,537511243168.3834,537511243168.3834,3144332577691.4565,2577601911260.629\n90-100,18448845.43046415,5582951117168.927,7438988.4966574395,195117262024.33237,11009856.933806706,418284375276.56964,0.0,4964203394796.957,1065329557317.0326,5287646742137.805,124858.90829243412,917959877.629813,1066247517194.6622,18110325388.822,12301498725.185736,1105841168.014375,1059332849363.0117,472786412979.30383,1532119262342.3157,0.0,813901831474.4902,813901831474.4902,6693556991221.755,5161437728879.439\nALL,184129204.31,14036383910147.482,146989360.24247327,2821057392887.1357,37139844.067526706,1145037873618.565,0.0,10659697483418.943,1815423720952.337,13231705117165.857,754177.224197826,2476812900.154031,1817900533852.4907,104622859826.74188,12301498725.185736,103255554198.03941,1622323618552.8955,1554210077734.9941,3176533696287.8896,0.0,3669536169433.1416,3669536169433.1416,18439095257418.773,15262561561130.879\n90-95,9242312.116316585,1691746578761.879,4424719.860669112,115889321501.79166,4817592.255647473,165337405393.11203,0.0,1412527114345.2297,236894690985.30585,1579651399713.2905,28234.373298214938,68281790.2046005,236962972775.51044,10100611432.869545,93955702.94668901,720564680.453639,226235752365.13397,196187725034.125,422423477399.259,0.0,363832028096.62134,363832028096.62134,2158179103043.5525,1735755625644.2937\n95-99,7363894.234512476,2033871594101.7083,2586086.2362321876,67396433869.48889,4777807.998280289,183567429709.1535,0.0,1783639906466.6997,339428893045.7759,1904048848405.7808,36076.22549628375,192580417.13273478,339621473462.90857,7922246100.820472,2012419232.3775337,218019969.0828866,333493626625.38275,195425893546.20178,528919520171.58453,0.0,388272347106.4774,388272347106.4774,2562037376536.2188,2033117856364.6338\nTop 1%,1842639.0796350855,1857332944305.3396,428182.39975614,11831506653.051826,1414456.6798789455,69379540174.30415,0.0,1768036373985.0269,489005973285.9508,1803946494018.733,60548.309497935436,657097670.2924776,489663070956.2433,87467855.13198172,10195123789.861513,167256518.47784942,499603470372.495,81172794398.97705,580776264771.4722,0.0,61797456271.39149,61797456271.39149,1973340511641.9836,1392564246870.5117\n", "dist2_xdec": ",s006_7,c00100_7,num_returns_StandardDed_7,standard_7,num_returns_ItemDed_7,c04470_7,c04600_7,c04800_7,taxbc_7,c62100_7,num_returns_AMT_7,c09600_7,c05800_7,c07100_7,othertaxes_7,refund_7,iitax_7,payrolltax_7,combined_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,expanded_income_7,aftertax_income_7\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18412552.836941138,85249675401.3817,18279164.59516693,217701918329.72235,133388.2417742049,1431218356.0855672,0.0,4287816551.2799788,296006814.22047865,83946775216.228,15333.346995059497,873712.9396406887,296880527.1601194,88911239.31706262,0.0,10619346290.439001,-10411377002.595947,10815075159.561907,403698156.9659615,0.0,40922886683.36417,40922886683.36417,126485468531.78203,126081770374.81607\n10-20,18378924.481520943,228283611063.94385,18060188.57278941,283573546875.5925,318735.90873152995,6100237660.783606,0.0,57530623399.12341,5391758094.113707,223107229640.7318,19850.939357403066,10833523.873643298,5402591617.9873495,1161886080.573749,0.0,21306963248.04235,-17066257710.628754,27275789269.3785,10209531558.74975,0.0,186338923028.51587,186338923028.51587,423805683622.77026,413596152064.0205\n20-30,18431473.4599512,383104020197.81323,17823704.27465886,296564226073.4301,607769.1852923383,11439810341.986237,0.0,162402502034.13007,16867302387.470585,373984336034.8501,100587.31209536537,299705194.88604057,17167007582.356625,4276003779.4407835,0.0,21753046933.27499,-8862043130.359148,46031690197.40839,37169647067.04924,0.0,233078255171.36658,233078255171.36658,641483842624.1086,604314195557.0596\n30-40,18409853.860852376,553303723220.5342,17287492.693704568,309432750161.4162,1122361.1671478078,21665823671.04935,0.0,288201095661.379,30514023806.186077,536723751885.6732,110850.56733261343,128152033.46413323,30642175839.65021,6829553182.710899,0.0,16861789380.080423,6950833276.858888,65853793404.20224,72804626681.06113,0.0,261376953991.84363,261376953991.84363,848881444053.2227,776076817372.1615\n40-50,18427633.092895754,724048021311.8801,16505002.025935763,320761044015.68365,1922631.0669599925,38173430239.73533,0.0,426632315371.1428,46551974619.515366,695563595116.1621,73081.11315009941,190236607.49872026,46742211227.014084,10626746157.12224,0.0,14307886973.791315,21807578096.100525,83238735181.42427,105046313277.5248,0.0,316531132044.01715,316531132044.01715,1079049171585.3083,974002858307.7837\n50-60,18379561.675434515,949033356658.6414,15414861.498682573,328816180772.4259,2964700.1767519414,70624293378.10019,0.0,603499442624.4856,71976806226.57724,896706571317.8118,75880.66397911086,159396157.67767754,72136202384.25491,11492611011.595814,0.0,9981313007.146973,50662278365.512115,106938851585.84946,157601129951.36157,0.0,366681111432.5415,366681111432.5415,1358417917221.1667,1200816787269.8052\n60-70,18429277.357563704,1301735703254.7014,14154886.627318095,321402210987.30853,4274390.730245609,105069132552.84866,0.0,906951415419.2406,116209451325.6437,1228788449852.701,105161.47774910118,643781769.8801702,116853233095.52388,14858780469.099092,0.0,4905562363.245293,97088890263.1795,137036212082.69714,234125102345.87665,0.0,416260219833.94104,416260219833.94104,1757872811873.7117,1523747709527.835\n70-80,18430882.914190173,1762387904129.7896,12199539.32519737,294943181681.12225,6231343.588992803,188500470610.27216,0.0,1305980142785.9746,174218170040.07355,1630938237068.8125,35721.23636374661,57740808.44111054,174275910848.51468,16083247068.21463,0.0,1249458021.6759853,156943205758.62405,181601556078.37994,338544761837.004,0.0,496933612604.6781,496933612604.6781,2306713176677.3955,1968168414840.3916\n80-90,18380199.20018605,2469827414811.8237,9822386.52502568,252659849603.84686,8557812.675160369,283835357675.59424,0.0,1943129482309.644,288527621042.46545,2277773716039.826,92851.65888289249,71557605.32060629,288599178647.7861,21143650362.59583,0.0,1059652703.3603072,266395875581.83,253580409779.26376,519976285361.09375,0.0,537511243168.3834,537511243168.3834,3121740487529.427,2601764202168.333\n90-100,18448845.43046415,5584356465143.658,7439302.7927207295,195123672538.84357,11009542.637743417,418275249860.31635,0.0,4965701484620.123,1065762393596.6252,5289060273928.947,123010.18576436558,915541129.7579515,1066677934726.3832,18106273774.444542,12303086898.89441,1105553889.6351411,1059769193961.1979,406486888780.32007,1466256082741.518,0.0,813901831474.4902,813901831474.4902,6661784469980.345,5195528387238.827\nALL,184129204.31,14041329895194.168,146986528.93119997,2820978581039.3916,37142675.37880001,1145115024346.7717,0.0,10664316320776.523,1816315507952.8914,13236592936101.744,752328.5016697574,2477818543.7396946,1818793326496.631,104667663125.11465,12303086898.89441,103150572810.69179,1623278177459.7192,1318859001518.4856,2942137178978.205,0.0,3669536169433.1416,3669536169433.1416,18326234473699.24,15384097294721.035\n90-95,9242312.116316585,1692093449582.359,4425034.156732402,115895732016.30286,4817277.959584183,165331441688.69388,0.0,1412872581799.0527,236973743606.92633,1580002798928.3496,29947.12142416533,70199817.89360447,237043943424.81995,10100191193.70438,94033335.86594863,720564680.453639,226317220886.5279,165949509373.05365,392266730259.58154,0.0,363832028096.62134,363832028096.62134,2143405347555.583,1751138617296.0015\n95-99,7363894.234512476,2034334486720.559,2586086.2362321876,67396433869.48889,4777807.998280289,183564354825.6865,0.0,1784170713836.1716,339567349136.26355,1904515287911.0037,36076.22549628375,190944893.46298882,339758294029.72656,7918849522.531883,2013805035.6145477,218019969.0828866,333635229573.7263,166879767720.2042,500514997293.93054,0.0,388272347106.4774,388272347106.4774,2548224471232.646,2047709473938.7158\nTop 1%,1842639.0796350855,1857928528840.7407,428182.39975614,11831506653.051826,1414456.6798789455,69379453345.93596,0.0,1768658188984.8984,489221300853.4353,1804542187089.5942,56986.8388439165,654396418.4013582,489875697271.8367,87233058.20827718,10195248527.413914,166969240.0986156,499816743500.9437,73657611687.06224,573474355188.0059,0.0,61797456271.39149,61797456271.39149,1970154651192.116,1396680296004.1099\n", "diff_itax_xdec": ",count_7,tax_cut_7,perc_cut_7,tax_inc_7,perc_inc_7,mean_7,tot_change_7,share_of_change_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,pc_aftertaxinc_7\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,18412552.836941138,46832.09845799387,0.25434875257511574,338678.15936626785,1.8393873047673066,0.344693016273506,6346678.374660541,0.6648807453673979,0.0,40922886683.36417,40922886683.36417,0.8048628817007852\n10-20,18378924.481520943,80015.14598220187,0.43536359302554917,297961.2697860154,1.6212116769161329,0.22482574883547585,4132055.459348606,0.43287590004244864,0.0,186338923028.51587,186338923028.51587,0.6434472642305566\n20-30,18431473.4599512,48277.19867320564,0.2619280481189129,865547.5379677329,4.696030080549103,1.9224452668549032,35433498.91424495,3.7120285255258656,0.0,233078255171.36658,233078255171.36658,0.7607824512671169\n30-40,18409853.860852376,32222.95576034705,0.17503102416726696,1475886.3417059388,8.016828122923544,3.420431732611717,62969648.3384038,6.596727335344162,0.0,261376953991.84363,261376953991.84363,0.8479105642678286\n40-50,18427633.092895754,4113.970049486802,0.02232500521769573,874602.2421321401,4.746145301044213,2.1139923781424415,38955875.90558705,4.081034248081291,0.0,316531132044.01715,316531132044.01715,0.8269386305074455\n50-60,18379561.675434515,5057.519915279836,0.0275170866671948,918807.1563389903,4.999070013552261,3.0950462639130403,56885593.6959129,5.95935916466359,0.0,366681111432.5415,366681111432.5415,0.8630161658030211\n60-70,18429277.357563704,0.0,0.0,1030103.6932435143,5.589495850854626,3.556148563257698,65537248.196977794,6.86571019645617,0.0,416260219833.94104,416260219833.94104,0.8643910756214179\n70-80,18430882.914190173,9468.25161610477,0.051371666024827504,1499803.2796084317,8.13744673324203,3.30459997502341,60906695.217892244,6.380611482695952,0.0,496933612604.6781,496933612604.6781,0.8827895962890908\n80-90,18380199.20018605,12591.692809285702,0.06850683538379847,1591948.2686058634,8.66121335937289,10.176549910980993,187047014.5344663,19.595125371241803,0.0,537511243168.3834,537511243168.3834,0.9373942035869609\n90-100,18448845.43046415,170259.47089163188,0.9228733122262838,1554298.9086033222,8.424911545070158,23.65159379923667,436344598.1862417,45.711647030581304,0.0,813901831474.4902,813901831474.4902,0.6604876422056316\nALL,184129204.31,408838.3041555374,0.22203881545440074,10447636.857358217,5.674079186139626,5.184179828511289,954558906.823736,100.0,0.0,3669536169433.1416,3669536169433.1416,0.7962997109192349\n90-95,9242312.116316585,11967.070738241786,0.1294813525840017,641001.1968348271,6.935506924757379,8.814733842423388,81468521.39393553,8.534677201328456,0.0,363832028096.62134,363832028096.62134,0.8862417856775107\n95-99,7363894.234512476,112093.52555343544,1.5222044475881389,510246.42523303203,6.929029790265758,19.229356619482495,141602948.34359145,14.834385529413865,0.0,388272347106.4774,388272347106.4774,0.717696592374284\nTop 1%,1842639.0796350855,46198.87459995466,2.5072123515964853,403051.2865354632,21.873588321771784,115.74330035969449,213273128.4487147,22.34258429983899,0.0,61797456271.39149,61797456271.39149,0.29557337428762764\n", "diff_ptax_xdec": ",count_7,tax_cut_7,perc_cut_7,tax_inc_7,perc_inc_7,mean_7,tot_change_7,share_of_change_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,pc_aftertaxinc_7\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18412552.836941138,13048037.790502444,70.86490344958654,0.0,0.0,-109.20500822189445,-2010742983.944223,0.8543589501560056,0.0,40922886683.36417,40922886683.36417,0.8048628817007852\n10-20,18378924.481520943,11797918.582006821,64.1926495419741,0.0,0.0,-274.92581570228134,-5052840804.812774,2.146937624438339,0.0,186338923028.51587,186338923028.51587,0.6434472642305566\n20-30,18431473.4599512,12698848.578265868,68.89763103236723,0.0,0.0,-461.2873720011725,-8502205954.450247,3.612563023348463,0.0,233078255171.36658,233078255171.36658,0.7607824512671169\n30-40,18409853.860852376,13583203.923498843,73.78224741035473,0.0,0.0,-660.5976678054539,-12161506525.118309,5.167389382970345,0.0,261376953991.84363,261376953991.84363,0.8479105642678286\n40-50,18427633.092895754,13970025.953839889,75.81020244659436,0.0,0.0,-837.3682220832886,-15430714360.20129,6.556466453548731,0.0,316531132044.01715,316531132044.01715,0.8269386305074455\n50-60,18379561.675434515,14578818.420946706,79.32081666796357,0.0,0.0,-1078.4035679661893,-19820584888.44321,8.421709901258106,0.0,366681111432.5415,366681111432.5415,0.8630161658030211\n60-70,18429277.357563704,14569683.984833613,79.05727230728314,0.0,0.0,-1379.410714358869,-25421542644.91468,10.801540852750732,0.0,416260219833.94104,416260219833.94104,0.8643910756214179\n70-80,18430882.914190173,14366661.299790736,77.94885012659735,0.0,0.0,-1828.9946243116892,-33709985771.371986,14.323276661102186,0.0,496933612604.6781,496933612604.6781,0.8827895962890908\n80-90,18380199.20018605,15193772.083407898,82.66380531530965,0.0,0.0,-2553.9129131850177,-46941428084.26809,19.945278704009347,0.0,537511243168.3834,537511243168.3834,0.9373942035869609\n90-100,18448845.43046415,15599950.119516155,84.55786666062214,7002.847128064909,0.037958186350790665,-3593.69503359299,-66299524198.98374,28.170478446417746,0.0,813901831474.4902,813901831474.4902,0.6604876422056316\nALL,184129204.31,139406920.73660895,75.7114664449988,7002.847128064909,0.003803224564135363,-1278.184398278675,-235351076216.50854,100.0,0.0,3669536169433.1416,3669536169433.1416,0.7962997109192349\n90-95,9242312.116316585,7886724.743281683,85.33281114103778,0.0,0.0,-3271.715484233445,-30238215661.07135,12.848131458406439,0.0,363832028096.62134,363832028096.62134,0.8862417856775107\n95-99,7363894.234512476,6073085.265149433,82.47110933080234,0.0,0.0,-3876.498618381836,-28546125825.99758,12.129167320967294,0.0,388272347106.4774,388272347106.4774,0.717696592374284\nTop 1%,1842639.0796350855,1640140.1110850386,89.01038348811372,7002.847128064909,0.3800444267931052,-4078.4887257482387,-7515182711.914807,3.1931796670440122,0.0,61797456271.39149,61797456271.39149,0.29557337428762764\n", "diff_comb_xdec": ",count_7,tax_cut_7,perc_cut_7,tax_inc_7,perc_inc_7,mean_7,tot_change_7,share_of_change_7,ubi_7,benefit_cost_total_7,benefit_value_total_7,pc_aftertaxinc_7\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18412552.836941138,13048037.790502444,70.86490344958654,0.0,0.0,-108.86031520562095,-2004396305.5695624,0.8551305832421361,0.0,40922886683.36417,40922886683.36417,0.8048628817007852\n10-20,18378924.481520943,11797918.582006821,64.1926495419741,0.0,0.0,-274.7009899534459,-5048708749.353426,2.153917987903834,0.0,186338923028.51587,186338923028.51587,0.6434472642305566\n20-30,18431473.4599512,12698848.578265868,68.89763103236723,0.0,0.0,-459.3649267343175,-8466772455.536,3.61215795896391,0.0,233078255171.36658,233078255171.36658,0.7607824512671169\n30-40,18409853.860852376,13583203.923498843,73.78224741035473,0.0,0.0,-657.1772360728421,-12098536876.779905,5.161568531666923,0.0,261376953991.84363,261376953991.84363,0.8479105642678286\n40-50,18427633.092895754,13970025.953839889,75.81020244659436,0.0,0.0,-835.2542297051463,-15391758484.295704,6.566547430378456,0.0,316531132044.01715,316531132044.01715,0.8269386305074455\n50-60,18379561.675434515,14578818.420946706,79.32081666796357,0.0,0.0,-1075.308521702276,-19763699294.747295,8.431737604972808,0.0,366681111432.5415,366681111432.5415,0.8630161658030211\n60-70,18429277.357563704,14569683.984833613,79.05727230728314,0.0,0.0,-1375.8545657956115,-25356005396.717705,10.817569171993,0.0,416260219833.94104,416260219833.94104,0.8643910756214179\n70-80,18430882.914190173,14366661.299790736,77.94885012659735,0.0,0.0,-1825.6900243366658,-33649079076.154095,14.35562245649619,0.0,496933612604.6781,496933612604.6781,0.8827895962890908\n80-90,18380199.20018605,15193772.083407898,82.66380531530965,0.0,0.0,-2543.7363632740366,-46754381069.73363,19.946704672220747,0.0,537511243168.3834,537511243168.3834,0.9373942035869609\n90-100,18448845.43046415,15599950.119516155,84.55786666062214,7002.847128064909,0.037958186350790665,-3570.043439793754,-65863179600.79751,28.099043602161984,0.0,813901831474.4902,813901831474.4902,0.6604876422056316\nALL,184129204.31,139406920.73660895,75.7114664449988,7002.847128064909,0.003803224564135363,-1273.0002184501639,-234396517309.68484,100.0,0.0,3669536169433.1416,3669536169433.1416,0.7962997109192349\n90-95,9242312.116316585,7886724.743281683,85.33281114103778,0.0,0.0,-3262.9007503910216,-30156747139.677414,12.865697616076051,0.0,363832028096.62134,363832028096.62134,0.8862417856775107\n95-99,7363894.234512476,6073085.265149433,82.47110933080234,0.0,0.0,-3857.269261762354,-28404522877.65399,12.118150561139062,0.0,388272347106.4774,388272347106.4774,0.717696592374284\nTop 1%,1842639.0796350855,1640140.1110850386,89.01038348811372,7002.847128064909,0.3800444267931052,-3962.745425388549,-7301909583.466102,3.11519542494687,0.0,61797456271.39149,61797456271.39149,0.29557337428762764\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_7
ind_tax954,558,906.82
payroll_tax-235,351,076,216.51
combined_tax-234,396,517,309.68
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_7
ind_tax1,622,323,618,552.90
payroll_tax1,554,210,077,734.99
combined_tax3,176,533,696,287.89
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_7
ind_tax1,623,278,177,459.72
payroll_tax1,318,859,001,518.49
combined_tax2,942,137,178,978.21
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_7c00100_7num_returns_StandardDed_7standard_7num_returns_ItemDed_7c04470_7c04600_7c04800_7taxbc_7c62100_7num_returns_AMT_7c09600_7c05800_7c07100_7othertaxes_7refund_7iitax_7payrolltax_7combined_7ubi_7benefit_cost_total_7benefit_value_total_7expanded_income_7aftertax_income_7
<$0K64,553.76-8,872,493,020.0464,553.761,568,448,088.270.000.000.000.000.00-8,872,493,020.040.000.000.000.000.001,381,579.33-1,381,579.3322,208,796.1020,827,216.780.001,015,374,805.351,015,374,805.35-7,761,453,659.66-7,782,280,876.44
=$0K1,153,234.970.001,153,234.9720,179,488,056.750.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,829,442.3933,415,439,395.8710,773,535.41104,636,658,669.2755,906.98311,786,793.250.002,152,846,186.23133,791,315.1133,119,664,851.340.000.00133,791,315.1136,193,619.850.003,246,902,618.64-3,149,304,923.384,531,934,715.331,382,629,791.950.0015,563,934,105.8215,563,934,105.8249,489,265,168.0048,106,635,376.06
$10-20K10,753,494.57105,749,038,191.9210,611,103.23156,804,256,591.97142,391.342,196,170,835.000.007,137,612,531.44643,562,771.20103,806,616,970.2615,333.35873,712.94644,436,484.13168,712,123.830.0012,794,765,326.79-12,319,040,966.4814,628,372,950.082,309,331,983.600.0058,577,120,795.3958,577,120,795.39166,217,973,327.09163,908,641,343.49
$20-30K14,923,335.54196,750,815,611.8614,641,114.55230,890,513,170.41282,220.995,423,235,101.790.0058,817,576,959.665,564,988,752.67192,201,010,818.9326,344.9617,660,949.625,582,649,702.281,147,493,895.700.0016,597,985,724.83-12,162,829,918.2528,021,548,918.7415,858,719,000.480.00165,095,922,929.75165,095,922,929.75373,511,967,649.06357,653,248,648.58
$30-40K16,208,033.27338,433,563,529.6115,667,982.65263,487,612,063.58540,050.6210,322,856,859.370.00139,098,144,004.9714,377,394,352.62330,177,325,763.6073,750.07235,603,792.8414,612,998,145.463,830,213,163.610.0020,051,990,133.65-9,269,205,151.8148,027,869,040.9738,758,663,889.160.00200,942,806,447.67200,942,806,447.67565,527,864,060.16526,769,200,170.99
$40-50K16,285,842.72463,382,830,313.2015,268,023.37269,055,456,188.561,017,819.3519,617,645,118.650.00239,035,410,122.5225,258,353,045.84448,376,553,635.83131,193.79185,426,009.7625,443,779,055.615,623,778,332.140.0014,996,088,130.234,823,912,593.2365,613,733,548.3770,437,646,141.600.00234,515,443,246.04234,515,443,246.04731,525,897,821.40661,088,251,679.80
$50-75K31,870,939.541,314,288,415,492.2828,321,642.40559,797,003,805.823,549,297.1478,980,921,693.740.00780,600,114,874.1287,467,135,517.251,254,352,118,989.1074,422.66197,117,320.7087,664,252,837.9517,515,052,483.750.0024,813,507,153.0845,335,693,201.12179,259,214,313.43224,594,907,514.560.00570,522,707,769.17570,522,707,769.171,965,226,236,606.321,740,631,329,091.77
$75-100K20,814,111.881,305,736,955,001.4616,839,976.79374,231,839,546.293,974,135.1090,204,786,956.710.00884,341,646,169.37110,912,815,882.471,242,953,961,600.48132,738.48475,095,803.28111,387,911,685.7415,135,926,862.030.005,816,388,139.6790,435,596,684.05168,225,300,078.62258,660,896,762.670.00443,927,623,122.01443,927,623,122.011,809,395,006,180.551,550,734,109,417.87
$100-200K41,943,655.934,575,637,130,680.4525,750,939.46632,402,213,524.3116,192,716.46507,153,874,024.420.003,480,259,801,376.82489,239,615,572.324,227,573,901,915.28175,535.01447,075,433.38489,686,691,005.7041,430,201,362.790.003,547,079,035.39444,709,410,607.53556,146,884,904.971,000,856,295,512.490.001,133,276,358,663.751,133,276,358,663.755,924,175,214,100.084,923,318,918,587.59
$200-500K17,552,078.373,901,189,276,577.387,508,790.01197,326,828,176.5510,043,288.36364,346,426,981.940.003,341,966,252,320.08601,519,154,601.903,648,648,253,791.5076,431.84301,939,646.96601,821,094,248.8719,672,199,286.362,198,425,010.191,241,771,366.55583,105,548,606.15412,374,091,914.94995,479,640,521.090.00790,451,006,028.45790,451,006,028.454,943,656,319,210.743,948,176,678,689.65
$500-1000K1,231,545.97747,694,312,400.59314,576.288,695,180,980.20916,969.6841,152,340,487.100.00694,271,335,068.18164,521,069,217.35716,904,741,452.9416,111.1590,979,131.80164,612,048,349.1554,002,036.442,005,379,961.23147,694,989.88166,415,731,284.0645,131,607,091.29211,547,338,375.350.0045,884,138,895.8245,884,138,895.82822,798,135,076.45611,250,796,701.10
>$1000K498,935.411,062,978,625,972.9173,887.371,981,894,025.17425,048.0425,327,828,766.590.001,032,016,743,805.57315,785,839,923.611,042,463,460,396.6232,315.92525,041,098.87316,310,881,022.489,086,660.248,097,693,753.760.00324,399,488,116.0032,227,311,462.15356,626,799,578.150.009,763,732,623.929,763,732,623.921,095,332,831,878.57738,706,032,300.42
ALL184,129,204.3114,036,383,910,147.48146,989,360.242,821,057,392,887.1437,139,844.071,145,037,873,618.560.0010,659,697,483,418.951,815,423,720,952.3413,231,705,117,165.86754,177.222,476,812,900.151,817,900,533,852.49104,622,859,826.7412,301,498,725.19103,255,554,198.041,622,323,618,552.901,554,210,077,734.993,176,533,696,287.890.003,669,536,169,433.143,669,536,169,433.1418,439,095,257,418.7715,262,561,561,130.88
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_7c00100_7num_returns_StandardDed_7standard_7num_returns_ItemDed_7c04470_7c04600_7c04800_7taxbc_7c62100_7num_returns_AMT_7c09600_7c05800_7c07100_7othertaxes_7refund_7iitax_7payrolltax_7combined_7ubi_7benefit_cost_total_7benefit_value_total_7expanded_income_7aftertax_income_7
<$0K64,553.76-8,872,493,020.0464,553.761,568,448,088.270.000.000.000.000.00-8,872,493,020.040.000.000.000.000.001,381,579.33-1,381,579.3318,725,063.3817,343,484.060.001,015,374,805.351,015,374,805.35-7,763,195,526.02-7,780,539,010.08
=$0K1,153,234.970.001,153,234.9720,179,488,056.750.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,829,442.3933,415,450,301.9910,773,535.41104,636,658,669.2755,906.98311,786,793.250.002,152,846,186.23133,791,315.1133,119,675,757.470.000.00133,791,315.1136,193,619.850.003,242,266,774.44-3,144,669,079.183,821,044,633.10676,375,553.920.0015,563,934,105.8215,563,934,105.8249,133,831,033.0248,457,455,479.10
$10-20K10,753,494.57105,765,034,120.5610,611,103.23156,804,256,591.97142,391.342,196,170,835.000.007,140,432,404.50643,844,758.50103,822,612,898.9115,333.35873,712.94644,718,471.44168,712,123.830.0012,792,510,954.88-12,316,504,607.2712,336,128,395.3519,623,788.080.0058,577,120,795.3958,577,120,795.39165,087,846,978.36165,068,223,190.28
$20-30K14,923,335.54196,867,772,307.9914,641,114.55230,890,836,323.16282,220.995,422,884,657.880.0058,870,302,665.005,570,227,136.03192,318,405,569.9526,344.9617,660,949.625,587,888,085.651,148,411,454.610.0016,598,747,550.21-12,159,270,919.1723,643,575,761.0311,484,304,841.860.00165,095,922,929.75165,095,922,929.75371,439,937,766.34359,955,632,924.47
$30-40K16,208,033.27338,762,637,329.9615,667,982.65263,487,612,063.58540,050.6210,321,555,125.460.00139,306,948,698.0414,399,295,338.15330,508,026,731.3473,750.07235,603,792.8414,634,899,130.993,835,257,180.540.0020,035,459,687.10-9,235,817,736.6540,543,504,195.4531,307,686,458.810.00200,942,806,447.67200,942,806,447.67562,114,755,437.75530,807,068,978.94
$40-50K16,285,842.72463,820,072,595.4515,268,023.37269,055,456,188.561,017,819.3519,614,945,978.540.00239,416,905,622.0525,298,448,899.19448,817,169,843.21131,193.79185,426,009.7625,483,874,908.965,634,233,264.140.0014,970,486,709.864,879,154,934.9655,386,050,543.1860,265,205,478.140.00234,515,443,246.04234,515,443,246.04726,842,670,723.75666,577,465,245.61
$50-75K31,870,939.541,315,050,679,908.7328,318,698.27559,716,937,594.423,552,241.2779,065,417,565.950.00781,289,081,686.0587,544,596,679.461,255,046,181,684.4474,422.66197,117,320.7087,741,714,000.1617,534,456,012.740.0024,780,824,340.4045,426,433,647.02151,248,590,294.60196,675,023,941.620.00570,522,707,769.17570,522,707,769.171,951,943,206,573.031,755,268,182,631.41
$75-100K20,814,111.881,306,114,805,353.0816,839,976.79374,231,839,546.293,974,135.1090,204,146,597.060.00884,689,329,611.00110,963,119,850.601,243,332,612,401.66132,738.48475,077,417.89111,438,197,268.4915,141,985,035.070.005,805,050,671.6990,491,161,561.73141,891,037,239.44232,382,198,801.170.00443,927,623,122.01443,927,623,122.011,796,587,586,178.861,564,205,387,377.70
$100-200K41,943,655.934,577,094,430,754.5125,750,737.98632,396,734,220.7116,192,917.95507,160,645,974.260.003,481,654,110,270.33489,495,119,723.114,229,026,814,186.27175,535.01450,518,210.23489,945,637,933.3441,435,836,020.480.003,537,491,811.92444,972,310,100.94469,171,674,831.13914,143,984,932.080.001,133,276,358,663.751,133,276,358,663.755,882,106,534,847.264,967,962,549,915.19
$200-500K17,552,078.373,902,081,658,673.777,509,104.31197,333,238,691.0610,042,974.06364,337,388,394.060.003,342,939,075,714.41601,760,619,797.533,649,548,711,168.8574,583.12300,450,416.49602,061,070,214.0119,669,789,624.592,199,888,446.351,238,657,741.00583,352,511,294.78350,446,540,766.50933,799,052,061.290.00790,451,006,028.45790,451,006,028.454,913,580,279,435.713,979,781,227,374.42
$500-1000K1,231,545.97748,022,860,982.57314,576.288,695,180,980.20916,969.6841,152,253,658.740.00694,612,184,200.66164,636,020,196.85717,233,398,570.3816,111.1590,387,416.13164,726,407,612.9853,702,129.032,005,441,571.01147,694,989.88166,530,452,065.0839,843,630,682.71206,374,082,747.790.0045,884,138,895.8245,884,138,895.82820,477,020,691.84614,102,937,944.04
>$1000K498,935.411,063,206,985,885.6073,887.371,981,894,025.17425,048.0425,327,828,766.590.001,032,245,103,718.26315,870,424,258.371,042,691,820,309.3132,315.92524,703,297.14316,395,127,555.519,086,660.248,097,756,881.530.00324,483,797,776.8030,508,499,112.60354,992,296,889.400.009,763,732,623.929,763,732,623.921,094,683,999,559.34739,691,702,669.95
ALL184,129,204.3114,041,329,895,194.17146,986,528.932,820,978,581,039.3937,142,675.381,145,115,024,346.770.0010,664,316,320,776.521,816,315,507,952.8913,236,592,936,101.74752,328.502,477,818,543.741,818,793,326,496.63104,667,663,125.1112,303,086,898.89103,150,572,810.691,623,278,177,459.721,318,859,001,518.492,942,137,178,978.210.003,669,536,169,433.143,669,536,169,433.1418,326,234,473,699.2415,384,097,294,721.03
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_7tax_cut_7perc_cut_7tax_inc_7perc_inc_7mean_7tot_change_7share_of_change_7ubi_7benefit_cost_total_7benefit_value_total_7pc_aftertaxinc_7
<$0K64,553.760.000.000.000.000.000.000.000.001,015,374,805.351,015,374,805.35-0.02
=$0K1,153,234.970.000.000.000.000.000.000.000.000.000.00nan
$0-10K10,829,442.3922,542.970.21288,244.232.660.434,635,844.200.490.0015,563,934,105.8215,563,934,105.820.73
$10-20K10,753,494.5737,085.940.34118,559.751.100.242,536,359.220.270.0058,577,120,795.3958,577,120,795.390.71
$20-30K14,923,335.5471,488.460.48235,965.211.580.243,558,999.080.370.00165,095,922,929.75165,095,922,929.750.64
$30-40K16,208,033.2744,007.070.27804,870.204.972.0633,387,415.163.500.00200,942,806,447.67200,942,806,447.670.77
$40-50K16,285,842.7232,222.960.201,264,197.037.763.3955,242,341.725.790.00234,515,443,246.04234,515,443,246.040.83
$50-75K31,870,939.547,016.740.021,763,675.675.532.8590,740,445.909.510.00570,522,707,769.17570,522,707,769.170.84
$75-100K20,814,111.882,154.750.011,000,300.494.812.6755,564,877.685.820.00443,927,623,122.01443,927,623,122.010.87
$100-200K41,943,655.9322,059.940.053,328,928.957.946.27262,899,493.4227.540.001,133,276,358,663.751,133,276,358,663.750.91
$200-500K17,552,078.37127,649.860.731,269,403.757.2314.07246,962,688.6325.870.00790,451,006,028.45790,451,006,028.450.80
$500-1000K1,231,545.9717,696.191.44225,837.6018.3493.15114,720,781.0212.020.0045,884,138,895.8245,884,138,895.820.47
>$1000K498,935.4124,913.424.99147,653.9729.59168.9884,309,660.808.830.009,763,732,623.929,763,732,623.920.13
ALL184,129,204.31408,838.300.2210,447,636.865.675.18954,558,906.82100.000.003,669,536,169,433.143,669,536,169,433.140.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_7tax_cut_7perc_cut_7tax_inc_7perc_inc_7mean_7tot_change_7share_of_change_7ubi_7benefit_cost_total_7benefit_value_total_7pc_aftertaxinc_7
<$0K64,553.764,396.176.810.000.00-53.97-3,483,732.720.000.001,015,374,805.351,015,374,805.35-0.02
=$0K1,153,234.970.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,829,442.397,849,741.6972.490.000.00-65.64-710,890,082.230.300.0015,563,934,105.8215,563,934,105.820.73
$10-20K10,753,494.578,130,951.3175.610.000.00-213.16-2,292,244,554.740.970.0058,577,120,795.3958,577,120,795.390.71
$20-30K14,923,335.549,401,342.6263.000.000.00-293.36-4,377,973,157.701.860.00165,095,922,929.75165,095,922,929.750.64
$30-40K16,208,033.2711,272,704.3969.550.000.00-461.77-7,484,364,845.513.180.00200,942,806,447.67200,942,806,447.670.77
$40-50K16,285,842.7211,854,987.1472.790.000.00-628.01-10,227,683,005.194.350.00234,515,443,246.04234,515,443,246.040.83
$50-75K31,870,939.5424,530,142.7676.970.000.00-878.88-28,010,624,018.8311.900.00570,522,707,769.17570,522,707,769.170.84
$75-100K20,814,111.8816,406,204.2278.820.000.00-1,265.21-26,334,262,839.1911.190.00443,927,623,122.01443,927,623,122.010.87
$100-200K41,943,655.9333,650,633.0680.230.000.00-2,073.62-86,975,210,073.8336.960.001,133,276,358,663.751,133,276,358,663.750.91
$200-500K17,552,078.3714,768,041.5284.140.000.00-3,528.22-61,927,551,148.4426.310.00790,451,006,028.45790,451,006,028.450.80
$500-1000K1,231,545.971,112,135.3090.300.000.00-4,293.77-5,287,976,408.582.250.0045,884,138,895.8245,884,138,895.820.47
>$1000K498,935.41425,640.5785.317,002.851.40-3,444.96-1,718,812,349.550.730.009,763,732,623.929,763,732,623.920.13
ALL184,129,204.31139,406,920.7475.717,002.850.00-1,278.18-235,351,076,216.51100.000.003,669,536,169,433.143,669,536,169,433.140.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_7tax_cut_7perc_cut_7tax_inc_7perc_inc_7mean_7tot_change_7share_of_change_7ubi_7benefit_cost_total_7benefit_value_total_7pc_aftertaxinc_7
<$0K64,553.764,396.176.810.000.00-53.97-3,483,732.720.000.001,015,374,805.351,015,374,805.35-0.02
=$0K1,153,234.970.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,829,442.397,849,741.6972.490.000.00-65.22-706,254,238.030.300.0015,563,934,105.8215,563,934,105.820.73
$10-20K10,753,494.578,130,951.3175.610.000.00-212.93-2,289,708,195.520.980.0058,577,120,795.3958,577,120,795.390.71
$20-30K14,923,335.549,401,342.6263.000.000.00-293.13-4,374,414,158.621.870.00165,095,922,929.75165,095,922,929.750.64
$30-40K16,208,033.2711,272,704.3969.550.000.00-459.71-7,450,977,430.363.180.00200,942,806,447.67200,942,806,447.670.77
$40-50K16,285,842.7211,854,987.1472.790.000.00-624.62-10,172,440,663.464.340.00234,515,443,246.04234,515,443,246.040.83
$50-75K31,870,939.5424,530,142.7676.970.000.00-876.03-27,919,883,572.9311.910.00570,522,707,769.17570,522,707,769.170.84
$75-100K20,814,111.8816,406,204.2278.820.000.00-1,262.54-26,278,697,961.5111.210.00443,927,623,122.01443,927,623,122.010.87
$100-200K41,943,655.9333,650,633.0680.230.000.00-2,067.35-86,712,310,580.4236.990.001,133,276,358,663.751,133,276,358,663.750.91
$200-500K17,552,078.3714,768,041.5284.140.000.00-3,514.15-61,680,588,459.8126.310.00790,451,006,028.45790,451,006,028.450.80
$500-1000K1,231,545.971,112,135.3090.300.000.00-4,200.62-5,173,255,627.562.210.0045,884,138,895.8245,884,138,895.820.47
>$1000K498,935.41425,640.5785.317,002.851.40-3,275.98-1,634,502,688.750.700.009,763,732,623.929,763,732,623.920.13
ALL184,129,204.31139,406,920.7475.717,002.850.00-1,273.00-234,396,517,309.68100.000.003,669,536,169,433.143,669,536,169,433.140.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_7c00100_7num_returns_StandardDed_7standard_7num_returns_ItemDed_7c04470_7c04600_7c04800_7taxbc_7c62100_7num_returns_AMT_7c09600_7c05800_7c07100_7othertaxes_7refund_7iitax_7payrolltax_7combined_7ubi_7benefit_cost_total_7benefit_value_total_7expanded_income_7aftertax_income_7
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,412,552.8485,242,017,262.0718,279,164.60217,701,918,329.72133,388.241,431,218,356.090.004,287,816,551.28296,006,814.2283,939,117,076.9115,333.35873,712.94296,880,527.1688,911,239.320.0010,625,692,968.81-10,417,723,680.9712,825,818,143.512,408,094,462.540.0040,922,886,683.3640,922,886,683.36127,483,181,884.44125,075,087,421.90
10-2018,378,924.48228,161,640,695.8318,060,188.57283,573,546,875.59318,735.916,100,588,104.690.0057,476,206,626.105,386,350,603.98222,984,821,217.7319,850.9410,833,523.875,397,184,127.861,161,081,402.210.0021,306,492,491.74-17,070,389,766.0932,328,630,074.1915,258,240,308.100.00186,338,923,028.52186,338,923,028.52426,210,133,657.07410,951,893,348.96
20-3018,431,473.46382,756,886,332.9317,823,704.27296,563,902,920.68607,769.1911,441,112,075.900.00162,178,153,831.9716,843,642,389.81373,635,575,002.57100,587.31299,705,194.8917,143,347,584.704,270,649,138.980.0021,770,175,074.99-8,897,476,629.2754,533,896,151.8645,636,419,522.590.00233,078,255,171.37233,078,255,171.37645,387,811,736.45599,751,392,213.87
30-4018,409,853.86552,789,371,253.0717,287,492.69309,432,750,161.421,122,361.1721,668,653,752.590.00287,748,788,188.3430,466,613,939.95536,205,862,316.29110,850.57128,152,033.4630,594,765,973.426,817,886,943.240.0016,889,015,401.666,887,863,628.5278,015,299,929.3284,903,163,557.840.00261,376,953,991.84261,376,953,991.84854,454,870,707.58769,551,707,149.74
40-5018,427,633.09723,720,667,506.9416,507,946.15320,841,110,227.091,919,686.9438,088,716,585.100.00426,361,606,867.8046,522,496,458.25695,304,606,709.1273,081.11190,236,607.5046,712,733,065.7410,616,189,411.840.0014,327,921,433.7121,768,622,220.1998,669,449,541.63120,438,071,761.820.00316,531,132,044.02316,531,132,044.021,086,452,582,900.69966,014,511,138.87
50-6018,379,561.68948,579,743,090.2415,414,861.50328,816,180,772.432,964,700.1870,624,445,305.420.00603,070,552,738.2771,926,063,637.78896,252,876,391.5075,880.66159,414,543.0672,085,478,180.8411,482,636,313.010.009,997,449,096.0150,605,392,771.82126,759,436,474.29177,364,829,246.110.00366,681,111,432.54366,681,111,432.541,367,907,044,735.531,190,542,215,489.42
60-7018,429,277.361,301,300,780,310.2314,154,886.63321,402,210,987.314,274,390.73105,069,877,021.810.00906,542,821,791.73116,148,826,857.861,228,352,596,322.03105,161.48643,781,769.88116,792,608,627.7414,852,753,074.300.004,916,502,538.4697,023,353,014.98162,457,754,727.61259,481,107,742.590.00416,260,219,833.94416,260,219,833.941,770,170,552,529.341,510,689,444,786.74
70-8018,430,882.911,761,942,214,426.6212,199,740.81294,948,660,984.726,231,142.11188,492,295,025.400.001,305,565,963,328.96174,157,563,974.381,630,498,060,662.2535,721.2457,740,808.44174,215,304,782.8216,082,398,530.110.001,250,607,189.30156,882,299,063.41215,311,541,849.75372,193,840,913.160.00496,933,612,604.68496,933,612,604.682,323,139,510,354.471,950,945,669,441.31
80-9018,380,199.202,468,939,472,100.639,822,386.53252,659,849,603.858,557,812.68283,836,592,114.990.001,942,262,178,697.54288,346,598,959.072,276,884,859,329.6492,851.6668,114,828.48288,414,713,787.5521,140,028,384.910.001,065,856,835.34266,208,828,567.30300,521,837,863.53566,730,666,430.830.00537,511,243,168.38537,511,243,168.383,144,332,577,691.462,577,601,911,260.63
90-10018,448,845.435,582,951,117,168.937,438,988.50195,117,262,024.3311,009,856.93418,284,375,276.570.004,964,203,394,796.961,065,329,557,317.035,287,646,742,137.80124,858.91917,959,877.631,066,247,517,194.6618,110,325,388.8212,301,498,725.191,105,841,168.011,059,332,849,363.01472,786,412,979.301,532,119,262,342.320.00813,901,831,474.49813,901,831,474.496,693,556,991,221.755,161,437,728,879.44
ALL184,129,204.3114,036,383,910,147.48146,989,360.242,821,057,392,887.1437,139,844.071,145,037,873,618.560.0010,659,697,483,418.941,815,423,720,952.3413,231,705,117,165.86754,177.222,476,812,900.151,817,900,533,852.49104,622,859,826.7412,301,498,725.19103,255,554,198.041,622,323,618,552.901,554,210,077,734.993,176,533,696,287.890.003,669,536,169,433.143,669,536,169,433.1418,439,095,257,418.7715,262,561,561,130.88
90-959,242,312.121,691,746,578,761.884,424,719.86115,889,321,501.794,817,592.26165,337,405,393.110.001,412,527,114,345.23236,894,690,985.311,579,651,399,713.2928,234.3768,281,790.20236,962,972,775.5110,100,611,432.8793,955,702.95720,564,680.45226,235,752,365.13196,187,725,034.12422,423,477,399.260.00363,832,028,096.62363,832,028,096.622,158,179,103,043.551,735,755,625,644.29
95-997,363,894.232,033,871,594,101.712,586,086.2467,396,433,869.494,777,808.00183,567,429,709.150.001,783,639,906,466.70339,428,893,045.781,904,048,848,405.7836,076.23192,580,417.13339,621,473,462.917,922,246,100.822,012,419,232.38218,019,969.08333,493,626,625.38195,425,893,546.20528,919,520,171.580.00388,272,347,106.48388,272,347,106.482,562,037,376,536.222,033,117,856,364.63
Top 1%1,842,639.081,857,332,944,305.34428,182.4011,831,506,653.051,414,456.6869,379,540,174.300.001,768,036,373,985.03489,005,973,285.951,803,946,494,018.7360,548.31657,097,670.29489,663,070,956.2487,467,855.1310,195,123,789.86167,256,518.48499,603,470,372.4981,172,794,398.98580,776,264,771.470.0061,797,456,271.3961,797,456,271.391,973,340,511,641.981,392,564,246,870.51
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_7c00100_7num_returns_StandardDed_7standard_7num_returns_ItemDed_7c04470_7c04600_7c04800_7taxbc_7c62100_7num_returns_AMT_7c09600_7c05800_7c07100_7othertaxes_7refund_7iitax_7payrolltax_7combined_7ubi_7benefit_cost_total_7benefit_value_total_7expanded_income_7aftertax_income_7
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,412,552.8485,249,675,401.3818,279,164.60217,701,918,329.72133,388.241,431,218,356.090.004,287,816,551.28296,006,814.2283,946,775,216.2315,333.35873,712.94296,880,527.1688,911,239.320.0010,619,346,290.44-10,411,377,002.6010,815,075,159.56403,698,156.970.0040,922,886,683.3640,922,886,683.36126,485,468,531.78126,081,770,374.82
10-2018,378,924.48228,283,611,063.9418,060,188.57283,573,546,875.59318,735.916,100,237,660.780.0057,530,623,399.125,391,758,094.11223,107,229,640.7319,850.9410,833,523.875,402,591,617.991,161,886,080.570.0021,306,963,248.04-17,066,257,710.6327,275,789,269.3810,209,531,558.750.00186,338,923,028.52186,338,923,028.52423,805,683,622.77413,596,152,064.02
20-3018,431,473.46383,104,020,197.8117,823,704.27296,564,226,073.43607,769.1911,439,810,341.990.00162,402,502,034.1316,867,302,387.47373,984,336,034.85100,587.31299,705,194.8917,167,007,582.364,276,003,779.440.0021,753,046,933.27-8,862,043,130.3646,031,690,197.4137,169,647,067.050.00233,078,255,171.37233,078,255,171.37641,483,842,624.11604,314,195,557.06
30-4018,409,853.86553,303,723,220.5317,287,492.69309,432,750,161.421,122,361.1721,665,823,671.050.00288,201,095,661.3830,514,023,806.19536,723,751,885.67110,850.57128,152,033.4630,642,175,839.656,829,553,182.710.0016,861,789,380.086,950,833,276.8665,853,793,404.2072,804,626,681.060.00261,376,953,991.84261,376,953,991.84848,881,444,053.22776,076,817,372.16
40-5018,427,633.09724,048,021,311.8816,505,002.03320,761,044,015.681,922,631.0738,173,430,239.740.00426,632,315,371.1446,551,974,619.52695,563,595,116.1673,081.11190,236,607.5046,742,211,227.0110,626,746,157.120.0014,307,886,973.7921,807,578,096.1083,238,735,181.42105,046,313,277.520.00316,531,132,044.02316,531,132,044.021,079,049,171,585.31974,002,858,307.78
50-6018,379,561.68949,033,356,658.6415,414,861.50328,816,180,772.432,964,700.1870,624,293,378.100.00603,499,442,624.4971,976,806,226.58896,706,571,317.8175,880.66159,396,157.6872,136,202,384.2511,492,611,011.600.009,981,313,007.1550,662,278,365.51106,938,851,585.85157,601,129,951.360.00366,681,111,432.54366,681,111,432.541,358,417,917,221.171,200,816,787,269.81
60-7018,429,277.361,301,735,703,254.7014,154,886.63321,402,210,987.314,274,390.73105,069,132,552.850.00906,951,415,419.24116,209,451,325.641,228,788,449,852.70105,161.48643,781,769.88116,853,233,095.5214,858,780,469.100.004,905,562,363.2597,088,890,263.18137,036,212,082.70234,125,102,345.880.00416,260,219,833.94416,260,219,833.941,757,872,811,873.711,523,747,709,527.83
70-8018,430,882.911,762,387,904,129.7912,199,539.33294,943,181,681.126,231,343.59188,500,470,610.270.001,305,980,142,785.97174,218,170,040.071,630,938,237,068.8135,721.2457,740,808.44174,275,910,848.5116,083,247,068.210.001,249,458,021.68156,943,205,758.62181,601,556,078.38338,544,761,837.000.00496,933,612,604.68496,933,612,604.682,306,713,176,677.401,968,168,414,840.39
80-9018,380,199.202,469,827,414,811.829,822,386.53252,659,849,603.858,557,812.68283,835,357,675.590.001,943,129,482,309.64288,527,621,042.472,277,773,716,039.8392,851.6671,557,605.32288,599,178,647.7921,143,650,362.600.001,059,652,703.36266,395,875,581.83253,580,409,779.26519,976,285,361.090.00537,511,243,168.38537,511,243,168.383,121,740,487,529.432,601,764,202,168.33
90-10018,448,845.435,584,356,465,143.667,439,302.79195,123,672,538.8411,009,542.64418,275,249,860.320.004,965,701,484,620.121,065,762,393,596.635,289,060,273,928.95123,010.19915,541,129.761,066,677,934,726.3818,106,273,774.4412,303,086,898.891,105,553,889.641,059,769,193,961.20406,486,888,780.321,466,256,082,741.520.00813,901,831,474.49813,901,831,474.496,661,784,469,980.345,195,528,387,238.83
ALL184,129,204.3114,041,329,895,194.17146,986,528.932,820,978,581,039.3937,142,675.381,145,115,024,346.770.0010,664,316,320,776.521,816,315,507,952.8913,236,592,936,101.74752,328.502,477,818,543.741,818,793,326,496.63104,667,663,125.1112,303,086,898.89103,150,572,810.691,623,278,177,459.721,318,859,001,518.492,942,137,178,978.210.003,669,536,169,433.143,669,536,169,433.1418,326,234,473,699.2415,384,097,294,721.04
90-959,242,312.121,692,093,449,582.364,425,034.16115,895,732,016.304,817,277.96165,331,441,688.690.001,412,872,581,799.05236,973,743,606.931,580,002,798,928.3529,947.1270,199,817.89237,043,943,424.8210,100,191,193.7094,033,335.87720,564,680.45226,317,220,886.53165,949,509,373.05392,266,730,259.580.00363,832,028,096.62363,832,028,096.622,143,405,347,555.581,751,138,617,296.00
95-997,363,894.232,034,334,486,720.562,586,086.2467,396,433,869.494,777,808.00183,564,354,825.690.001,784,170,713,836.17339,567,349,136.261,904,515,287,911.0036,076.23190,944,893.46339,758,294,029.737,918,849,522.532,013,805,035.61218,019,969.08333,635,229,573.73166,879,767,720.20500,514,997,293.930.00388,272,347,106.48388,272,347,106.482,548,224,471,232.652,047,709,473,938.72
Top 1%1,842,639.081,857,928,528,840.74428,182.4011,831,506,653.051,414,456.6869,379,453,345.940.001,768,658,188,984.90489,221,300,853.441,804,542,187,089.5956,986.84654,396,418.40489,875,697,271.8487,233,058.2110,195,248,527.41166,969,240.10499,816,743,500.9473,657,611,687.06573,474,355,188.010.0061,797,456,271.3961,797,456,271.391,970,154,651,192.121,396,680,296,004.11
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_7tax_cut_7perc_cut_7tax_inc_7perc_inc_7mean_7tot_change_7share_of_change_7ubi_7benefit_cost_total_7benefit_value_total_7pc_aftertaxinc_7
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p18,412,552.8446,832.100.25338,678.161.840.346,346,678.370.660.0040,922,886,683.3640,922,886,683.360.80
10-2018,378,924.4880,015.150.44297,961.271.620.224,132,055.460.430.00186,338,923,028.52186,338,923,028.520.64
20-3018,431,473.4648,277.200.26865,547.544.701.9235,433,498.913.710.00233,078,255,171.37233,078,255,171.370.76
30-4018,409,853.8632,222.960.181,475,886.348.023.4262,969,648.346.600.00261,376,953,991.84261,376,953,991.840.85
40-5018,427,633.094,113.970.02874,602.244.752.1138,955,875.914.080.00316,531,132,044.02316,531,132,044.020.83
50-6018,379,561.685,057.520.03918,807.165.003.1056,885,593.705.960.00366,681,111,432.54366,681,111,432.540.86
60-7018,429,277.360.000.001,030,103.695.593.5665,537,248.206.870.00416,260,219,833.94416,260,219,833.940.86
70-8018,430,882.919,468.250.051,499,803.288.143.3060,906,695.226.380.00496,933,612,604.68496,933,612,604.680.88
80-9018,380,199.2012,591.690.071,591,948.278.6610.18187,047,014.5319.600.00537,511,243,168.38537,511,243,168.380.94
90-10018,448,845.43170,259.470.921,554,298.918.4223.65436,344,598.1945.710.00813,901,831,474.49813,901,831,474.490.66
ALL184,129,204.31408,838.300.2210,447,636.865.675.18954,558,906.82100.000.003,669,536,169,433.143,669,536,169,433.140.80
90-959,242,312.1211,967.070.13641,001.206.948.8181,468,521.398.530.00363,832,028,096.62363,832,028,096.620.89
95-997,363,894.23112,093.531.52510,246.436.9319.23141,602,948.3414.830.00388,272,347,106.48388,272,347,106.480.72
Top 1%1,842,639.0846,198.872.51403,051.2921.87115.74213,273,128.4522.340.0061,797,456,271.3961,797,456,271.390.30
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_7tax_cut_7perc_cut_7tax_inc_7perc_inc_7mean_7tot_change_7share_of_change_7ubi_7benefit_cost_total_7benefit_value_total_7pc_aftertaxinc_7
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,412,552.8413,048,037.7970.860.000.00-109.21-2,010,742,983.940.850.0040,922,886,683.3640,922,886,683.360.80
10-2018,378,924.4811,797,918.5864.190.000.00-274.93-5,052,840,804.812.150.00186,338,923,028.52186,338,923,028.520.64
20-3018,431,473.4612,698,848.5868.900.000.00-461.29-8,502,205,954.453.610.00233,078,255,171.37233,078,255,171.370.76
30-4018,409,853.8613,583,203.9273.780.000.00-660.60-12,161,506,525.125.170.00261,376,953,991.84261,376,953,991.840.85
40-5018,427,633.0913,970,025.9575.810.000.00-837.37-15,430,714,360.206.560.00316,531,132,044.02316,531,132,044.020.83
50-6018,379,561.6814,578,818.4279.320.000.00-1,078.40-19,820,584,888.448.420.00366,681,111,432.54366,681,111,432.540.86
60-7018,429,277.3614,569,683.9879.060.000.00-1,379.41-25,421,542,644.9110.800.00416,260,219,833.94416,260,219,833.940.86
70-8018,430,882.9114,366,661.3077.950.000.00-1,828.99-33,709,985,771.3714.320.00496,933,612,604.68496,933,612,604.680.88
80-9018,380,199.2015,193,772.0882.660.000.00-2,553.91-46,941,428,084.2719.950.00537,511,243,168.38537,511,243,168.380.94
90-10018,448,845.4315,599,950.1284.567,002.850.04-3,593.70-66,299,524,198.9828.170.00813,901,831,474.49813,901,831,474.490.66
ALL184,129,204.31139,406,920.7475.717,002.850.00-1,278.18-235,351,076,216.51100.000.003,669,536,169,433.143,669,536,169,433.140.80
90-959,242,312.127,886,724.7485.330.000.00-3,271.72-30,238,215,661.0712.850.00363,832,028,096.62363,832,028,096.620.89
95-997,363,894.236,073,085.2782.470.000.00-3,876.50-28,546,125,826.0012.130.00388,272,347,106.48388,272,347,106.480.72
Top 1%1,842,639.081,640,140.1189.017,002.850.38-4,078.49-7,515,182,711.913.190.0061,797,456,271.3961,797,456,271.390.30
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_7tax_cut_7perc_cut_7tax_inc_7perc_inc_7mean_7tot_change_7share_of_change_7ubi_7benefit_cost_total_7benefit_value_total_7pc_aftertaxinc_7
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,412,552.8413,048,037.7970.860.000.00-108.86-2,004,396,305.570.860.0040,922,886,683.3640,922,886,683.360.80
10-2018,378,924.4811,797,918.5864.190.000.00-274.70-5,048,708,749.352.150.00186,338,923,028.52186,338,923,028.520.64
20-3018,431,473.4612,698,848.5868.900.000.00-459.36-8,466,772,455.543.610.00233,078,255,171.37233,078,255,171.370.76
30-4018,409,853.8613,583,203.9273.780.000.00-657.18-12,098,536,876.785.160.00261,376,953,991.84261,376,953,991.840.85
40-5018,427,633.0913,970,025.9575.810.000.00-835.25-15,391,758,484.306.570.00316,531,132,044.02316,531,132,044.020.83
50-6018,379,561.6814,578,818.4279.320.000.00-1,075.31-19,763,699,294.758.430.00366,681,111,432.54366,681,111,432.540.86
60-7018,429,277.3614,569,683.9879.060.000.00-1,375.85-25,356,005,396.7210.820.00416,260,219,833.94416,260,219,833.940.86
70-8018,430,882.9114,366,661.3077.950.000.00-1,825.69-33,649,079,076.1514.360.00496,933,612,604.68496,933,612,604.680.88
80-9018,380,199.2015,193,772.0882.660.000.00-2,543.74-46,754,381,069.7319.950.00537,511,243,168.38537,511,243,168.380.94
90-10018,448,845.4315,599,950.1284.567,002.850.04-3,570.04-65,863,179,600.8028.100.00813,901,831,474.49813,901,831,474.490.66
ALL184,129,204.31139,406,920.7475.717,002.850.00-1,273.00-234,396,517,309.68100.000.003,669,536,169,433.143,669,536,169,433.140.80
90-959,242,312.127,886,724.7485.330.000.00-3,262.90-30,156,747,139.6812.870.00363,832,028,096.62363,832,028,096.620.89
95-997,363,894.236,073,085.2782.470.000.00-3,857.27-28,404,522,877.6512.120.00388,272,347,106.48388,272,347,106.480.72
Top 1%1,842,639.081,640,140.1189.017,002.850.38-3,962.75-7,301,909,583.473.120.0061,797,456,271.3961,797,456,271.390.30
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_8.json b/webapp/apps/taxbrain/tests/response_year_8.json index a1ea2afe..a4fb5f52 100644 --- a/webapp/apps/taxbrain/tests/response_year_8.json +++ b/webapp/apps/taxbrain/tests/response_year_8.json @@ -1 +1 @@ -{"aggr_1": {"combined_tax_8": "3679306080082.39", "payroll_tax_8": "1697422471211.97", "ind_tax_8": "1981883608870.42"}, "aggr_2": {"combined_tax_8": "5080498664607.46", "payroll_tax_8": "2509443065590.17", "ind_tax_8": "2571055599017.29"}, "diff_ptax_xdec": {"Top 1%_8": ["1891354.36", "1560.36", "0.08", "1660720.85", "87.81", "13663.66", "25842820701.05", "3.18", "59267510595.93", "87490713835.74", "87490713835.74", "1.58"], "ALL_8": ["189134250.72", "1560.36", "0.00", "143642768.67", "75.95", "4293.36", "812020594378.21", "100.00", "4491096531484.39", "3818412081864.89", "3818412081864.89", "20.86"], "30-40_8": ["18912968.19", "0.00", "0.00", "13847055.23", "73.21", "2065.65", "39067500515.63", "4.81", "394783002741.18", "282277559857.39", "282277559857.39", "41.47"], "70-80_8": ["18914581.22", "0.00", "0.00", "15161892.77", "80.16", "6168.58", "116676137209.78", "14.37", "535776022030.40", "523579373679.99", "523579373679.99", "18.62"], "0-10p_8": ["17472954.87", "0.00", "0.00", "12861407.97", "73.61", "357.32", "6243480948.54", "0.77", "263012344898.84", "42895291154.07", "42895291154.07", "179.91"], "20-30_8": ["18913200.30", "0.00", "0.00", "13376561.52", "70.73", "1522.63", "28797832543.73", "3.55", "365719914215.53", "224530706939.08", "224530706939.08", "50.73"], "0-10n_8": ["100970.49", "0.00", "0.00", "21778.88", "21.57", "310.42", "31343549.51", "0.00", "2369917294.71", "1167805322.79", "1167805322.79", "-6.85"], "40-50_8": ["18914362.07", "0.00", "0.00", "14410932.85", "76.19", "2772.23", "52434991913.38", "6.46", "430772855471.58", "325260590266.05", "325260590266.05", "35.11"], "60-70_8": ["18911947.65", "0.00", "0.00", "15017768.36", "79.41", "4702.41", "88931725566.61", "10.95", "499630853134.12", "438750480598.97", "438750480598.97", "23.90"], "95-99_8": ["7565591.80", "0.00", "0.00", "6492035.14", "85.81", "13412.39", "101472635599.49", "12.50", "241870100173.70", "379999745143.36", "379999745143.36", "5.26"], "90-100_8": ["18913516.38", "1560.36", "0.01", "16176932.16", "85.53", "12312.39", "232870550149.75", "28.68", "597946644624.83", "825684442283.96", "825684442283.96", "5.55"], "90-95_8": ["9456570.22", "0.00", "0.00", "8024176.17", "84.85", "11162.09", "105555093849.21", "13.00", "296809033855.19", "358193983304.85", "358193983304.85", "9.04"], "50-60_8": ["18913365.64", "0.00", "0.00", "14794843.57", "78.22", "3625.90", "68577962838.27", "8.45", "465352888320.99", "376581308929.82", "376581308929.82", "29.25"], "10-20_8": ["18913341.62", "0.00", "0.00", "12399507.14", "65.56", "920.54", "17410474633.81", "2.14", "335979855896.88", "174624529887.03", "174624529887.03", "69.99"], "0-10z_8": ["1339234.05", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "28205220897.06", "0.00", "0.00", "inf"], "80-90_8": ["18913808.24", "0.00", "0.00", "15574088.22", "82.34", "8511.17", "160978594509.18", "19.82", "571547011958.29", "603059992945.75", "603059992945.75", "13.37"]}, "diff_comb_xbin": {"$20-30K_8": ["15000736.60", "0.00", "0.00", "10104625.55", "67.36", "2117.02", "31756901940.33", "2.27", "268278528568.22", "150329138119.11", "150329138119.11", "65.96"], "<$0K_8": ["100970.49", "0.00", "0.00", "21778.88", "21.57", "309.51", "31251610.47", "0.00", "2369917294.71", "1167805322.79", "1167805322.79", "-6.85"], "$30-40K_8": ["16680284.66", "0.00", "0.00", "12174878.69", "72.99", "3050.07", "50876037864.03", "3.63", "321841293413.08", "198934537420.36", "198934537420.36", "51.24"], "ALL_8": ["189134250.72", "293.73", "0.00", "158467388.47", "83.79", "7408.45", "1401192584525.07", "100.00", "4491096531484.39", "3818412081864.89", "3818412081864.89", "20.86"], "$50-75K_8": ["30256082.33", "0.00", "0.00", "24963044.45", "82.51", "4808.16", "145475975054.22", "10.38", "692609033480.09", "528386625680.27", "528386625680.27", "34.82"], ">$1000K_8": ["600090.16", "293.73", "0.05", "593600.80", "98.92", "24678.33", "14809225238.85", "1.06", "18723937615.33", "19425312050.85", "19425312050.85", "0.84"], "=$0K_8": ["1339234.05", "0.00", "0.00", "377361.32", "28.18", "414.55", "555185338.70", "0.04", "28205220897.06", "0.00", "0.00", "inf"], "$0-10K_8": ["10975143.79", "0.00", "0.00", "8658488.29", "78.89", "866.93", "9514652357.82", "0.68", "157223784254.47", "16143326316.19", "16143326316.19", "294.08"], "$40-50K_8": ["15793120.99", "0.00", "0.00", "12225446.68", "77.41", "3648.53", "57621650625.40", "4.11", "323180836638.80", "220377109323.20", "220377109323.20", "42.68"], "$200-500K_8": ["20722589.35", "0.00", "0.00", "19945844.85", "96.25", "19464.96", "403364273291.78", "28.79", "652534925377.93", "846364107568.70", "846364107568.70", "7.83"], "$500-1000K_8": ["1746643.38", "0.00", "0.00", "1726588.63", "98.85", "24280.26", "42408963479.77", "3.03", "55215386593.77", "99029172406.04", "99029172406.04", "2.73"], "$75-100K_8": ["21304068.32", "0.00", "0.00", "18724181.01", "87.89", "6731.32", "143404449398.75", "10.23", "538736967712.46", "452751161658.04", "452751161658.04", "27.03"], "$100-200K_8": ["43892385.83", "0.00", "0.00", "40630341.64", "92.57", "11044.72", "484778892483.21", "34.60", "1252869468817.57", "1230352354339.37", "1230352354339.37", "17.48"], "$10-20K_8": ["10722900.77", "0.00", "0.00", "8321207.68", "77.60", "1547.63", "16595125841.75", "1.18", "179307230820.88", "55151431659.97", "55151431659.97", "101.16"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"Top 1%_8": ["1891354.36", "2054247937222.07", "243425.67", "7512418760.82", "1647752.93", "128732052718.91", "1365494146.05", "1916904341429.52", "560766945957.31", "1994797406661.26", "852802.11", "9401579905.65", "570168525862.97", "58265790.62", "10469867271.70", "16481075.72", "580563646268.33", "112657525571.39", "693221171839.72", "59267510595.93", "87490713835.74", "87490713835.74", "2226535023903.69", "1533313852063.96"], "ALL_8": ["189134250.72", "19756266854678.02", "150572227.29", "3605775580854.97", "38378698.86", "1494808498847.48", "1745445508752.32", "13323090919445.06", "2572486703349.71", "18891255097977.57", "19325162.67", "50069822663.78", "2622556526013.49", "39434198492.96", "13889787895.03", "25956516398.27", "2571055599017.29", "2509443065590.17", "5080498664607.46", "4491096531484.39", "3818412081864.89", "3818412081864.89", "24795931982156.11", "19715433317548.65"], "30-40_8": ["18912968.19", "952256399676.48", "17777680.25", "402155904889.45", "1123385.79", "27575795561.70", "158723703740.56", "411413969772.99", "51281860291.33", "934292368962.44", "582696.08", "1474941829.85", "52756802121.18", "6052048907.65", "0.00", "2076582174.27", "44628171039.26", "118573400979.45", "163201572018.70", "394783002741.18", "282277559857.39", "282277559857.39", "1296416523263.47", "1133214951244.77"], "70-80_8": ["18914581.22", "2420461609829.88", "13574233.66", "400232183720.65", "5332200.78", "186739770354.07", "216875531704.54", "1635746007977.46", "266500103172.57", "2305207212055.55", "552592.66", "855888608.57", "267355991781.14", "1817688368.27", "16829.98", "228305454.65", "265310014788.19", "352382916707.68", "617692931495.86", "535776022030.40", "523579373679.99", "523579373679.99", "3088268062786.69", "2470575131290.83"], "0-10p_8": ["17472954.87", "357060192407.46", "16721672.55", "249006306829.01", "741657.52", "7566166954.32", "80820587326.93", "78452958326.23", "8066884054.07", "351653529085.09", "4531459.02", "5964441942.95", "14031325997.02", "3288693451.00", "0.00", "7854475414.08", "2888157131.94", "18822306061.96", "21710463193.91", "263012344898.84", "42895291154.07", "42895291154.07", "403779173668.07", "382068710474.16"], "20-30_8": ["18913200.30", "770841164062.62", "17938732.20", "383398941361.19", "963550.44", "23044588339.63", "145437904620.62", "274367083095.31", "32549233461.70", "756022633683.35", "743269.06", "1729161979.55", "34278395441.25", "5029028202.58", "0.00", "4203495437.82", "25045871800.85", "87423753681.40", "112469625482.25", "365719914215.53", "224530706939.08", "224530706939.08", "1040491133762.40", "928021508280.15"], "0-10n_8": ["100970.49", "-32117254830.30", "11990.00", "2424646411.16", "0.00", "0.00", "928872093.10", "0.00", "0.00", "-32117254830.30", "0.00", "0.00", "0.00", "0.00", "0.00", "305616.86", "-305616.86", "98179723.32", "97874106.46", "2369917294.71", "1167805322.79", "1167805322.79", "-30853292707.46", "-30951166813.92"], "40-50_8": ["18914362.07", "1199780574697.97", "17416708.91", "422143943419.72", "1484259.39", "40197379899.19", "175102477339.05", "598768832855.95", "79308304382.08", "1174235885456.32", "525920.04", "1209603202.88", "80517907584.96", "7178344416.00", "0.00", "1259208308.16", "72080354860.80", "158760176796.59", "230840531657.39", "430772855471.58", "325260590266.05", "325260590266.05", "1600369712518.68", "1369529180861.29"], "60-70_8": ["18911947.65", "1903997562075.35", "15277062.50", "425480263022.21", "3627147.10", "115708890481.41", "203484533574.41", "1182424844199.54", "181159135164.80", "1831840922545.96", "703842.04", "1150143110.13", "182309278274.94", "4768531955.37", "0.00", "453160365.68", "177087585953.89", "268736006169.96", "445823592123.85", "499630853134.12", "438750480598.97", "438750480598.97", "2450744992525.26", "2004921400401.41"], "95-99_8": ["7565591.80", "2552084343737.99", "1532223.44", "46919530952.54", "6031793.48", "296413841465.42", "80540769081.39", "2132942806329.15", "479091639947.87", "2396215048219.82", "4853834.25", "18388674523.48", "497480314471.35", "238948389.79", "2696660511.00", "44652560.29", "499893374032.27", "322454786945.07", "822348160977.34", "241870100173.70", "379999745143.36", "379999745143.36", "3124391155179.10", "2302042994201.76"], "90-100_8": ["18913516.38", "6815820349439.79", "5223651.29", "165367946484.42", "13683213.44", "683972645852.61", "201979034298.36", "5774917265014.50", "1384407195192.33", "6452635368023.74", "7723159.78", "31567210110.12", "1415974405302.46", "602358323.17", "13855660531.84", "109751041.90", "1429117956469.23", "757814142803.84", "2186932099273.06", "597946644624.83", "825684442283.96", "825684442283.96", "8086283001244.69", "5899350901971.62"], "90-95_8": ["9456570.22", "2209488068479.73", "3448002.18", "110935996771.06", "6003667.03", "258826751668.29", "120072771070.92", "1725070117255.83", "344548609287.15", "2061622913142.67", "2016523.42", "3776955680.99", "348325564968.14", "305144142.76", "689132749.14", "48617405.89", "348660936168.62", "322701830287.37", "671362766456.00", "296809033855.19", "358193983304.85", "358193983304.85", "2735356822161.90", "2063994055705.90"], "50-60_8": ["18913365.64", "1505892431886.02", "16548070.65", "429904561131.60", "2358870.21", "68566516837.30", "189845568354.35", "847937100186.92", "123397608150.00", "1462377424007.48", "683636.90", "1260047346.26", "124657655496.26", "6842082072.61", "0.00", "763862972.58", "117051710451.07", "207365178154.75", "324416888605.82", "465352888320.99", "376581308929.82", "376581308929.82", "1972513960652.90", "1648097072047.08"], "10-20_8": ["18913341.62", "582909160600.74", "18265104.54", "367660411977.19", "639641.93", "12652584839.69", "129516794884.81", "140476916885.07", "14991396086.21", "574716871187.92", "2087254.34", "2926595609.51", "17917991695.72", "3096318954.15", "0.00", "8856796049.95", "5964876691.63", "52623811820.30", "58588688511.92", "335979855896.88", "174624529887.03", "174624529887.03", "779843973165.98", "721255284654.06"], "0-10z_8": ["1339234.05", "28182668677.55", "1318550.53", "30685228307.74", "20286.90", "22103548.53", "11495517973.44", "472464654.64", "49867124.30", "28163799694.80", "338603.48", "532021137.52", "581888261.82", "26702923.12", "0.00", "0.00", "555185338.70", "0.00", "555185338.70", "28205220897.06", "0.00", "0.00", "28205220897.06", "27650035558.36"], "80-90_8": ["18913808.24", "3251181996154.46", "10498770.21", "327315243300.64", "8404485.36", "328762056179.03", "231234982842.15", "2378113476476.45", "430775116270.32", "3052226338105.21", "852729.27", "1399767786.43", "432174884056.75", "732400919.05", "34110533.22", "150573562.32", "431326020108.60", "486843192690.94", "918169212799.54", "571547011958.29", "603059992945.75", "603059992945.75", "4079869520378.38", "3161700307578.85"]}, "aggr_d": {"combined_tax_8": "1401192584525.07", "payroll_tax_8": "812020594378.21", "ind_tax_8": "589171990146.87"}, "dropq_version": "0.17.0", "dist1_xdec": {"Top 1%_8": ["1891354.36", "1997062466728.88", "113840.70", "1731421910.43", "1767733.35", "133256479641.03", "1554640822.22", "1860999985166.58", "540613151229.16", "1935849785475.23", "881977.08", "9450845522.02", "550063996751.18", "46609794.87", "10395319631.67", "81904448.02", "560330802139.96", "86814704870.34", "647145507010.30", "0.00", "87758860987.03", "87758860987.03", "2156623768018.72", "1509478261008.41"], "ALL_8": ["189134250.72", "15281617034981.97", "85484866.68", "1117672787508.21", "83548724.69", "2360029659359.90", "1753355431518.78", "10843744053408.74", "2071089513341.36", "13926655413934.40", "5335536.28", "24634897986.55", "2095724411327.92", "33518945919.07", "13098003309.42", "93419859847.84", "1981883608870.42", "1697422471211.97", "3679306080082.39", "0.00", "3895095395463.15", "3895095395463.15", "19991578921218.08", "16312272841135.69"], "30-40_8": ["18912968.19", "559008118704.70", "10983975.01", "142545814010.35", "5446330.56", "87048743292.35", "158723703740.56", "265728620040.64", "31961995968.62", "504491070732.24", "25099.10", "57765256.76", "32019761225.38", "3233610551.48", "0.00", "15970273004.08", "12815877669.82", "79505900463.81", "92321778133.63", "0.00", "292044501505.30", "292044501505.30", "893370344437.81", "801048566304.18"], "70-80_8": ["18914581.22", "1886162701543.26", "5577069.83", "86866061849.02", "12541469.38", "351384768765.51", "216875531704.54", "1271024936918.18", "193416910093.17", "1677097186356.23", "37649.21", "97212783.00", "193514122876.17", "6215019935.48", "0.00", "2090742761.09", "185208360179.60", "235706779497.90", "420915139677.50", "0.00", "531718724669.47", "531718724669.47", "2503731043129.29", "2082815903451.80"], "0-10p_8": ["17473113.94", "94067205850.39", "14396628.49", "119219894676.06", "352796.10", "4003256341.31", "80826491313.40", "6077502319.34", "477420835.66", "91765913191.21", "8701.12", "5316262.29", "482737097.95", "151373347.26", "0.00", "10290297345.65", "-9958933594.96", "12579195723.36", "2620262128.40", "0.00", "44352846734.23", "44352846734.23", "139122294647.50", "136502032519.10"], "20-30_8": ["18913200.30", "406268888793.87", "11312598.16", "143761828168.37", "4413083.73", "64950249411.45", "145437904620.62", "159523329413.65", "17989273111.44", "365730495836.09", "39857.51", "58215069.49", "18047488180.93", "2372340692.57", "0.00", "20380018042.35", "-4704870553.99", "58625921137.66", "53921050583.67", "0.00", "232627344951.85", "232627344951.85", "669611927743.88", "615690877160.21"], "0-10n_8": ["100970.49", "-34483875342.34", "0.00", "1103712605.27", "0.00", "0.00", "928872093.10", "0.00", "0.00", "-34483875342.34", "0.00", "0.00", "0.00", "0.00", "0.00", "213677.82", "-213677.82", "66836173.81", "66622496.00", "0.00", "1241061607.50", "1241061607.50", "-33162328709.55", "-33228951205.54"], "40-50_8": ["18914362.07", "770412476539.41", "10126266.89", "135749026825.40", "7039940.81", "127819404228.15", "175102477339.05", "409238600294.66", "51166378734.68", "690704777699.68", "30687.31", "119038157.16", "51285416891.84", "4775446669.02", "0.00", "11517337688.38", "34992632534.43", "106325184883.21", "141317817417.65", "0.00", "335507012471.32", "335507012471.32", "1154968697166.66", "1013650879749.01"], "60-70_8": ["18911947.65", "1405768506656.84", "7263749.70", "106717373851.70", "10694191.81", "262780345093.33", "203484533574.41", "883698866042.90", "129928868080.31", "1245376608195.33", "30216.63", "112864146.00", "130041732226.31", "7271591437.37", "0.00", "4116382375.53", "118653758413.41", "179804280603.35", "298458039016.76", "0.00", "447353908746.29", "447353908746.29", "1916604109160.74", "1618146070143.98"], "95-99_8": ["7565591.80", "2312174609112.14", "694194.34", "12514906334.92", "6700840.58", "314358545504.23", "88261160639.77", "1905590531192.51", "412303115724.27", "2151163373037.79", "3704747.86", "13522772349.97", "425825888074.23", "183961133.96", "2409783273.74", "335499482.04", "427716210731.97", "220982151345.59", "648698362077.55", "0.00", "382014263864.79", "382014263864.79", "2835740701674.58", "2187042339597.03"], "90-100_8": ["18913516.38", "6223371358582.33", "2114889.72", "36636481318.79", "16439939.19", "755544329308.72", "209888957064.82", "5241014396343.13", "1232382361200.72", "5831825479765.60", "4984712.46", "23817370065.48", "1256199731266.21", "515393408.50", "13093366039.69", "814349323.05", "1267963354574.35", "524943592654.09", "1792906947228.43", "0.00", "830648755044.30", "830648755044.30", "7382259144376.41", "5589352197147.97"], "90-95_8": ["9456570.22", "1914134282741.31", "1306854.68", "22390153073.45", "7971365.26", "307929304163.47", "120073155602.83", "1474423879984.03", "279466094247.29", "1744812321252.58", "397987.52", "843752193.49", "280309846440.79", "284822479.67", "288263134.28", "396945392.98", "279916341702.42", "217146736438.16", "497063078140.58", "0.00", "360875630192.48", "360875630192.48", "2389894674683.11", "1892831596542.53"], "50-60_8": ["18913365.64", "1041879561865.23", "8654082.69", "122566212392.85", "8883279.77", "187188876081.01", "189845568354.35", "606759936486.24", "82817405160.48", "926171622068.31", "36848.49", "111858339.04", "82929263499.53", "6203748065.07", "0.00", "7223147358.75", "69502368075.71", "138787215316.48", "208289583392.19", "0.00", "385826989511.13", "385826989511.13", "1483396951797.34", "1275107368405.15"], "10-20_8": ["18913182.55", "247213558164.75", "11388282.86", "146737103315.06", "3033087.57", "37547517808.44", "129510890898.34", "64760374368.69", "6368084942.07", "223712516395.61", "51604.97", "43442728.81", "6411527670.88", "1070313663.95", "0.00", "19979581939.53", "-14638367932.60", "35212966576.54", "20574598643.94", "0.00", "184040561348.76", "184040561348.76", "444858872444.20", "424284273800.26"], "0-10z_8": ["1339234.05", "-22552219.51", "0.00", "13951900749.43", "0.00", "0.00", "11495517973.44", "0.00", "0.00", "-22552219.51", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "80-90_8": ["18913808.24", "2681971085843.04", "3667323.33", "61817377745.90", "14704605.77", "481762169029.62", "231234982842.15", "1935917491181.30", "324580815214.21", "2404286171255.95", "90159.48", "211815178.52", "324792630392.72", "1710108148.36", "4637269.72", "1037516331.62", "322049643182.47", "325864598181.75", "647914241364.22", "0.00", "609733688873.01", "609733688873.01", "3436817865023.80", "2788903623659.57"]}, "diff_comb_xdec": {"Top 1%_8": ["1891354.36", "293.73", "0.02", "1876522.35", "99.22", "24361.20", "46075664829.42", "3.29", "59267510595.93", "87490713835.74", "87490713835.74", "1.58"], "ALL_8": ["189134250.72", "293.73", "0.00", "158467388.47", "83.79", "7408.45", "1401192584525.07", "100.00", "4491096531484.39", "3818412081864.89", "3818412081864.89", "20.86"], "30-40_8": ["18912968.19", "0.00", "0.00", "14657423.23", "77.50", "3747.68", "70879793885.07", "5.06", "394783002741.18", "282277559857.39", "282277559857.39", "41.47"], "70-80_8": ["18914581.22", "0.00", "0.00", "17402400.91", "92.01", "10403.50", "196777791818.37", "14.04", "535776022030.40", "523579373679.99", "523579373679.99", "18.62"], "0-10p_8": ["17472954.87", "0.00", "0.00", "13958663.71", "79.89", "1092.54", "19089928209.48", "1.36", "263012344898.84", "42895291154.07", "42895291154.07", "179.91"], "20-30_8": ["18913200.30", "0.00", "0.00", "13899907.91", "73.49", "3095.65", "58548574898.58", "4.18", "365719914215.53", "224530706939.08", "224530706939.08", "50.73"], "0-10n_8": ["100970.49", "0.00", "0.00", "21778.88", "21.57", "309.51", "31251610.47", "0.00", "2369917294.71", "1167805322.79", "1167805322.79", "-6.85"], "40-50_8": ["18914362.07", "0.00", "0.00", "15641107.94", "82.69", "4733.05", "89522714239.74", "6.39", "430772855471.58", "325260590266.05", "325260590266.05", "35.11"], "60-70_8": ["18911947.65", "0.00", "0.00", "17015674.33", "89.97", "7792.19", "147365553107.09", "10.52", "499630853134.12", "438750480598.97", "438750480598.97", "23.90"], "95-99_8": ["7565591.80", "0.00", "0.00", "7289874.30", "96.36", "22952.57", "173649798899.79", "12.39", "241870100173.70", "379999745143.36", "379999745143.36", "5.26"], "90-100_8": ["18913516.38", "293.73", "0.00", "18284878.61", "96.68", "20832.99", "394025152044.63", "28.12", "597946644624.83", "825684442283.96", "825684442283.96", "5.55"], "90-95_8": ["9456570.22", "0.00", "0.00", "9118481.96", "96.42", "18431.60", "174299688315.41", "12.44", "296809033855.19", "358193983304.85", "358193983304.85", "9.04"], "50-60_8": ["18913365.64", "0.00", "0.00", "16364634.76", "86.52", "6139.96", "116127305213.63", "8.29", "465352888320.99", "376581308929.82", "376581308929.82", "29.25"], "10-20_8": ["18913341.62", "0.00", "0.00", "12922973.40", "68.33", "2009.92", "38014362724.01", "2.71", "335979855896.88", "174624529887.03", "174624529887.03", "69.99"], "0-10z_8": ["1339234.05", "0.00", "0.00", "377361.32", "28.18", "414.55", "555185338.70", "0.04", "28205220897.06", "0.00", "0.00", "inf"], "80-90_8": ["18913808.24", "0.00", "0.00", "17920583.47", "94.75", "14288.77", "270254971435.31", "19.29", "571547011958.29", "603059992945.75", "603059992945.75", "13.37"]}, "diff_ptax_xbin": {"$20-30K_8": ["15000736.60", "0.00", "0.00", "9706385.12", "64.71", "976.12", "14642496019.85", "1.80", "268278528568.22", "150329138119.11", "150329138119.11", "65.96"], "<$0K_8": ["100970.49", "0.00", "0.00", "21778.88", "21.57", "310.42", "31343549.51", "0.00", "2369917294.71", "1167805322.79", "1167805322.79", "-6.85"], "$30-40K_8": ["16680284.66", "0.00", "0.00", "11716607.75", "70.24", "1485.57", "24779728159.81", "3.05", "321841293413.08", "198934537420.36", "198934537420.36", "51.24"], "ALL_8": ["189134250.72", "1560.36", "0.00", "143642768.67", "75.95", "4293.36", "812020594378.21", "100.00", "4491096531484.39", "3818412081864.89", "3818412081864.89", "20.86"], "$50-75K_8": ["30256082.33", "0.00", "0.00", "22996912.09", "76.01", "2795.46", "84579637722.80", "10.42", "692609033480.09", "528386625680.27", "528386625680.27", "34.82"], ">$1000K_8": ["600090.16", "1560.36", "0.26", "540534.10", "90.08", "13550.17", "8131322279.59", "1.00", "18723937615.33", "19425312050.85", "19425312050.85", "0.84"], "=$0K_8": ["1339234.05", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "28205220897.06", "0.00", "0.00", "inf"], "$0-10K_8": ["10975143.79", "0.00", "0.00", "7807241.13", "71.14", "210.11", "2305943324.50", "0.28", "157223784254.47", "16143326316.19", "16143326316.19", "294.08"], "$40-50K_8": ["15793120.99", "0.00", "0.00", "11604407.78", "73.48", "1990.80", "31440950867.50", "3.87", "323180836638.80", "220377109323.20", "220377109323.20", "42.68"], "$200-500K_8": ["20722589.35", "0.00", "0.00", "17611273.91", "84.99", "11622.63", "240850991339.57", "29.66", "652534925377.93", "846364107568.70", "846364107568.70", "7.83"], "$500-1000K_8": ["1746643.38", "0.00", "0.00", "1497936.18", "85.76", "13852.31", "24195047603.99", "2.98", "55215386593.77", "99029172406.04", "99029172406.04", "2.73"], "$75-100K_8": ["21304068.32", "0.00", "0.00", "16781445.64", "78.77", "4016.45", "85566763320.42", "10.54", "538736967712.46", "452751161658.04", "452751161658.04", "27.03"], "$100-200K_8": ["43892385.83", "0.00", "0.00", "35417656.46", "80.69", "6571.78", "288450896868.09", "35.52", "1252869468817.57", "1230352354339.37", "1230352354339.37", "17.48"], "$10-20K_8": ["10722900.77", "0.00", "0.00", "7940589.63", "74.05", "657.05", "7045473322.58", "0.87", "179307230820.88", "55151431659.97", "55151431659.97", "101.16"]}, "dist2_xbin": {"$20-30K_8": ["15000736.60", "474796054254.92", "14493624.20", "293655675392.29", "499415.59", "10320220072.89", "103711761040.81", "121393120512.36", "13134252180.87", "468261482311.79", "1206303.74", "1940865337.36", "15075117518.23", "2572735427.27", "0.00", "6420958010.81", "6081424080.15", "44275184958.42", "50356609038.57", "268278528568.22", "150329138119.11", "150329138119.11", "644966117442.33", "594609508403.76"], "<$0K_8": ["100970.49", "-32117254830.30", "11990.00", "2424646411.16", "0.00", "0.00", "928872093.10", "0.00", "0.00", "-32117254830.30", "0.00", "0.00", "0.00", "0.00", "0.00", "305616.86", "-305616.86", "98179723.32", "97874106.46", "2369917294.71", "1167805322.79", "1167805322.79", "-30853292707.46", "-30951166813.92"], "$30-40K_8": ["16680284.66", "670793706340.32", "15808855.29", "337749145094.91", "860656.67", "20549477944.52", "128012785912.38", "234510182879.29", "27690445391.30", "657672082812.88", "660352.98", "1569787703.69", "29260233094.99", "4377600190.11", "0.00", "3870511334.05", "21012121570.83", "75236997896.97", "96249119467.80", "321841293413.08", "198934537420.36", "198934537420.36", "908575603830.74", "812326484362.95"], "ALL_8": ["189134250.72", "19756266854678.03", "150572227.29", "3605775580854.97", "38378698.86", "1494808498847.48", "1745445508752.32", "13323090919445.06", "2572486703349.71", "18891255097977.57", "19325162.67", "50069822663.78", "2622556526013.49", "39434198492.96", "13889787895.03", "25956516398.27", "2571055599017.29", "2509443065590.18", "5080498664607.46", "4491096531484.39", "3818412081864.89", "3818412081864.89", "24795931982156.11", "19715433317548.65"], "$50-75K_8": ["30256082.33", "1936619053605.48", "27707967.78", "673411273469.65", "2530894.58", "68391335279.76", "281638240958.02", "972344197441.34", "130334946141.22", "1893131585718.40", "864914.21", "2023780973.68", "132358727114.90", "11336595487.37", "0.00", "2019238751.84", "119002892875.69", "256097687091.53", "375100579967.22", "692609033480.09", "528386625680.27", "528386625680.27", "2585945354331.66", "2210844774364.44"], ">$1000K_8": ["600090.16", "1207602861214.05", "73147.65", "2191355191.85", "526819.85", "57948614133.98", "49078310.80", "1147514612547.50", "356924175170.94", "1182731883846.40", "129780.25", "2508604762.63", "359432779933.57", "13200516.64", "8539018773.50", "3110.60", "367958595079.83", "47827758582.96", "415786353662.79", "18723937615.33", "19425312050.85", "19425312050.85", "1266583076021.92", "850796722359.12"], "=$0K_8": ["1339234.05", "28182668677.55", "1318550.53", "30685228307.74", "20286.90", "22103548.53", "11495517973.44", "472464654.64", "49867124.30", "28163799694.80", "338603.48", "532021137.52", "581888261.82", "26702923.12", "0.00", "0.00", "555185338.70", "0.00", "555185338.70", "28205220897.06", "0.00", "0.00", "28205220897.06", "27650035558.36"], "$0-10K_8": ["10975143.79", "192524848411.74", "10473451.67", "133353416089.50", "496807.87", "4333003488.88", "41910972210.16", "54704193519.70", "5686355731.56", "189627079077.90", "2517293.72", "3444155496.97", "9130511228.52", "2318344016.93", "0.00", "2855866236.35", "3956300975.24", "6950104803.46", "10906405778.70", "157223784254.47", "16143326316.19", "16143326316.19", "210090304062.23", "199183898283.53"], "$40-50K_8": ["15793120.99", "769204090445.94", "14893891.61", "332116051768.08", "889147.41", "21509151387.80", "129603896618.06", "325951634162.43", "40398859294.74", "755037046308.75", "492701.17", "1209350951.88", "41608210246.62", "4925261184.99", "0.00", "1847977373.11", "34834971688.52", "95439285205.95", "130274256894.48", "323180836638.80", "220377109323.20", "220377109323.20", "1039860953428.71", "909586696534.23"], "$200-500K_8": ["20722589.35", "5368273460572.70", "6834189.48", "216867526208.55", "13878633.96", "625119678220.34", "251346829841.22", "4287479581429.07", "894345328727.83", "5020824969095.30", "6807172.54", "20762933179.67", "915108261907.50", "658023119.88", "3052476964.02", "103721207.53", "917398994544.11", "745765672376.85", "1663164666920.96", "652534925377.93", "846364107568.70", "846364107568.70", "6621100620841.49", "4957935953920.53"], "$500-1000K_8": ["1746643.38", "1056615720975.05", "251691.82", "7915622623.54", "1494497.06", "91674888047.64", "2453738116.20", "955025223610.99", "248712716903.69", "1011420232328.38", "1062261.73", "8788242962.22", "257500959865.91", "58433561.03", "2294634546.17", "19361810.60", "259717799040.45", "86390402918.70", "346108201959.15", "55215386593.77", "99029172406.04", "99029172406.04", "1215414764451.45", "869306562492.30"], "$75-100K_8": ["21304068.32", "1859169757097.31", "18222799.27", "486652859107.85", "3071150.07", "93285978497.91", "219648203405.42", "1090946381839.46", "162783341945.63", "1800503364926.38", "861542.18", "1443207615.84", "164226549561.46", "6965035263.00", "0.00", "704793249.77", "156556721048.69", "258640834371.80", "415197555420.50", "538736967712.46", "452751161658.04", "452751161658.04", "2419723961607.83", "2004526406187.33"], "$100-200K_8": ["43892385.83", "5941316036777.63", "30156344.28", "892827470834.03", "13718874.55", "495961848544.25", "507662322488.54", "4086762873845.52", "687831681745.92", "5636959001463.68", "1469182.35", "2308894292.63", "690140576038.55", "4618123770.49", "3657611.35", "575979715.49", "684950130163.92", "871471745256.75", "1556421875420.67", "1252869468817.57", "1230352354339.37", "1230352354339.37", "7542545996411.16", "5986124120990.49"], "$10-20K_8": ["10722900.77", "283285851135.63", "10325723.71", "195925310355.84", "391514.35", "5692199680.97", "66983289784.17", "45986453002.77", "4594732991.72", "279039825223.21", "2915054.32", "3537978249.69", "8132711241.41", "1564143032.13", "0.00", "7537799981.26", "-969231771.98", "21249212403.45", "20279980631.47", "179307230820.88", "55151431659.97", "55151431659.97", "343773301536.99", "323493320905.52"]}, "diff_itax_xdec": {"Top 1%_8": ["1891354.36", "7509.26", "0.40", "1868672.76", "98.80", "10697.54", "20232844128.37", "3.43", "59267510595.93", "87490713835.74", "87490713835.74", "1.58"], "ALL_8": ["189134250.72", "711870.69", "0.38", "153144993.45", "80.97", "3115.10", "589171990146.87", "100.00", "4491096531484.39", "3818412081864.89", "3818412081864.89", "20.86"], "30-40_8": ["18912968.19", "25233.43", "0.13", "14336553.05", "75.80", "1682.04", "31812293369.44", "5.40", "394783002741.18", "282277559857.39", "282277559857.39", "41.47"], "70-80_8": ["18914581.22", "29854.54", "0.16", "17275763.63", "91.34", "4234.92", "80101654608.59", "13.60", "535776022030.40", "523579373679.99", "523579373679.99", "18.62"], "0-10p_8": ["17472954.87", "403524.53", "2.31", "10869533.78", "62.21", "735.22", "12846447260.94", "2.18", "263012344898.84", "42895291154.07", "42895291154.07", "179.91"], "20-30_8": ["18913200.30", "25417.20", "0.13", "13462374.80", "71.18", "1573.01", "29750742354.85", "5.05", "365719914215.53", "224530706939.08", "224530706939.08", "50.73"], "0-10n_8": ["100970.49", "890.87", "0.88", "0.00", "0.00", "-0.91", "-91939.05", "-0.00", "2369917294.71", "1167805322.79", "1167805322.79", "-6.85"], "40-50_8": ["18914362.07", "18289.91", "0.10", "15440970.85", "81.64", "1960.82", "37087722326.37", "6.29", "430772855471.58", "325260590266.05", "325260590266.05", "35.11"], "60-70_8": ["18911947.65", "20588.66", "0.11", "16871472.45", "89.21", "3089.78", "58433827540.48", "9.92", "499630853134.12", "438750480598.97", "438750480598.97", "23.90"], "95-99_8": ["7565591.80", "3862.01", "0.05", "7270614.42", "96.10", "9540.19", "72177163300.30", "12.25", "241870100173.70", "379999745143.36", "379999745143.36", "5.26"], "90-100_8": ["18913516.38", "28122.59", "0.15", "18210864.41", "96.28", "8520.60", "161154601894.88", "27.35", "597946644624.83", "825684442283.96", "825684442283.96", "5.55"], "90-95_8": ["9456570.22", "16751.32", "0.18", "9071577.23", "95.93", "7269.51", "68744594466.20", "11.67", "296809033855.19", "358193983304.85", "358193983304.85", "9.04"], "50-60_8": ["18913365.64", "18514.44", "0.10", "16188133.06", "85.59", "2514.06", "47549342375.35", "8.07", "465352888320.99", "376581308929.82", "376581308929.82", "29.25"], "10-20_8": ["18913341.62", "88418.37", "0.47", "12307348.14", "65.07", "1089.38", "20603888090.19", "3.50", "335979855896.88", "174624529887.03", "174624529887.03", "69.99"], "0-10z_8": ["1339234.05", "0.00", "0.00", "377361.32", "28.18", "414.55", "555185338.70", "0.09", "28205220897.06", "0.00", "0.00", "inf"], "80-90_8": ["18913808.24", "53016.15", "0.28", "17804617.96", "94.14", "5777.60", "109276376926.13", "18.55", "571547011958.29", "603059992945.75", "603059992945.75", "13.37"]}, "diff_itax_xbin": {"$20-30K_8": ["15000736.60", "46187.04", "0.31", "9657430.40", "64.38", "1140.90", "17114405920.48", "2.90", "268278528568.22", "150329138119.11", "150329138119.11", "65.96"], "<$0K_8": ["100970.49", "890.87", "0.88", "0.00", "0.00", "-0.91", "-91939.05", "-0.00", "2369917294.71", "1167805322.79", "1167805322.79", "-6.85"], "$30-40K_8": ["16680284.66", "22104.55", "0.13", "11782174.27", "70.64", "1564.50", "26096309704.22", "4.43", "321841293413.08", "198934537420.36", "198934537420.36", "51.24"], "ALL_8": ["189134250.72", "711870.69", "0.38", "153144993.45", "80.97", "3115.10", "589171990146.87", "100.00", "4491096531484.39", "3818412081864.89", "3818412081864.89", "20.86"], "$50-75K_8": ["30256082.33", "28499.62", "0.09", "24623515.14", "81.38", "2012.70", "60896337331.42", "10.34", "692609033480.09", "528386625680.27", "528386625680.27", "34.82"], ">$1000K_8": ["600090.16", "4661.60", "0.78", "589046.90", "98.16", "11128.17", "6677902959.27", "1.13", "18723937615.33", "19425312050.85", "19425312050.85", "0.84"], "=$0K_8": ["1339234.05", "0.00", "0.00", "377361.32", "28.18", "414.55", "555185338.70", "0.09", "28205220897.06", "0.00", "0.00", "inf"], "$0-10K_8": ["10975143.79", "331619.23", "3.02", "6203760.45", "56.53", "656.82", "7208709033.32", "1.22", "157223784254.47", "16143326316.19", "16143326316.19", "294.08"], "$40-50K_8": ["15793120.99", "22372.24", "0.14", "11954143.08", "75.69", "1657.73", "26180699757.90", "4.44", "323180836638.80", "220377109323.20", "220377109323.20", "42.68"], "$200-500K_8": ["20722589.35", "26243.96", "0.13", "19862921.87", "95.85", "7842.33", "162513281952.21", "27.58", "652534925377.93", "846364107568.70", "846364107568.70", "7.83"], "$500-1000K_8": ["1746643.38", "3581.94", "0.21", "1722192.00", "98.60", "10427.95", "18213915875.78", "3.09", "55215386593.77", "99029172406.04", "99029172406.04", "2.73"], "$75-100K_8": ["21304068.32", "23721.03", "0.11", "18530535.87", "86.98", "2714.87", "57837686078.33", "9.82", "538736967712.46", "452751161658.04", "452751161658.04", "27.03"], "$100-200K_8": ["43892385.83", "87265.04", "0.20", "40333846.29", "91.89", "4472.94", "196327995615.12", "33.32", "1252869468817.57", "1230352354339.37", "1230352354339.37", "17.48"], "$10-20K_8": ["10722900.77", "114723.57", "1.07", "7508065.86", "70.02", "890.58", "9549652519.17", "1.62", "179307230820.88", "55151431659.97", "55151431659.97", "101.16"]}, "dist1_xbin": {"$20-30K_8": ["15000736.60", "206789581423.48", "8918392.25", "116520661650.46", "2507182.94", "31406549248.28", "103711761040.81", "58959568579.98", "5854102173.16", "187216590147.28", "43855.78", "39288143.69", "5893390316.85", "971068474.84", "0.00", "15955303682.34", "-11032981840.33", "29632688938.57", "18599707098.23", "0.00", "157572886996.13", "157572886996.13", "376882145477.99", "358282438379.75"], "<$0K_8": ["100970.49", "-34483875342.34", "0.00", "1103712605.27", "0.00", "0.00", "928872093.10", "0.00", "0.00", "-34483875342.34", "0.00", "0.00", "0.00", "0.00", "0.00", "213677.82", "-213677.82", "66836173.81", "66622496.00", "0.00", "1241061607.50", "1241061607.50", "-33162328709.55", "-33228951205.54"], "$30-40K_8": ["16680284.66", "349958612308.55", "9946134.01", "127176817787.42", "3851946.89", "56764769882.31", "128012785912.38", "134648632310.60", "15071017165.90", "314730779413.88", "36172.93", "50486658.71", "15121503824.61", "2024197699.37", "0.00", "18181494258.63", "-5084188133.39", "50457269737.16", "45373081603.77", "0.00", "206061006368.24", "206061006368.24", "582474264889.84", "537101183286.07"], "ALL_8": ["189134250.72", "15281617034981.97", "85484866.68", "1117672787508.21", "83548724.69", "2360029659359.90", "1753355431518.78", "10843744053408.74", "2071089513341.36", "13926655413934.39", "5335536.28", "24634897986.55", "2095724411327.92", "33518945919.07", "13098003309.42", "93419859847.84", "1981883608870.42", "1697422471211.97", "3679306080082.39", "0.00", "3895095395463.15", "3895095395463.15", "19991578921218.07", "16312272841135.69"], "$50-75K_8": ["30256082.33", "1246295248823.71", "16061052.32", "216807536587.79", "11311376.74", "208651274351.99", "281638240958.02", "664872149928.98", "84006716435.68", "1116730918029.27", "45799.39", "156515998.46", "84163232434.14", "7620484591.33", "0.00", "18436192298.55", "58106555544.26", "171518049368.74", "229624604913.00", "0.00", "544660189067.12", "544660189067.12", "1869506380671.50", "1639881775758.50"], ">$1000K_8": ["600090.16", "1189759590721.55", "37881.29", "570343142.92", "558367.24", "59173476269.41", "49662270.58", "1130105955543.72", "350297720408.99", "1163923331217.58", "132959.38", "2481000837.51", "352778721246.50", "13201185.90", "8515182878.27", "10818.31", "361280692120.57", "39696436303.37", "400977128423.94", "0.00", "19483208228.84", "19483208228.84", "1244679719932.94", "843702591509.00"], "=$0K_8": ["1339234.05", "-22552219.51", "0.00", "13951900749.43", "0.00", "0.00", "11495517973.44", "0.00", "0.00", "-22552219.51", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$0-10K_8": ["10975143.79", "35304457070.37", "9133524.63", "67742879577.81", "47508.00", "455594055.00", "41910972210.16", "2310091582.31", "165066208.16", "35070423411.24", "0.00", "0.00", "165066208.16", "70189400.97", "0.00", "3347284865.28", "-3252408058.09", "4644161478.96", "1391753420.88", "0.00", "16362422883.91", "16362422883.91", "51936037626.33", "50544284205.45"], "$40-50K_8": ["15793120.99", "447277365791.32", "9217431.82", "118098865569.48", "4459865.83", "68868125791.86", "129603896618.06", "209553367125.19", "25076221574.95", "403599290056.57", "24206.05", "57515732.12", "25133737307.07", "2627761206.72", "0.00", "13851704169.72", "8654271930.63", "63998334338.46", "72652606269.08", "0.00", "228356425156.57", "228356425156.57", "710172139623.50", "637519533354.42"], "$200-500K_8": ["20722589.35", "4719441166473.39", "2634038.78", "45747888396.58", "17649887.08", "720058586015.50", "258390121042.61", "3719330562053.49", "741238916068.93", "4331756858599.72", "3819836.25", "12770035227.65", "754008951296.58", "624166367.54", "2355561930.31", "854634267.44", "754885712591.90", "504914681037.28", "1259800393629.18", "0.00", "852204626284.77", "852204626284.77", "5857651554678.98", "4597851161049.80"], "$500-1000K_8": ["1746643.38", "1002886145911.45", "112773.14", "1819056557.86", "1621061.51", "96228880052.61", "3319785721.49", "902405123816.58", "230776029166.52", "956670362004.37", "1067449.21", "8647457585.11", "239423486751.63", "43307502.11", "2227258500.83", "103554585.68", "241503883164.67", "62195355314.71", "303699238479.38", "0.00", "99349111622.82", "99349111622.82", "1149884400153.99", "846185161674.61"], "$75-100K_8": ["21304068.32", "1321920428827.67", "9165208.06", "131016186666.44", "10811224.83", "242330875850.36", "219648203405.42", "795917668911.48", "112459038941.37", "1172790164833.49", "43188.94", "136559237.82", "112595598179.18", "7537929344.95", "0.00", "6338633863.87", "98719034970.37", "173074071051.38", "271793106021.75", "0.00", "462880347369.14", "462880347369.14", "1849762398682.93", "1577969292661.19"], "$100-200K_8": ["43892385.83", "4692476992367.38", "12318199.74", "192867372044.26", "29856269.18", "865870184186.20", "507662322488.54", "3214461892503.88", "505152824712.32", "4180988268236.09", "105618.04", "286567718.07", "505439392430.40", "11777808353.25", "0.00", "5039449528.35", "488622134548.80", "583020848388.66", "1071642982937.46", "0.00", "1248250879476.83", "1248250879476.83", "6167291822883.30", "5095648839945.85"], "$10-20K_8": ["10722900.77", "104013872824.94", "7940230.64", "84249566172.47", "874034.45", "10221343656.37", "66983289784.17", "11179041052.51", "991860485.39", "97684855546.76", "16450.31", "9470847.42", "1001331332.80", "208831792.09", "0.00", "11311383831.86", "-10518884291.15", "14203739080.87", "3684854789.72", "0.00", "58673230401.28", "58673230401.28", "164500385306.32", "160815530516.60"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_8\nind_tax,1012476241.9351461\npayroll_tax,-246144911242.53018\ncombined_tax,-245132435000.59506\n", "aggr_1": ",0_8\nind_tax,1714002519717.1863\npayroll_tax,1626128326839.6099\ncombined_tax,3340130846556.796\n", "aggr_2": ",0_8\nind_tax,1715014995959.1213\npayroll_tax,1379983415597.0796\ncombined_tax,3094998411556.201\n", "dist1_xbin": ",s006_8,c00100_8,num_returns_StandardDed_8,standard_8,num_returns_ItemDed_8,c04470_8,c04600_8,c04800_8,taxbc_8,c62100_8,num_returns_AMT_8,c09600_8,c05800_8,c07100_8,othertaxes_8,refund_8,iitax_8,payrolltax_8,combined_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,expanded_income_8,aftertax_income_8\n<$0K,65425.52871417771,-9293521416.692976,65425.52871417771,1623484908.835704,0.0,0.0,0.0,0.0,0.0,-9293521416.692976,0.0,0.0,0.0,0.0,0.0,1494329.0406721272,-1494329.0406721272,23229392.877920527,21735063.8372484,0.0,1073530169.0301622,1073530169.0301622,-8121027189.723808,-8142762253.561057\n=$0K,1168802.9838188027,0.0,1168802.9838188027,20887524111.409344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10631770.66069179,32362758868.1185,10575108.699538356,103415864563.1991,56661.961153434706,320316628.7985743,0.0,1974487803.2374027,142606010.62987405,32059242730.52947,0.0,0.0,142606010.62987405,38426817.23592134,0.0,3300577324.9257216,-3196398131.531769,4439181950.966238,1242783819.4344692,0.0,15280455075.066286,15280455075.066286,48241900674.67799,46999116855.243515\n$10-20K,10442509.494162135,104943018142.55551,10277586.424488008,154123645552.1544,164923.06967412683,2585477899.4112988,0.0,6773247940.203548,575994851.6956356,102667784503.44785,15540.45298164449,1126900.7078617623,577121752.4034972,184915686.7374126,0.0,13035673389.525764,-12643467323.85968,14360911755.46539,1717444431.605709,0.0,55132302782.7051,55132302782.7051,161120842581.3936,159403398149.7879\n$20-30K,14279505.99290608,189169273753.34647,14022253.649037024,225577813672.04437,257252.3438690558,5223520889.0254345,0.0,54574947371.6788,5091943737.529886,184765832288.1313,20118.919948050258,11893706.088719482,5103837443.618605,1024040046.8480868,0.0,16091930518.162071,-12012133121.391554,26820255551.67306,14808122430.28151,0.0,156387755659.64307,156387755659.64307,356603184275.8187,341795061845.5372\n$30-40K,15921424.839193951,328277307717.34937,15397940.877524544,260916250510.9683,523483.9616694086,9702869049.173037,0.0,136958846699.06555,14176854424.32161,320523395936.3817,76502.9771885013,248681482.20721558,14425535906.528826,3523962643.2167616,0.0,18781484536.82555,-7879911273.513485,46697111722.96561,38817200449.45212,0.0,202169085287.3326,202169085287.3326,554623253875.4421,515806053425.9901\n$40-50K,16066584.970599044,457850782063.0647,15125679.075650437,269957834299.35864,940905.8949486042,19014394551.071228,0.0,229548396335.71387,24126551518.782585,443163317522.4689,137790.05346516403,204135549.63327104,24330687068.415855,5542196806.56673,0.0,16349165219.768463,2439325042.0806646,64960061204.000305,67399386246.08098,0.0,229084421226.2077,229084421226.2077,721550492098.8627,654151105852.7816\n$50-75K,32559576.11097845,1332560780301.5718,28887543.7058196,581035766148.3184,3672032.405158852,82213298040.54451,0.0,785369999901.2229,87580485058.13867,1270251003983.996,75427.42287765622,204768514.6690672,87785253572.80774,18074342514.991383,0.0,26591360639.650887,43119550418.16547,181694871649.49878,224814422067.66425,0.0,594046541374.1606,594046541374.1606,2007875704510.8945,1783061282443.2302\n$75-100K,20762926.205048792,1285382497371.1445,16930173.6960617,379753366812.2742,3832752.5089870933,88903239418.35184,0.0,863147077418.4578,107098667577.44673,1223122592762.3,78127.72256548076,176405558.89728498,107275073136.34402,14517121441.96758,0.0,5714770701.307251,87043180993.06918,168250917584.18875,255294098577.25793,0.0,451716854498.85156,451716854498.85156,1799645798175.0767,1544351699597.8186\n$100-200K,43646829.96169849,4761337564365.801,26605633.65239982,662999504317.6555,17041196.30929867,536606110757.87366,0.0,3607604204638.3374,505945469795.51,4392835826220.4053,214032.99199223064,778335592.3757434,506723805387.8857,42561726120.566124,0.0,4256735852.6019425,459905343414.7177,578172947742.8748,1038078291157.5924,0.0,1185784892651.8867,1185784892651.8867,6158502949346.688,5120424658189.097\n$200-500K,19192676.462053463,4263698645139.5566,8159162.280506641,218785368422.6595,11033514.181546826,411292785870.6086,0.0,3638066545680.4775,650581599124.7008,3978070737254.453,91908.11743156207,292681650.2390695,650874280774.94,21352976529.51943,2324665942.9785504,1268521159.7924995,630577449028.6066,455230434683.55005,1085807883712.1567,0.0,882643041794.2878,882643041794.2878,5420696984904.694,4334889101192.5376\n$500-1000K,1338575.1459365028,806448874940.8951,357370.8677393268,10153366086.707523,981204.278197176,44981776520.29317,0.0,747142961173.5444,175124851312.07333,772793545309.0066,25004.735408696284,134363076.46589592,175259214388.53925,64934026.51608864,2190860703.029069,155010272.03449166,177230130793.01773,49874170812.04535,227104301605.06308,0.0,52935735466.80223,52935735466.80223,890848441107.4514,663744139502.3884\n>$1000K,538341.2341983016,1146774196776.2983,77660.91015926654,2128523700.0742202,460680.324039035,28231280628.033836,0.0,1112237984167.723,340360917785.68164,1123870642915.8174,36666.11293827721,544286243.2086447,340905204028.8903,9527678.014550056,8525267855.990423,0.0,349420944206.8662,35604232789.50373,385025176996.3699,0.0,10832620942.392931,10832620942.392931,1183277535307.4893,798252358311.1196\nALL,186614949.59,14699512178023.008,147650342.3514577,2891358313105.659,38964607.23854229,1229075070253.1853,0.0,11183398699129.662,1910805941196.5107,13834830400010.246,771119.5067972632,2596678274.4927735,1913402619471.0037,106894170312.18007,13040794501.998043,105546723943.63531,1714002519717.1863,1626128326839.61,3340130846556.796,0.0,3837087236928.367,3837087236928.367,19294866059668.766,15954735213111.97\n", "dist2_xbin": ",s006_8,c00100_8,num_returns_StandardDed_8,standard_8,num_returns_ItemDed_8,c04470_8,c04600_8,c04800_8,taxbc_8,c62100_8,num_returns_AMT_8,c09600_8,c05800_8,c07100_8,othertaxes_8,refund_8,iitax_8,payrolltax_8,combined_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,expanded_income_8,aftertax_income_8\n<$0K,65425.52871417771,-9293521416.692976,65425.52871417771,1623484908.835704,0.0,0.0,0.0,0.0,0.0,-9293521416.692976,0.0,0.0,0.0,0.0,0.0,1494329.0406721272,-1494329.0406721272,19585566.544129074,18091237.503456946,0.0,1073530169.0301622,1073530169.0301622,-8122849102.890704,-8140940340.394161\n=$0K,1168802.9838188027,0.0,1168802.9838188027,20887524111.409344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10631770.66069179,32362770295.716385,10575108.699538356,103415864563.1991,56661.961153434706,320316628.7985743,0.0,1974487803.2374027,142606010.62987405,32059254158.127354,0.0,0.0,142606010.62987405,38426817.23592134,0.0,3295728871.355194,-3191549677.9612417,3742841400.2831936,551291722.3219521,0.0,15280455075.066286,15280455075.066286,47893741826.93436,47342450104.6124\n$10-20K,10442509.494162135,104959449033.49556,10277586.424488008,154123645552.1544,164923.06967412683,2585477899.4112988,0.0,6776202019.681274,576290259.6434081,102684215394.38791,15540.45298164449,1126900.7078617623,577417160.3512698,184915686.7374126,0.0,13033308727.941816,-12640807254.327961,12110687218.222734,-530120036.10522795,0.0,55132302782.7051,55132302782.7051,160012161203.7123,160542281239.81754\n$20-30K,14279505.99290608,189270935620.47687,14022253.649037024,225577813672.04437,257252.3438690558,5223153762.048246,0.0,54629809669.61992,5097394414.322012,184867953063.9831,20118.919948050258,11893706.088719482,5109288120.410732,1024900944.0310354,0.0,16092908987.674524,-12008521811.294827,22628423674.03955,10619901862.74472,0.0,156387755659.64307,156387755659.64307,354608930204.1323,343989028341.3876\n$30-40K,15921424.839193951,328577884885.4398,15397940.877524544,260916589035.9648,523483.9616694086,9701557461.624386,0.0,137156138234.75368,14197395577.277437,320825612588.90796,76502.9771885013,248681482.20721558,14446077059.484652,3528826632.2411213,0.0,18766874733.609116,-7849624306.365585,39417213652.44693,31567589346.08134,0.0,202169085287.3326,202169085287.3326,551283882008.2733,519716292662.1919\n$40-50K,16066584.970599044,458318594146.0645,15125679.075650437,269957834299.35864,940905.8949486042,19011514864.773438,0.0,229939058570.76712,24168045460.399246,443634729213.34094,137790.05346516403,204135549.63327104,24372181010.032516,5553296594.573597,0.0,16319026399.561056,2499858015.897864,54839652815.26113,57339510831.159,0.0,229084421226.2077,229084421226.2077,716952450769.9156,659612939938.7566\n$50-75K,32559576.11097845,1333241630165.6792,28887543.7058196,581035766148.3184,3672032.405158852,82213069892.41245,0.0,785985704984.4133,87648071788.03719,1270932025329.1382,75427.42287765622,204768514.6690672,87852840302.70625,18091911532.347588,0.0,26560948376.953125,43199980393.40555,153291937409.06424,196491917802.46982,0.0,594046541374.1606,594046541374.1606,1994328289957.353,1797836372154.8833\n$75-100K,20762926.205048792,1285844075329.3682,16930173.6960617,379753366812.2742,3832752.5089870933,88903028340.77759,0.0,863573674898.8799,107154715372.87805,1223584434567.4917,78127.72256548076,176386298.54470396,107331101671.42273,14527921050.203676,0.0,5693039157.146762,87110141464.0723,141921794824.1953,229031936288.26764,0.0,451716854498.85156,451716854498.85156,1786901933959.6936,1557869997671.4258\n$100-200K,43646829.96169849,4762891054923.92,26605429.19452098,662993825604.3444,17041400.767177507,536612800063.24475,0.0,3609090106415.9907,506212772051.7716,4394385208820.704,214032.99199223064,781155105.1460025,506993927156.91766,42566773945.29414,0.0,4247816358.459619,460179336853.1639,487740930605.0104,947920267458.1742,0.0,1185784892651.8867,1185784892651.8867,6114797934874.451,5166877667416.277\n$200-500K,19192676.462053463,4264680445188.494,8159162.280506641,218785368422.6595,11033514.181546826,411287878648.9897,0.0,3639124419237.0273,650840355001.3112,3979057835259.23,91908.11743156207,291720791.717146,651132075793.0283,21351121945.587307,2326393523.7408524,1264750545.8701758,630842596825.3116,386691507483.83936,1017534104309.151,0.0,882643041794.2878,882643041794.2878,5387404941857.113,4369870837547.963\n$500-1000K,1338575.1459365028,806819189868.033,357370.8677393268,10153366086.707523,981204.278197176,44981685773.5905,0.0,747539428668.2344,175256762590.38672,773163973669.5227,26588.45687471149,132801989.91995177,175389564580.30667,64606943.327365845,2190925789.7534914,155010272.03449166,177360873154.6983,43926923727.15855,221287796881.85684,0.0,52935735466.80223,52935735466.80223,888239057708.3777,666951260826.521\n>$1000K,538341.2341983016,1147026905814.3567,77660.91015926654,2128523700.0742202,460680.324039035,28231280628.033836,0.0,1112490693205.781,340454484804.94086,1124123351953.8755,36666.11293827721,543915684.2684504,340998400489.2093,9527678.014550056,8525333820.367407,0.0,349514206631.56213,33651917221.014153,383166123852.57635,0.0,10832620942.392931,10832620942.392931,1182534945093.791,799368821241.2147\nALL,186614949.59,14704699413854.352,147650137.89357886,2891352972917.3447,38964811.69642112,1229071763963.7048,0.0,11188279723708.387,1911748893331.5977,13840025072602.018,772703.2282632784,2596586022.9023895,1914345479354.4998,106942229769.59372,13042653133.861752,105430906759.64655,1715014995959.121,1379983415597.0796,3094998411556.201,0.0,3837087236928.367,3837087236928.367,19176835420360.86,16081837008804.656\n", "diff_itax_xbin": ",count_8,tax_cut_8,perc_cut_8,tax_inc_8,perc_inc_8,mean_8,tot_change_8,share_of_change_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,pc_aftertaxinc_8\n<$0K,65425.52871417771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1073530169.0301622,1073530169.0301622,-0.022374632958233054\n=$0K,1168802.9838188027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,10631770.66069179,22847.340865164813,0.21489685579502688,292135.2400323546,2.7477571644058196,0.45603443916008873,4848453.570527267,0.47887084849126105,0.0,15280455075.066286,15280455075.066286,0.7305100017652277\n$10-20K,10442509.494162135,36742.20567635607,0.35185226019566207,118989.52291382792,1.1394724896381354,0.2547347008115942,2660069.5317176236,0.26272908158649055,0.0,55132302782.7051,55132302782.7051,0.7144660046453088\n$20-30K,14279505.99290608,66434.58458870169,0.46524427821036485,273967.9333970312,1.9186093239719624,0.2529016128793582,3611310.0967264087,0.35668097157757606,0.0,156387755659.64307,156387755659.64307,0.6418953170370445\n$30-40K,15921424.839193951,23739.61092863734,0.14910481422615687,754857.8269938277,4.741144932805169,1.9022774314358224,30286967.147900373,2.9913755892200378,0.0,202169085287.3326,202169085287.3326,0.7580832388898839\n$40-50K,16066584.970599044,61517.00868085754,0.38288789306147036,1302529.0233945723,8.107068339526588,3.7676316359681783,60532973.81719982,5.978705604143672,0.0,229084421226.2077,229084421226.2077,0.8349499125060111\n$50-75K,32559576.11097845,6288.899383221853,0.0193150530024909,1706519.265050883,5.241220767844942,2.4702402440968467,80429975.24007326,7.943887659659789,0.0,594046541374.1606,594046541374.1606,0.8286361134715259\n$75-100K,20762926.205048792,3128.404049016037,0.015067259875225692,1021625.4023406493,4.92043073433564,3.2250016371407955,66960471.00311588,6.613535037141642,0.0,451716854498.85156,451716854498.85156,0.8753380513731202\n$100-200K,43646829.96169849,9596.286785719032,0.0219862170841275,3513174.588385594,8.049094496595787,6.277510616158139,273993438.4462114,27.061715336897947,0.0,1185784892651.8867,1185784892651.8867,0.9072100915084924\n$200-500K,19192676.462053463,138497.71592929744,0.7216175201156874,1421100.0362489666,7.404386975723136,13.815050612108548,265147796.70509303,26.188051207830416,0.0,882643041794.2878,882643041794.2878,0.8069811139067351\n$500-1000K,1338575.1459365028,18888.864295105923,1.4111172131386593,248860.63821092428,18.591458161044425,97.67278443610367,130742361.68058205,12.91312884840578,0.0,52935735466.80223,52935735466.80223,0.4831863866303854\n>$1000K,538341.2341983016,27932.320796782464,5.188590251381972,158081.34000686248,29.364523830740442,173.2403516050288,93262424.6959989,9.21131981504538,0.0,10832620942.392931,10832620942.392931,0.13986340515890205\nALL,186614949.59,415613.24197886017,0.222711654608582,10811840.816975495,5.793662748203996,5.425483028876273,1012476241.9351461,100.0,0.0,3837087236928.367,3837087236928.367,0.7966399566959215\n", "diff_ptax_xbin": ",count_8,tax_cut_8,perc_cut_8,tax_inc_8,perc_inc_8,mean_8,tot_change_8,share_of_change_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,pc_aftertaxinc_8\n<$0K,65425.52871417771,4455.726071504651,6.810378393685179,0.0,0.0,-55.69425888341104,-3643826.3337914557,0.0014803581822583933,0.0,1073530169.0301622,1073530169.0301622,-0.022374632958233054\n=$0K,1168802.9838188027,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10631770.66069179,7651214.140086993,71.96556795920523,0.0,0.0,-65.49619747325652,-696340550.6830444,0.2828986173908466,0.0,15280455075.066286,15280455075.066286,0.7305100017652277\n$10-20K,10442509.494162135,8043803.70455114,77.02941241325195,0.0,0.0,-215.48695153216175,-2250224537.242655,0.9141869014815729,0.0,55132302782.7051,55132302782.7051,0.7144660046453088\n$20-30K,14279505.99290608,9078433.355829466,63.576662668439255,0.0,0.0,-293.5558050618819,-4191831877.6335125,1.7029935156787535,0.0,156387755659.64307,156387755659.64307,0.6418953170370445\n$30-40K,15921424.839193951,10806665.518272154,67.87499000509844,0.0,0.0,-457.23910667829637,-7279898070.518681,2.9575659451052756,0.0,202169085287.3326,202169085287.3326,0.7580832388898839\n$40-50K,16066584.970599044,11886023.804345202,73.97977744552414,0.0,0.0,-629.9041400060413,-10120408388.73918,4.1115651498345995,0.0,229084421226.2077,229084421226.2077,0.8349499125060111\n$50-75K,32559576.11097845,24708360.810638964,75.88661697075284,0.0,0.0,-872.3373468875599,-28402934240.434517,11.539110882714406,0.0,594046541374.1606,594046541374.1606,0.8286361134715259\n$75-100K,20762926.205048792,16390002.266093608,78.93878783862436,0.0,0.0,-1268.083433903991,-26329122759.99343,10.696594387056395,0.0,451716854498.85156,451716854498.85156,0.8753380513731202\n$100-200K,43646829.96169849,34946061.076015994,80.06551932106477,0.0,0.0,-2071.9034398883337,-90432017137.86427,36.73934052967696,0.0,1185784892651.8867,1185784892651.8867,0.9072100915084924\n$200-500K,19192676.462053463,16106168.743785657,83.91830485773961,0.0,0.0,-3571.0979307769567,-68538927199.710724,27.844949893023912,0.0,882643041794.2878,882643041794.2878,0.8069811139067351\n$500-1000K,1338575.1459365028,1206401.06737955,90.12576328208452,0.0,0.0,-4442.96840781841,-5947247084.8868,2.4161568300824587,0.0,52935735466.80223,52935735466.80223,0.4831863866303854\n>$1000K,538341.2341983016,461322.81141881394,85.69338221060039,7096.805758824345,1.3182727437538604,-3626.5391622786856,-1952315568.4895823,0.7931569897725559,0.0,10832620942.392931,10832620942.392931,0.13986340515890205\nALL,186614949.59,141288913.02448905,75.71146541844908,7096.805758824345,0.003802913847157632,-1318.9988893350708,-246144911242.5302,100.0,0.0,3837087236928.367,3837087236928.367,0.7966399566959215\n", "diff_comb_xbin": ",count_8,tax_cut_8,perc_cut_8,tax_inc_8,perc_inc_8,mean_8,tot_change_8,share_of_change_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,pc_aftertaxinc_8\n<$0K,65425.52871417771,4455.726071504651,6.810378393685179,0.0,0.0,-55.69425888341104,-3643826.3337914557,0.0014864725403566487,0.0,1073530169.0301622,1073530169.0301622,-0.022374632958233054\n=$0K,1168802.9838188027,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10631770.66069179,7651214.140086993,71.96556795920523,0.0,0.0,-65.04016303409644,-691492097.1125172,0.282089188691345,0.0,15280455075.066286,15280455075.066286,0.7305100017652277\n$10-20K,10442509.494162135,8043803.70455114,77.02941241325195,0.0,0.0,-215.23221683135017,-2247564467.7109375,0.9168776329845872,0.0,55132302782.7051,55132302782.7051,0.7144660046453088\n$20-30K,14279505.99290608,9078433.355829466,63.576662668439255,0.0,0.0,-293.30290344900254,-4188220567.536785,1.708554221935836,0.0,156387755659.64307,156387755659.64307,0.6418953170370445\n$30-40K,15921424.839193951,10806665.518272154,67.87499000509844,0.0,0.0,-455.33682924686053,-7249611103.37078,2.9574263003397254,0.0,202169085287.3326,202169085287.3326,0.7580832388898839\n$40-50K,16066584.970599044,11886023.804345202,73.97977744552414,0.0,0.0,-626.136508370073,-10059875414.921978,4.103853255852314,0.0,229084421226.2077,229084421226.2077,0.8349499125060111\n$50-75K,32559576.11097845,24708360.810638964,75.88661697075284,0.0,0.0,-869.8671066434629,-28322504265.19444,11.553960317460922,0.0,594046541374.1606,594046541374.1606,0.8286361134715259\n$75-100K,20762926.205048792,16390002.266093608,78.93878783862436,0.0,0.0,-1264.8584322668503,-26262162288.99032,10.713458742792062,0.0,451716854498.85156,451716854498.85156,0.8753380513731202\n$100-200K,43646829.96169849,34946061.076015994,80.06551932106477,0.0,0.0,-2065.625929272175,-90158023699.41806,36.77931225184428,0.0,1185784892651.8867,1185784892651.8867,0.9072100915084924\n$200-500K,19192676.462053463,16106168.743785657,83.91830485773961,0.0,0.0,-3557.282880164849,-68273779403.005646,27.85179342049938,0.0,882643041794.2878,882643041794.2878,0.8069811139067351\n$500-1000K,1338575.1459365028,1206401.06737955,90.12576328208452,0.0,0.0,-4345.295623382306,-5816504723.206218,2.3728009405169495,0.0,52935735466.80223,52935735466.80223,0.4831863866303854\n>$1000K,538341.2341983016,461322.81141881394,85.69338221060039,7096.805758824345,1.3182727437538604,-3453.298810673658,-1859053143.7935839,0.7583872545422524,0.0,10832620942.392931,10832620942.392931,0.13986340515890205\nALL,186614949.59,141288913.02448905,75.71146541844908,7096.805758824345,0.003802913847157632,-1313.5734063061943,-245132435000.59503,100.0,0.0,3837087236928.367,3837087236928.367,0.7966399566959215\n", "dist1_xdec": ",s006_8,c00100_8,num_returns_StandardDed_8,standard_8,num_returns_ItemDed_8,c04470_8,c04600_8,c04800_8,taxbc_8,c62100_8,num_returns_AMT_8,c09600_8,c05800_8,c07100_8,othertaxes_8,refund_8,iitax_8,payrolltax_8,combined_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,expanded_income_8,aftertax_income_8\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18624694.459669515,89013281983.48236,18481995.76292228,223183818122.84103,142698.6967472337,1598735877.4792318,0.0,4637819873.4955015,324070915.84594595,87557123726.96848,15540.45298164449,1126900.7078617623,325197816.5538077,97906326.06527095,0.0,11086162352.75739,-10858870862.268852,13405220981.908783,2546350119.6399307,0.0,42300472391.64699,42300472391.64699,132794059789.22414,130247709669.5842\n10-20,18651062.57844179,240426821163.12622,18312691.074886777,295234743037.8905,338371.50355501065,6565254224.197545,0.0,62097596694.789856,5838007263.001209,234880328861.2893,20118.919948050258,11893706.088719482,5849900969.089929,1239773340.714611,0.0,22153341465.111774,-17543213836.736458,34061142294.134254,16517928457.397797,0.0,193257245393.53656,193257245393.53656,445872574721.2157,429354646263.818\n20-30,18682769.09904728,399850956857.7351,18050807.991648637,306306502414.728,631961.1073986464,12034986482.176485,0.0,170988221038.12817,17725542044.26088,390277842972.96704,122680.35154864422,342024328.47472125,18067566372.735603,4449511422.0041,0.0,22279727437.63337,-8661672486.901867,56679613087.67687,48017940600.77501,0.0,245623939964.21857,245623939964.21857,675309012034.1096,627291071433.3347\n30-40,18672149.861191392,576536315824.8672,17345729.041392025,317330209915.2797,1326420.8197993676,25716972906.999565,0.0,303125819775.04816,32228356545.040417,556927890499.1251,91612.67910502112,110792703.36576536,32339149248.40618,7183171184.896798,0.0,17201497657.743397,7954480405.765989,81739450340.53821,89693930746.3042,0.0,276055302045.7339,276055302045.7339,894924983902.512,805231053156.2078\n40-50,18668577.141719595,756421048785.3644,16726874.742708463,332896699580.86804,1941702.399011128,39819616097.7594,0.0,447064640921.12366,48885567029.24426,726692064964.5095,74067.67873198618,197545297.2756225,49083112326.51989,10876885413.233799,0.0,14787762945.341358,23418463967.944733,102703078251.30417,126121542219.2489,0.0,331734592125.65314,331734592125.65314,1134701590247.6917,1008580048028.4426\n50-60,18650640.76000244,989454963583.6818,15516885.7373095,336969158777.9814,3133755.0226929383,77168957264.77975,0.0,631388116831.0696,75440380731.54266,932320111127.9165,42940.78628785823,144606558.83084598,75584987290.3735,11811313219.753872,0.0,9949231944.07458,53824442126.54506,131980551792.31607,185804993918.86115,0.0,388768848353.59827,388768848353.59827,1432415687660.8691,1246610693742.0078\n60-70,18618634.16933852,1373457189333.3567,13819487.67568833,323428847026.29236,4799146.4936501905,118948324855.86351,0.0,961213070117.3723,123646093645.48953,1291048475229.892,140544.94142161036,694761376.2749884,124340855021.76453,15150211622.552187,0.0,4311235695.75947,104879407703.45287,171471973245.95212,276351380949.405,0.0,419105584218.75476,419105584218.75476,1845715730071.8884,1569364349122.4834\n70-80,18707895.9136749,1833232325135.4312,12354495.36308753,304796721636.4862,6353400.550587368,197787554387.60052,0.0,1358845761848.9827,181518314559.44498,1695571831028.4917,36203.27058796276,57735796.982649416,181576050356.4276,16481173503.885822,0.0,1651841395.7938156,163443035456.748,223108107489.15308,386551142945.90106,0.0,536370583517.037,536370583517.037,2433193489539.6455,2046642346593.745\n80-90,18670614.442072153,2590747096864.8486,9719772.727777336,254995462030.6799,8950841.71429482,305477725788.66113,0.0,2039907059757.498,304528536315.16974,2383452993352.6885,93945.08694613396,82819787.35321663,304611356102.52295,21579525713.887177,128015.24504775715,1226533308.6611602,281805425095.2197,315694444798.9164,597499869894.136,0.0,562185284281.752,562185284281.752,3297596857148.686,2700096987254.55\n90-100,18667911.164842404,5850372178491.115,7321602.234036826,196216150562.6118,11346308.93080558,443956942367.66797,0.0,5204130592272.154,1120671072147.4712,5536101738246.3955,133465.33923835168,953371819.138383,1121624443966.6096,18024698565.186424,13040666486.752996,899389740.759,1115741022147.417,495284744557.70996,1611025766705.127,0.0,841685384636.4354,841685384636.4354,7002342074552.924,5391316307847.797\nALL,186614949.59,14699512178023.01,147650342.35145772,2891358313105.659,38964607.23854229,1229075070253.1853,0.0,11183398699129.662,1910805941196.5107,13834830400010.246,771119.5067972634,2596678274.492774,1913402619471.0037,106894170312.18008,13040794501.998043,105546723943.6353,1714002519717.1863,1626128326839.6099,3340130846556.796,0.0,3837087236928.366,3837087236928.366,19294866059668.766,15954735213111.97\n90-95,9318378.902679473,1769441562490.5654,4324064.791834752,115842859874.20187,4994314.110844722,176095928853.48166,0.0,1478991366234.4917,249088475178.6256,1649848190488.8342,30351.07735371523,76121147.65735959,249164596326.28296,10006723431.208351,132574641.98942474,495732022.70019704,238794715514.36383,204857426165.7337,443652141680.09753,0.0,369785944110.83026,369785944110.83026,2245814672089.1914,1802162530409.0935\n95-99,7483174.907369541,2132438847772.1055,2566464.1408735393,68213027033.896774,4916710.766496002,194913329702.4931,0.0,1870102584716.2427,357028398611.5392,1994129488554.3506,41443.41353766296,198601351.80648267,357226999963.34564,7949249409.131144,2196645142.165303,248647446.02431124,351225748250.35547,205223874257.47186,556449622507.8274,0.0,408458487776.61975,408458487776.61975,2687688263842.492,2131238641334.6646\nTop 1%,1866357.354793392,1948491768228.4438,431073.30132853444,12160263654.513166,1435284.0534648574,72947683811.69327,0.0,1855036641321.4197,514554198357.3064,1892124059203.2112,61670.84834697349,678649319.6745408,515232847676.98096,68725724.84693204,10711446702.598269,155010272.03449166,525720558382.6978,85203444134.50443,610924002517.2021,0.0,63440952748.98552,63440952748.98552,2068839138621.2407,1457915136104.0386\n", "dist2_xdec": ",s006_8,c00100_8,num_returns_StandardDed_8,standard_8,num_returns_ItemDed_8,c04470_8,c04600_8,c04800_8,taxbc_8,c62100_8,num_returns_AMT_8,c09600_8,c05800_8,c07100_8,othertaxes_8,refund_8,iitax_8,payrolltax_8,combined_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,expanded_income_8,aftertax_income_8\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18624694.459669515,89021362524.71909,18481995.76292228,223183818122.84103,142698.6967472337,1598735877.4792318,0.0,4637819873.4955015,324070915.84594595,87565204268.2052,15540.45298164449,1126900.7078617623,325197816.5538077,97906326.06527095,0.0,11079524688.019331,-10852233197.530796,11303654712.263716,451421514.7329214,0.0,42300472391.64699,42300472391.64699,131751357195.63835,131299935680.90543\n10-20,18651062.57844179,240555225177.06927,18312691.074886777,295234743037.8905,338371.50355501065,6564887097.220358,0.0,62167455377.26123,5844957578.246362,235009191783.95386,20118.919948050258,11893706.088719482,5856851284.335081,1240702129.1127272,0.0,22153104562.91141,-17536955407.68906,28737501036.914066,11200545629.225006,0.0,193257245393.53656,193257245393.53656,443339158106.5487,432138612477.3237\n20-30,18682769.09904728,400213325271.2913,18050807.991648637,306306840939.72455,631961.1073986464,12033622782.321732,0.0,171229585694.04938,17750974622.05267,390641916011.3417,122680.35154864422,342024328.47472125,18092998950.52739,4455711498.818258,0.0,22261886510.949966,-8624599059.240835,47843087514.39909,39218488455.158264,0.0,245623939964.21857,245623939964.21857,671252955099.2399,632034466644.0817\n30-40,18672149.861191392,577078415375.852,17345729.041392025,317330209915.2797,1326420.8197993676,25714008148.17998,0.0,303607263347.8048,32279345493.28415,557473695998.6344,91612.67910502112,110792703.36576536,32390138196.649914,7196012703.225729,0.0,17170754560.646605,8023370932.777583,68997278183.8307,77020649116.60828,0.0,276055302045.7339,276055302045.7339,889084629352.8066,812063980236.1985\n40-50,18668577.141719595,756763439979.263,16726874.742708463,332896699580.86804,1941702.399011128,39819616097.7594,0.0,447359410119.5125,48917452736.267784,727034456158.4082,74067.67873198618,197545297.2756225,49114998033.54341,10888692913.033134,0.0,14766786886.331734,23459518234.178543,86641727356.43701,110101245590.61557,0.0,331734592125.65314,331734592125.65314,1126996774716.6172,1016895529126.0016\n50-60,18650640.76000244,989931189894.6816,15516885.7373095,336969158777.9814,3133755.0226929383,77168798107.36963,0.0,631838442775.5974,75493838437.0568,932796422681.5487,42940.78628785823,144587298.47826496,75638425735.53505,11822100071.789253,0.0,9925819892.52352,53890505771.22228,111344132302.99109,165234638074.21335,0.0,388768848353.59827,388768848353.59827,1422539710855.7046,1257305072781.4912\n60-70,18618634.16933852,1373906353831.1912,13819487.67568833,323428847026.29236,4799146.4936501905,118947567514.15144,0.0,961631668710.2487,123708694962.34294,1291498586404.8662,140544.94142161036,694761376.2749884,124403456338.61794,15155457015.807028,0.0,4302577715.887138,104945421606.92377,144638067601.8186,249583489208.74237,0.0,419105584218.75476,419105584218.75476,1832722675681.5493,1583139186472.8071\n70-80,18707895.9136749,1833709539446.0679,12354290.905208692,304791042923.175,6353605.008466206,197796151273.88937,0.0,1359288574405.4304,181583391733.66858,1696043211849.483,36203.27058796276,57735796.982649416,181641127530.65125,16483136436.610535,0.0,1649920986.4399776,163508070107.60077,188179645347.72083,351687715455.3216,0.0,536370583517.037,536370583517.037,2416187978139.3135,2064500262683.992\n80-90,18670614.442072153,2591677483061.172,9719772.727777336,254995462030.6799,8950841.71429482,305476432665.9872,0.0,2040815784255.7375,304718959799.9407,2384384337008.0312,93945.08694613396,86414235.92120838,304805374035.86194,21581908531.42995,128015.24504775715,1221442127.7621002,282002151391.9149,266380010449.80975,548382161841.7246,0.0,562185284281.752,562185284281.752,3273860018339.9355,2725477856498.211\n90-100,18667911.164842404,5851843079293.046,7321602.234036826,196216150562.6118,11346308.93080558,443951944399.34644,0.0,5205703719149.248,1121127207052.8916,5537578050437.545,135049.0607043669,949704379.3325881,1122076911432.224,18020602143.701836,13042525118.616703,899088828.1747712,1116199745578.9644,425918311090.8949,1542118056669.8591,0.0,841685384636.4354,841685384636.4354,6969100162873.503,5426982106203.644\nALL,186614949.59,14704699413854.352,147650137.89357886,2891352972917.3438,38964811.696421124,1229071763963.7046,0.0,11188279723708.387,1911748893331.5977,13840025072602.016,772703.2282632786,2596586022.9023895,1914345479354.5,106942229769.59372,13042653133.861752,105430906759.64655,1715014995959.1216,1379983415597.0798,3094998411556.201,0.0,3837087236928.366,3837087236928.366,19176835420360.855,16081837008804.656\n90-95,9318378.902679473,1769807229747.478,4324064.791834752,115842859874.20187,4994314.110844722,176094242199.93304,0.0,1479359800805.0293,249173216896.20407,1650215440831.255,30351.07735371523,76963136.21023566,249250180032.4143,10006539064.432533,132755068.7288753,495732022.70019704,238880664014.01047,173291626545.2379,412172290559.24835,0.0,369785944110.83026,369785944110.83026,2230395919889.5977,1818223629330.349\n95-99,7483174.907369541,2132923087873.7861,2566464.1408735393,68213027033.896774,4916710.766496002,194910109134.4228,0.0,1870660131011.9102,357174963268.80334,1994617443526.362,41443.41353766296,196023568.93395036,357370986837.7373,7945664437.611092,2198192296.188154,248346533.44008255,351375168162.87427,175289585257.13544,526664753420.0097,0.0,408458487776.61975,408458487776.61975,2673202472955.446,2146537719535.436\nTop 1%,1866357.354793392,1949112761671.7817,431073.30132853444,12160263654.513166,1435284.0534648574,72947593064.9906,0.0,1855683787332.309,514779026887.88416,1892745166079.9272,63254.5698129887,676717674.188402,515455744562.07263,68398641.65820923,10711577753.699675,155010272.03449166,525943913402.0796,77337099288.52151,603281012690.6011,0.0,63440952748.98552,63440952748.98552,2065501770028.46,1462220757337.8586\n", "diff_itax_xdec": ",count_8,tax_cut_8,perc_cut_8,tax_inc_8,perc_inc_8,mean_8,tot_change_8,share_of_change_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,pc_aftertaxinc_8\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,18624694.459669515,47464.66498564221,0.25484801959260944,343250.0405798405,1.8429834718798992,0.35639053045568364,6637664.73805665,0.6555872091744177,0.0,42300472391.64699,42300472391.64699,0.8078652699464284\n10-20,18651062.57844179,81199.55331792512,0.4353615402683881,395831.1151063068,2.1222979304344634,0.3355534850133415,6258429.0473980615,0.6181309534173685,0.0,193257245393.53656,193257245393.53656,0.6484071472689035\n20-30,18682769.09904728,49958.52176667889,0.2674042670110744,872280.8320172064,4.6689054892922055,1.984364708705011,37073427.661033936,3.6616590222576955,0.0,245623939964.21857,245623939964.21857,0.7561713256827529\n30-40,18672149.861191392,32780.08988838906,0.1755560561160658,1518137.796741019,8.13049278217475,3.6894801896795966,68890527.01159427,6.804162325816533,0.0,276055302045.7339,276055302045.7339,0.8485672594478633\n40-50,18668577.141719595,4169.551208729813,0.02233459559921099,908603.5351201538,4.867020813759033,2.199110618991049,41054266.23380913,4.054837489849845,0.0,331734592125.65314,331734592125.65314,0.8244740825295915\n50-60,18650640.76000244,5125.673004590256,0.0274825571440023,942770.8287075195,5.054897795947875,3.542164879337193,66063644.67721538,6.524957519096736,0.0,388768848353.59827,388768848353.59827,0.8578764078608803\n60-70,18618634.16933852,0.0,0.0,1041461.7866438325,5.59365298856846,3.545582499258272,66013903.47089873,6.520044692083474,0.0,419105584218.75476,419105584218.75476,0.87773354594336\n70-80,18707895.9136749,9596.286785719032,0.051295382602083224,1543580.8924886477,8.250959378923726,3.4763209691176367,65034650.8527782,6.423326114643189,0.0,536370583517.037,536370583517.037,0.8725469850640044\n80-90,18670614.442072153,12761.413851807909,0.06835026180526486,1662705.7281410592,8.905468715557303,10.536680370408268,196726296.69524276,19.430213623505843,0.0,562185284281.752,562185284281.752,0.9399984283330554\n90-100,18667911.164842404,172557.4871693779,0.9243534836096626,1583218.2614299082,8.48096097870666,24.572831287682607,458723431.5471189,45.30708105015488,0.0,841685384636.4354,841685384636.4354,0.6615415664617874\nALL,186614949.59,415613.2419788602,0.222711654608582,10811840.816975497,5.793662748203996,5.425483028876273,1012476241.9351462,100.0,0.0,3837087236928.366,3837087236928.366,0.7966399566959215\n90-95,9318378.902679473,12128.85161177844,0.13016053262537783,658671.312654284,7.068518242640733,9.223546342583466,85948499.64661619,8.488939896737014,0.0,369785944110.83026,369785944110.83026,0.8912125654731984\n95-99,7483174.907369541,113607.45046571107,1.5181717903430103,518685.818276549,6.931360347674615,19.967448892792135,149419912.5187258,14.757868513846752,0.0,408458487776.61975,408458487776.61975,0.7178491373068585\nTop 1%,1866357.354793392,46821.18509188839,2.508693470285145,405861.1304990753,21.746163962474625,119.67430503495544,223355019.38177693,22.060272639571117,0.0,63440952748.98552,63440952748.98552,0.2953272880701352\n", "diff_ptax_xdec": ",count_8,tax_cut_8,perc_cut_8,tax_inc_8,perc_inc_8,mean_8,tot_change_8,share_of_change_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,pc_aftertaxinc_8\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18624694.459669515,13225887.89509716,71.01264358315731,0.0,0.0,-112.83762395113983,-2101566269.6450663,0.8537922880617109,0.0,42300472391.64699,42300472391.64699,0.8078652699464284\n10-20,18651062.57844179,11992090.464467298,64.29708985228864,0.0,0.0,-285.4336708608562,-5323641257.220186,2.1628077665090237,0.0,193257245393.53656,193257245393.53656,0.6484071472689035\n20-30,18682769.09904728,12824708.453017887,68.64458038863134,0.0,0.0,-472.9772940205312,-8836525573.27778,3.5899688231096607,0.0,245623939964.21857,245623939964.21857,0.7561713256827529\n30-40,18672149.861191392,13776243.510962132,73.77963230466023,0.0,0.0,-682.4159109386283,-12742172156.707504,5.176695342749724,0.0,276055302045.7339,276055302045.7339,0.8485672594478633\n40-50,18668577.141719595,14158800.082491586,75.84295243824562,0.0,0.0,-860.3414589628285,-16061350894.867146,6.525160651824997,0.0,331734592125.65314,331734592125.65314,0.8244740825295915\n50-60,18650640.76000244,14698049.46697696,78.80720912547905,0.0,0.0,-1106.4724131935022,-20636419489.324997,8.383849735163377,0.0,388768848353.59827,388768848353.59827,0.8578764078608803\n60-70,18618634.16933852,14814732.387413021,79.56938329993169,0.0,0.0,-1441.239212290022,-26833905644.133537,10.901669877584304,0.0,419105584218.75476,419105584218.75476,0.87773354594336\n70-80,18707895.9136749,14553228.7753513,77.79190584823243,0.0,0.0,-1867.043856915017,-34928462141.43227,14.190202822034674,0.0,536370583517.037,536370583517.037,0.8725469850640044\n80-90,18670614.442072153,15459735.790118385,82.80250142856353,0.0,0.0,-2641.2860970436004,-49314434349.106636,20.03471617599943,0.0,562185284281.752,562185284281.752,0.9399984283330554\n90-100,18667911.164842404,15785436.19859331,84.55919925482766,7096.805758824345,0.038016067765470625,-3715.8112042794623,-69366433466.81508,28.181136516963093,0.0,841685384636.4354,841685384636.4354,0.6615415664617874\nALL,186614949.59,141288913.02448905,75.71146541844908,7096.805758824345,0.003802913847157632,-1318.9988893350708,-246144911242.5302,100.0,0.0,3837087236928.366,3837087236928.366,0.7966399566959215\n90-95,9318378.902679473,7951260.047337625,85.32879088068916,0.0,0.0,-3387.477580614274,-31565799620.495754,12.824071584967077,0.0,369785944110.83026,369785944110.83026,0.8912125654731984\n95-99,7483174.907369541,6173052.821228674,82.49242998649356,0.0,0.0,-4000.2123925844226,-29934289000.336426,12.16124633624529,0.0,408458487776.61975,408458487776.61975,0.7178491373068585\nTop 1%,1866357.354793392,1661123.3300270108,89.0034979507394,7096.805758824345,0.38024903111922903,-4214.811716405572,-7866344845.982899,3.1958185957507257,0.0,63440952748.98552,63440952748.98552,0.2953272880701352\n", "diff_comb_xdec": ",count_8,tax_cut_8,perc_cut_8,tax_inc_8,perc_inc_8,mean_8,tot_change_8,share_of_change_8,ubi_8,benefit_cost_total_8,benefit_value_total_8,pc_aftertaxinc_8\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18624694.459669515,13225887.89509716,71.01264358315731,0.0,0.0,-112.48123342068415,-2094928604.9070096,0.8546109391447624,0.0,42300472391.64699,42300472391.64699,0.8078652699464284\n10-20,18651062.57844179,11992090.464467298,64.29708985228864,0.0,0.0,-285.0981173758429,-5317382828.172789,2.1691877813557725,0.0,193257245393.53656,193257245393.53656,0.6484071472689035\n20-30,18682769.09904728,12824708.453017887,68.64458038863134,0.0,0.0,-470.99292931182623,-8799452145.616747,3.589672719399775,0.0,245623939964.21857,245623939964.21857,0.7561713256827529\n30-40,18672149.861191392,13776243.510962132,73.77963230466023,0.0,0.0,-678.7264307489487,-12673281629.695911,5.169973377723411,0.0,276055302045.7339,276055302045.7339,0.8485672594478633\n40-50,18668577.141719595,14158800.082491586,75.84295243824562,0.0,0.0,-858.1423483438375,-16020296628.633339,6.535363885482739,0.0,331734592125.65314,331734592125.65314,0.8244740825295915\n50-60,18650640.76000244,14698049.46697696,78.80720912547905,0.0,0.0,-1102.930248314165,-20570355844.64778,8.391527561253918,0.0,388768848353.59827,388768848353.59827,0.8578764078608803\n60-70,18618634.16933852,14814732.387413021,79.56938329993169,0.0,0.0,-1437.6936297907637,-26767891740.662636,10.919767406788766,0.0,419105584218.75476,419105584218.75476,0.87773354594336\n70-80,18707895.9136749,14553228.7753513,77.79190584823243,0.0,0.0,-1863.567535945899,-34863427490.57948,14.222282534946814,0.0,536370583517.037,536370583517.037,0.8725469850640044\n80-90,18670614.442072153,15459735.790118385,82.80250142856353,0.0,0.0,-2630.749416673192,-49117708052.41139,20.037212967060913,0.0,562185284281.752,562185284281.752,0.9399984283330554\n90-100,18667911.164842404,15785436.19859331,84.55919925482766,7096.805758824345,0.038016067765470625,-3691.23837299178,-68907710035.26796,28.110400826843126,0.0,841685384636.4354,841685384636.4354,0.6615415664617874\nALL,186614949.59,141288913.02448905,75.71146541844908,7096.805758824345,0.003802913847157632,-1313.5734063061943,-245132435000.59506,100.0,0.0,3837087236928.366,3837087236928.366,0.7966399566959215\n90-95,9318378.902679473,7951260.047337625,85.32879088068916,0.0,0.0,-3378.254034271691,-31479851120.849144,12.841977080990008,0.0,369785944110.83026,369785944110.83026,0.8912125654731984\n95-99,7483174.907369541,6173052.821228674,82.49242998649356,0.0,0.0,-3980.2449436916304,-29784869087.8177,12.150521446802989,0.0,408458487776.61975,408458487776.61975,0.7178491373068585\nTop 1%,1866357.354793392,1661123.3300270108,89.0034979507394,7096.805758824345,0.38024903111922903,-4095.1374113706165,-7642989826.601122,3.1179022990501313,0.0,63440952748.98552,63440952748.98552,0.2953272880701352\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_8
ind_tax1,012,476,241.94
payroll_tax-246,144,911,242.53
combined_tax-245,132,435,000.60
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_8
ind_tax1,714,002,519,717.19
payroll_tax1,626,128,326,839.61
combined_tax3,340,130,846,556.80
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_8
ind_tax1,715,014,995,959.12
payroll_tax1,379,983,415,597.08
combined_tax3,094,998,411,556.20
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_8c00100_8num_returns_StandardDed_8standard_8num_returns_ItemDed_8c04470_8c04600_8c04800_8taxbc_8c62100_8num_returns_AMT_8c09600_8c05800_8c07100_8othertaxes_8refund_8iitax_8payrolltax_8combined_8ubi_8benefit_cost_total_8benefit_value_total_8expanded_income_8aftertax_income_8
<$0K65,425.53-9,293,521,416.6965,425.531,623,484,908.840.000.000.000.000.00-9,293,521,416.690.000.000.000.000.001,494,329.04-1,494,329.0423,229,392.8821,735,063.840.001,073,530,169.031,073,530,169.03-8,121,027,189.72-8,142,762,253.56
=$0K1,168,802.980.001,168,802.9820,887,524,111.410.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,631,770.6632,362,758,868.1210,575,108.70103,415,864,563.2056,661.96320,316,628.800.001,974,487,803.24142,606,010.6332,059,242,730.530.000.00142,606,010.6338,426,817.240.003,300,577,324.93-3,196,398,131.534,439,181,950.971,242,783,819.430.0015,280,455,075.0715,280,455,075.0748,241,900,674.6846,999,116,855.24
$10-20K10,442,509.49104,943,018,142.5610,277,586.42154,123,645,552.15164,923.072,585,477,899.410.006,773,247,940.20575,994,851.70102,667,784,503.4515,540.451,126,900.71577,121,752.40184,915,686.740.0013,035,673,389.53-12,643,467,323.8614,360,911,755.471,717,444,431.610.0055,132,302,782.7155,132,302,782.71161,120,842,581.39159,403,398,149.79
$20-30K14,279,505.99189,169,273,753.3514,022,253.65225,577,813,672.04257,252.345,223,520,889.030.0054,574,947,371.685,091,943,737.53184,765,832,288.1320,118.9211,893,706.095,103,837,443.621,024,040,046.850.0016,091,930,518.16-12,012,133,121.3926,820,255,551.6714,808,122,430.280.00156,387,755,659.64156,387,755,659.64356,603,184,275.82341,795,061,845.54
$30-40K15,921,424.84328,277,307,717.3515,397,940.88260,916,250,510.97523,483.969,702,869,049.170.00136,958,846,699.0714,176,854,424.32320,523,395,936.3876,502.98248,681,482.2114,425,535,906.533,523,962,643.220.0018,781,484,536.83-7,879,911,273.5146,697,111,722.9738,817,200,449.450.00202,169,085,287.33202,169,085,287.33554,623,253,875.44515,806,053,425.99
$40-50K16,066,584.97457,850,782,063.0615,125,679.08269,957,834,299.36940,905.8919,014,394,551.070.00229,548,396,335.7124,126,551,518.78443,163,317,522.47137,790.05204,135,549.6324,330,687,068.425,542,196,806.570.0016,349,165,219.772,439,325,042.0864,960,061,204.0067,399,386,246.080.00229,084,421,226.21229,084,421,226.21721,550,492,098.86654,151,105,852.78
$50-75K32,559,576.111,332,560,780,301.5728,887,543.71581,035,766,148.323,672,032.4182,213,298,040.540.00785,369,999,901.2287,580,485,058.141,270,251,003,984.0075,427.42204,768,514.6787,785,253,572.8118,074,342,514.990.0026,591,360,639.6543,119,550,418.17181,694,871,649.50224,814,422,067.660.00594,046,541,374.16594,046,541,374.162,007,875,704,510.891,783,061,282,443.23
$75-100K20,762,926.211,285,382,497,371.1416,930,173.70379,753,366,812.273,832,752.5188,903,239,418.350.00863,147,077,418.46107,098,667,577.451,223,122,592,762.3078,127.72176,405,558.90107,275,073,136.3414,517,121,441.970.005,714,770,701.3187,043,180,993.07168,250,917,584.19255,294,098,577.260.00451,716,854,498.85451,716,854,498.851,799,645,798,175.081,544,351,699,597.82
$100-200K43,646,829.964,761,337,564,365.8026,605,633.65662,999,504,317.6617,041,196.31536,606,110,757.870.003,607,604,204,638.34505,945,469,795.514,392,835,826,220.41214,032.99778,335,592.38506,723,805,387.8942,561,726,120.570.004,256,735,852.60459,905,343,414.72578,172,947,742.871,038,078,291,157.590.001,185,784,892,651.891,185,784,892,651.896,158,502,949,346.695,120,424,658,189.10
$200-500K19,192,676.464,263,698,645,139.568,159,162.28218,785,368,422.6611,033,514.18411,292,785,870.610.003,638,066,545,680.48650,581,599,124.703,978,070,737,254.4591,908.12292,681,650.24650,874,280,774.9421,352,976,529.522,324,665,942.981,268,521,159.79630,577,449,028.61455,230,434,683.551,085,807,883,712.160.00882,643,041,794.29882,643,041,794.295,420,696,984,904.694,334,889,101,192.54
$500-1000K1,338,575.15806,448,874,940.90357,370.8710,153,366,086.71981,204.2844,981,776,520.290.00747,142,961,173.54175,124,851,312.07772,793,545,309.0125,004.74134,363,076.47175,259,214,388.5464,934,026.522,190,860,703.03155,010,272.03177,230,130,793.0249,874,170,812.05227,104,301,605.060.0052,935,735,466.8052,935,735,466.80890,848,441,107.45663,744,139,502.39
>$1000K538,341.231,146,774,196,776.3077,660.912,128,523,700.07460,680.3228,231,280,628.030.001,112,237,984,167.72340,360,917,785.681,123,870,642,915.8236,666.11544,286,243.21340,905,204,028.899,527,678.018,525,267,855.990.00349,420,944,206.8735,604,232,789.50385,025,176,996.370.0010,832,620,942.3910,832,620,942.391,183,277,535,307.49798,252,358,311.12
ALL186,614,949.5914,699,512,178,023.01147,650,342.352,891,358,313,105.6638,964,607.241,229,075,070,253.190.0011,183,398,699,129.661,910,805,941,196.5113,834,830,400,010.25771,119.512,596,678,274.491,913,402,619,471.00106,894,170,312.1813,040,794,502.00105,546,723,943.641,714,002,519,717.191,626,128,326,839.613,340,130,846,556.800.003,837,087,236,928.373,837,087,236,928.3719,294,866,059,668.7715,954,735,213,111.97
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_8c00100_8num_returns_StandardDed_8standard_8num_returns_ItemDed_8c04470_8c04600_8c04800_8taxbc_8c62100_8num_returns_AMT_8c09600_8c05800_8c07100_8othertaxes_8refund_8iitax_8payrolltax_8combined_8ubi_8benefit_cost_total_8benefit_value_total_8expanded_income_8aftertax_income_8
<$0K65,425.53-9,293,521,416.6965,425.531,623,484,908.840.000.000.000.000.00-9,293,521,416.690.000.000.000.000.001,494,329.04-1,494,329.0419,585,566.5418,091,237.500.001,073,530,169.031,073,530,169.03-8,122,849,102.89-8,140,940,340.39
=$0K1,168,802.980.001,168,802.9820,887,524,111.410.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,631,770.6632,362,770,295.7210,575,108.70103,415,864,563.2056,661.96320,316,628.800.001,974,487,803.24142,606,010.6332,059,254,158.130.000.00142,606,010.6338,426,817.240.003,295,728,871.36-3,191,549,677.963,742,841,400.28551,291,722.320.0015,280,455,075.0715,280,455,075.0747,893,741,826.9347,342,450,104.61
$10-20K10,442,509.49104,959,449,033.5010,277,586.42154,123,645,552.15164,923.072,585,477,899.410.006,776,202,019.68576,290,259.64102,684,215,394.3915,540.451,126,900.71577,417,160.35184,915,686.740.0013,033,308,727.94-12,640,807,254.3312,110,687,218.22-530,120,036.110.0055,132,302,782.7155,132,302,782.71160,012,161,203.71160,542,281,239.82
$20-30K14,279,505.99189,270,935,620.4814,022,253.65225,577,813,672.04257,252.345,223,153,762.050.0054,629,809,669.625,097,394,414.32184,867,953,063.9820,118.9211,893,706.095,109,288,120.411,024,900,944.030.0016,092,908,987.67-12,008,521,811.2922,628,423,674.0410,619,901,862.740.00156,387,755,659.64156,387,755,659.64354,608,930,204.13343,989,028,341.39
$30-40K15,921,424.84328,577,884,885.4415,397,940.88260,916,589,035.96523,483.969,701,557,461.620.00137,156,138,234.7514,197,395,577.28320,825,612,588.9176,502.98248,681,482.2114,446,077,059.483,528,826,632.240.0018,766,874,733.61-7,849,624,306.3739,417,213,652.4531,567,589,346.080.00202,169,085,287.33202,169,085,287.33551,283,882,008.27519,716,292,662.19
$40-50K16,066,584.97458,318,594,146.0615,125,679.08269,957,834,299.36940,905.8919,011,514,864.770.00229,939,058,570.7724,168,045,460.40443,634,729,213.34137,790.05204,135,549.6324,372,181,010.035,553,296,594.570.0016,319,026,399.562,499,858,015.9054,839,652,815.2657,339,510,831.160.00229,084,421,226.21229,084,421,226.21716,952,450,769.92659,612,939,938.76
$50-75K32,559,576.111,333,241,630,165.6828,887,543.71581,035,766,148.323,672,032.4182,213,069,892.410.00785,985,704,984.4187,648,071,788.041,270,932,025,329.1475,427.42204,768,514.6787,852,840,302.7118,091,911,532.350.0026,560,948,376.9543,199,980,393.41153,291,937,409.06196,491,917,802.470.00594,046,541,374.16594,046,541,374.161,994,328,289,957.351,797,836,372,154.88
$75-100K20,762,926.211,285,844,075,329.3716,930,173.70379,753,366,812.273,832,752.5188,903,028,340.780.00863,573,674,898.88107,154,715,372.881,223,584,434,567.4978,127.72176,386,298.54107,331,101,671.4214,527,921,050.200.005,693,039,157.1587,110,141,464.07141,921,794,824.20229,031,936,288.270.00451,716,854,498.85451,716,854,498.851,786,901,933,959.691,557,869,997,671.43
$100-200K43,646,829.964,762,891,054,923.9226,605,429.19662,993,825,604.3417,041,400.77536,612,800,063.240.003,609,090,106,415.99506,212,772,051.774,394,385,208,820.70214,032.99781,155,105.15506,993,927,156.9242,566,773,945.290.004,247,816,358.46460,179,336,853.16487,740,930,605.01947,920,267,458.170.001,185,784,892,651.891,185,784,892,651.896,114,797,934,874.455,166,877,667,416.28
$200-500K19,192,676.464,264,680,445,188.498,159,162.28218,785,368,422.6611,033,514.18411,287,878,648.990.003,639,124,419,237.03650,840,355,001.313,979,057,835,259.2391,908.12291,720,791.72651,132,075,793.0321,351,121,945.592,326,393,523.741,264,750,545.87630,842,596,825.31386,691,507,483.841,017,534,104,309.150.00882,643,041,794.29882,643,041,794.295,387,404,941,857.114,369,870,837,547.96
$500-1000K1,338,575.15806,819,189,868.03357,370.8710,153,366,086.71981,204.2844,981,685,773.590.00747,539,428,668.23175,256,762,590.39773,163,973,669.5226,588.46132,801,989.92175,389,564,580.3164,606,943.332,190,925,789.75155,010,272.03177,360,873,154.7043,926,923,727.16221,287,796,881.860.0052,935,735,466.8052,935,735,466.80888,239,057,708.38666,951,260,826.52
>$1000K538,341.231,147,026,905,814.3677,660.912,128,523,700.07460,680.3228,231,280,628.030.001,112,490,693,205.78340,454,484,804.941,124,123,351,953.8836,666.11543,915,684.27340,998,400,489.219,527,678.018,525,333,820.370.00349,514,206,631.5633,651,917,221.01383,166,123,852.580.0010,832,620,942.3910,832,620,942.391,182,534,945,093.79799,368,821,241.21
ALL186,614,949.5914,704,699,413,854.35147,650,137.892,891,352,972,917.3438,964,811.701,229,071,763,963.700.0011,188,279,723,708.391,911,748,893,331.6013,840,025,072,602.02772,703.232,596,586,022.901,914,345,479,354.50106,942,229,769.5913,042,653,133.86105,430,906,759.651,715,014,995,959.121,379,983,415,597.083,094,998,411,556.200.003,837,087,236,928.373,837,087,236,928.3719,176,835,420,360.8616,081,837,008,804.66
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_8tax_cut_8perc_cut_8tax_inc_8perc_inc_8mean_8tot_change_8share_of_change_8ubi_8benefit_cost_total_8benefit_value_total_8pc_aftertaxinc_8
<$0K65,425.530.000.000.000.000.000.000.000.001,073,530,169.031,073,530,169.03-0.02
=$0K1,168,802.980.000.000.000.000.000.000.000.000.000.00nan
$0-10K10,631,770.6622,847.340.21292,135.242.750.464,848,453.570.480.0015,280,455,075.0715,280,455,075.070.73
$10-20K10,442,509.4936,742.210.35118,989.521.140.252,660,069.530.260.0055,132,302,782.7155,132,302,782.710.71
$20-30K14,279,505.9966,434.580.47273,967.931.920.253,611,310.100.360.00156,387,755,659.64156,387,755,659.640.64
$30-40K15,921,424.8423,739.610.15754,857.834.741.9030,286,967.152.990.00202,169,085,287.33202,169,085,287.330.76
$40-50K16,066,584.9761,517.010.381,302,529.028.113.7760,532,973.825.980.00229,084,421,226.21229,084,421,226.210.83
$50-75K32,559,576.116,288.900.021,706,519.275.242.4780,429,975.247.940.00594,046,541,374.16594,046,541,374.160.83
$75-100K20,762,926.213,128.400.021,021,625.404.923.2366,960,471.006.610.00451,716,854,498.85451,716,854,498.850.88
$100-200K43,646,829.969,596.290.023,513,174.598.056.28273,993,438.4527.060.001,185,784,892,651.891,185,784,892,651.890.91
$200-500K19,192,676.46138,497.720.721,421,100.047.4013.82265,147,796.7126.190.00882,643,041,794.29882,643,041,794.290.81
$500-1000K1,338,575.1518,888.861.41248,860.6418.5997.67130,742,361.6812.910.0052,935,735,466.8052,935,735,466.800.48
>$1000K538,341.2327,932.325.19158,081.3429.36173.2493,262,424.709.210.0010,832,620,942.3910,832,620,942.390.14
ALL186,614,949.59415,613.240.2210,811,840.825.795.431,012,476,241.94100.000.003,837,087,236,928.373,837,087,236,928.370.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_8tax_cut_8perc_cut_8tax_inc_8perc_inc_8mean_8tot_change_8share_of_change_8ubi_8benefit_cost_total_8benefit_value_total_8pc_aftertaxinc_8
<$0K65,425.534,455.736.810.000.00-55.69-3,643,826.330.000.001,073,530,169.031,073,530,169.03-0.02
=$0K1,168,802.980.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,631,770.667,651,214.1471.970.000.00-65.50-696,340,550.680.280.0015,280,455,075.0715,280,455,075.070.73
$10-20K10,442,509.498,043,803.7077.030.000.00-215.49-2,250,224,537.240.910.0055,132,302,782.7155,132,302,782.710.71
$20-30K14,279,505.999,078,433.3663.580.000.00-293.56-4,191,831,877.631.700.00156,387,755,659.64156,387,755,659.640.64
$30-40K15,921,424.8410,806,665.5267.870.000.00-457.24-7,279,898,070.522.960.00202,169,085,287.33202,169,085,287.330.76
$40-50K16,066,584.9711,886,023.8073.980.000.00-629.90-10,120,408,388.744.110.00229,084,421,226.21229,084,421,226.210.83
$50-75K32,559,576.1124,708,360.8175.890.000.00-872.34-28,402,934,240.4311.540.00594,046,541,374.16594,046,541,374.160.83
$75-100K20,762,926.2116,390,002.2778.940.000.00-1,268.08-26,329,122,759.9910.700.00451,716,854,498.85451,716,854,498.850.88
$100-200K43,646,829.9634,946,061.0880.070.000.00-2,071.90-90,432,017,137.8636.740.001,185,784,892,651.891,185,784,892,651.890.91
$200-500K19,192,676.4616,106,168.7483.920.000.00-3,571.10-68,538,927,199.7127.840.00882,643,041,794.29882,643,041,794.290.81
$500-1000K1,338,575.151,206,401.0790.130.000.00-4,442.97-5,947,247,084.892.420.0052,935,735,466.8052,935,735,466.800.48
>$1000K538,341.23461,322.8185.697,096.811.32-3,626.54-1,952,315,568.490.790.0010,832,620,942.3910,832,620,942.390.14
ALL186,614,949.59141,288,913.0275.717,096.810.00-1,319.00-246,144,911,242.53100.000.003,837,087,236,928.373,837,087,236,928.370.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_8tax_cut_8perc_cut_8tax_inc_8perc_inc_8mean_8tot_change_8share_of_change_8ubi_8benefit_cost_total_8benefit_value_total_8pc_aftertaxinc_8
<$0K65,425.534,455.736.810.000.00-55.69-3,643,826.330.000.001,073,530,169.031,073,530,169.03-0.02
=$0K1,168,802.980.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,631,770.667,651,214.1471.970.000.00-65.04-691,492,097.110.280.0015,280,455,075.0715,280,455,075.070.73
$10-20K10,442,509.498,043,803.7077.030.000.00-215.23-2,247,564,467.710.920.0055,132,302,782.7155,132,302,782.710.71
$20-30K14,279,505.999,078,433.3663.580.000.00-293.30-4,188,220,567.541.710.00156,387,755,659.64156,387,755,659.640.64
$30-40K15,921,424.8410,806,665.5267.870.000.00-455.34-7,249,611,103.372.960.00202,169,085,287.33202,169,085,287.330.76
$40-50K16,066,584.9711,886,023.8073.980.000.00-626.14-10,059,875,414.924.100.00229,084,421,226.21229,084,421,226.210.83
$50-75K32,559,576.1124,708,360.8175.890.000.00-869.87-28,322,504,265.1911.550.00594,046,541,374.16594,046,541,374.160.83
$75-100K20,762,926.2116,390,002.2778.940.000.00-1,264.86-26,262,162,288.9910.710.00451,716,854,498.85451,716,854,498.850.88
$100-200K43,646,829.9634,946,061.0880.070.000.00-2,065.63-90,158,023,699.4236.780.001,185,784,892,651.891,185,784,892,651.890.91
$200-500K19,192,676.4616,106,168.7483.920.000.00-3,557.28-68,273,779,403.0127.850.00882,643,041,794.29882,643,041,794.290.81
$500-1000K1,338,575.151,206,401.0790.130.000.00-4,345.30-5,816,504,723.212.370.0052,935,735,466.8052,935,735,466.800.48
>$1000K538,341.23461,322.8185.697,096.811.32-3,453.30-1,859,053,143.790.760.0010,832,620,942.3910,832,620,942.390.14
ALL186,614,949.59141,288,913.0275.717,096.810.00-1,313.57-245,132,435,000.60100.000.003,837,087,236,928.373,837,087,236,928.370.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_8c00100_8num_returns_StandardDed_8standard_8num_returns_ItemDed_8c04470_8c04600_8c04800_8taxbc_8c62100_8num_returns_AMT_8c09600_8c05800_8c07100_8othertaxes_8refund_8iitax_8payrolltax_8combined_8ubi_8benefit_cost_total_8benefit_value_total_8expanded_income_8aftertax_income_8
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,624,694.4689,013,281,983.4818,481,995.76223,183,818,122.84142,698.701,598,735,877.480.004,637,819,873.50324,070,915.8587,557,123,726.9715,540.451,126,900.71325,197,816.5597,906,326.070.0011,086,162,352.76-10,858,870,862.2713,405,220,981.912,546,350,119.640.0042,300,472,391.6542,300,472,391.65132,794,059,789.22130,247,709,669.58
10-2018,651,062.58240,426,821,163.1318,312,691.07295,234,743,037.89338,371.506,565,254,224.200.0062,097,596,694.795,838,007,263.00234,880,328,861.2920,118.9211,893,706.095,849,900,969.091,239,773,340.710.0022,153,341,465.11-17,543,213,836.7434,061,142,294.1316,517,928,457.400.00193,257,245,393.54193,257,245,393.54445,872,574,721.22429,354,646,263.82
20-3018,682,769.10399,850,956,857.7418,050,807.99306,306,502,414.73631,961.1112,034,986,482.180.00170,988,221,038.1317,725,542,044.26390,277,842,972.97122,680.35342,024,328.4718,067,566,372.744,449,511,422.000.0022,279,727,437.63-8,661,672,486.9056,679,613,087.6848,017,940,600.780.00245,623,939,964.22245,623,939,964.22675,309,012,034.11627,291,071,433.33
30-4018,672,149.86576,536,315,824.8717,345,729.04317,330,209,915.281,326,420.8225,716,972,907.000.00303,125,819,775.0532,228,356,545.04556,927,890,499.1391,612.68110,792,703.3732,339,149,248.417,183,171,184.900.0017,201,497,657.747,954,480,405.7781,739,450,340.5489,693,930,746.300.00276,055,302,045.73276,055,302,045.73894,924,983,902.51805,231,053,156.21
40-5018,668,577.14756,421,048,785.3616,726,874.74332,896,699,580.871,941,702.4039,819,616,097.760.00447,064,640,921.1248,885,567,029.24726,692,064,964.5174,067.68197,545,297.2849,083,112,326.5210,876,885,413.230.0014,787,762,945.3423,418,463,967.94102,703,078,251.30126,121,542,219.250.00331,734,592,125.65331,734,592,125.651,134,701,590,247.691,008,580,048,028.44
50-6018,650,640.76989,454,963,583.6815,516,885.74336,969,158,777.983,133,755.0277,168,957,264.780.00631,388,116,831.0775,440,380,731.54932,320,111,127.9242,940.79144,606,558.8375,584,987,290.3711,811,313,219.750.009,949,231,944.0753,824,442,126.55131,980,551,792.32185,804,993,918.860.00388,768,848,353.60388,768,848,353.601,432,415,687,660.871,246,610,693,742.01
60-7018,618,634.171,373,457,189,333.3613,819,487.68323,428,847,026.294,799,146.49118,948,324,855.860.00961,213,070,117.37123,646,093,645.491,291,048,475,229.89140,544.94694,761,376.27124,340,855,021.7615,150,211,622.550.004,311,235,695.76104,879,407,703.45171,471,973,245.95276,351,380,949.410.00419,105,584,218.75419,105,584,218.751,845,715,730,071.891,569,364,349,122.48
70-8018,707,895.911,833,232,325,135.4312,354,495.36304,796,721,636.496,353,400.55197,787,554,387.600.001,358,845,761,848.98181,518,314,559.441,695,571,831,028.4936,203.2757,735,796.98181,576,050,356.4316,481,173,503.890.001,651,841,395.79163,443,035,456.75223,108,107,489.15386,551,142,945.900.00536,370,583,517.04536,370,583,517.042,433,193,489,539.652,046,642,346,593.75
80-9018,670,614.442,590,747,096,864.859,719,772.73254,995,462,030.688,950,841.71305,477,725,788.660.002,039,907,059,757.50304,528,536,315.172,383,452,993,352.6993,945.0982,819,787.35304,611,356,102.5221,579,525,713.89128,015.251,226,533,308.66281,805,425,095.22315,694,444,798.92597,499,869,894.140.00562,185,284,281.75562,185,284,281.753,297,596,857,148.692,700,096,987,254.55
90-10018,667,911.165,850,372,178,491.127,321,602.23196,216,150,562.6111,346,308.93443,956,942,367.670.005,204,130,592,272.151,120,671,072,147.475,536,101,738,246.40133,465.34953,371,819.141,121,624,443,966.6118,024,698,565.1913,040,666,486.75899,389,740.761,115,741,022,147.42495,284,744,557.711,611,025,766,705.130.00841,685,384,636.44841,685,384,636.447,002,342,074,552.925,391,316,307,847.80
ALL186,614,949.5914,699,512,178,023.01147,650,342.352,891,358,313,105.6638,964,607.241,229,075,070,253.190.0011,183,398,699,129.661,910,805,941,196.5113,834,830,400,010.25771,119.512,596,678,274.491,913,402,619,471.00106,894,170,312.1813,040,794,502.00105,546,723,943.641,714,002,519,717.191,626,128,326,839.613,340,130,846,556.800.003,837,087,236,928.373,837,087,236,928.3719,294,866,059,668.7715,954,735,213,111.97
90-959,318,378.901,769,441,562,490.574,324,064.79115,842,859,874.204,994,314.11176,095,928,853.480.001,478,991,366,234.49249,088,475,178.631,649,848,190,488.8330,351.0876,121,147.66249,164,596,326.2810,006,723,431.21132,574,641.99495,732,022.70238,794,715,514.36204,857,426,165.73443,652,141,680.100.00369,785,944,110.83369,785,944,110.832,245,814,672,089.191,802,162,530,409.09
95-997,483,174.912,132,438,847,772.112,566,464.1468,213,027,033.904,916,710.77194,913,329,702.490.001,870,102,584,716.24357,028,398,611.541,994,129,488,554.3541,443.41198,601,351.81357,226,999,963.357,949,249,409.132,196,645,142.17248,647,446.02351,225,748,250.36205,223,874,257.47556,449,622,507.830.00408,458,487,776.62408,458,487,776.622,687,688,263,842.492,131,238,641,334.66
Top 1%1,866,357.351,948,491,768,228.44431,073.3012,160,263,654.511,435,284.0572,947,683,811.690.001,855,036,641,321.42514,554,198,357.311,892,124,059,203.2161,670.85678,649,319.67515,232,847,676.9868,725,724.8510,711,446,702.60155,010,272.03525,720,558,382.7085,203,444,134.50610,924,002,517.200.0063,440,952,748.9963,440,952,748.992,068,839,138,621.241,457,915,136,104.04
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_8c00100_8num_returns_StandardDed_8standard_8num_returns_ItemDed_8c04470_8c04600_8c04800_8taxbc_8c62100_8num_returns_AMT_8c09600_8c05800_8c07100_8othertaxes_8refund_8iitax_8payrolltax_8combined_8ubi_8benefit_cost_total_8benefit_value_total_8expanded_income_8aftertax_income_8
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,624,694.4689,021,362,524.7218,481,995.76223,183,818,122.84142,698.701,598,735,877.480.004,637,819,873.50324,070,915.8587,565,204,268.2115,540.451,126,900.71325,197,816.5597,906,326.070.0011,079,524,688.02-10,852,233,197.5311,303,654,712.26451,421,514.730.0042,300,472,391.6542,300,472,391.65131,751,357,195.64131,299,935,680.91
10-2018,651,062.58240,555,225,177.0718,312,691.07295,234,743,037.89338,371.506,564,887,097.220.0062,167,455,377.265,844,957,578.25235,009,191,783.9520,118.9211,893,706.095,856,851,284.341,240,702,129.110.0022,153,104,562.91-17,536,955,407.6928,737,501,036.9111,200,545,629.230.00193,257,245,393.54193,257,245,393.54443,339,158,106.55432,138,612,477.32
20-3018,682,769.10400,213,325,271.2918,050,807.99306,306,840,939.72631,961.1112,033,622,782.320.00171,229,585,694.0517,750,974,622.05390,641,916,011.34122,680.35342,024,328.4718,092,998,950.534,455,711,498.820.0022,261,886,510.95-8,624,599,059.2447,843,087,514.4039,218,488,455.160.00245,623,939,964.22245,623,939,964.22671,252,955,099.24632,034,466,644.08
30-4018,672,149.86577,078,415,375.8517,345,729.04317,330,209,915.281,326,420.8225,714,008,148.180.00303,607,263,347.8032,279,345,493.28557,473,695,998.6391,612.68110,792,703.3732,390,138,196.657,196,012,703.230.0017,170,754,560.658,023,370,932.7868,997,278,183.8377,020,649,116.610.00276,055,302,045.73276,055,302,045.73889,084,629,352.81812,063,980,236.20
40-5018,668,577.14756,763,439,979.2616,726,874.74332,896,699,580.871,941,702.4039,819,616,097.760.00447,359,410,119.5148,917,452,736.27727,034,456,158.4174,067.68197,545,297.2849,114,998,033.5410,888,692,913.030.0014,766,786,886.3323,459,518,234.1886,641,727,356.44110,101,245,590.620.00331,734,592,125.65331,734,592,125.651,126,996,774,716.621,016,895,529,126.00
50-6018,650,640.76989,931,189,894.6815,516,885.74336,969,158,777.983,133,755.0277,168,798,107.370.00631,838,442,775.6075,493,838,437.06932,796,422,681.5542,940.79144,587,298.4875,638,425,735.5411,822,100,071.790.009,925,819,892.5253,890,505,771.22111,344,132,302.99165,234,638,074.210.00388,768,848,353.60388,768,848,353.601,422,539,710,855.701,257,305,072,781.49
60-7018,618,634.171,373,906,353,831.1913,819,487.68323,428,847,026.294,799,146.49118,947,567,514.150.00961,631,668,710.25123,708,694,962.341,291,498,586,404.87140,544.94694,761,376.27124,403,456,338.6215,155,457,015.810.004,302,577,715.89104,945,421,606.92144,638,067,601.82249,583,489,208.740.00419,105,584,218.75419,105,584,218.751,832,722,675,681.551,583,139,186,472.81
70-8018,707,895.911,833,709,539,446.0712,354,290.91304,791,042,923.176,353,605.01197,796,151,273.890.001,359,288,574,405.43181,583,391,733.671,696,043,211,849.4836,203.2757,735,796.98181,641,127,530.6516,483,136,436.610.001,649,920,986.44163,508,070,107.60188,179,645,347.72351,687,715,455.320.00536,370,583,517.04536,370,583,517.042,416,187,978,139.312,064,500,262,683.99
80-9018,670,614.442,591,677,483,061.179,719,772.73254,995,462,030.688,950,841.71305,476,432,665.990.002,040,815,784,255.74304,718,959,799.942,384,384,337,008.0393,945.0986,414,235.92304,805,374,035.8621,581,908,531.43128,015.251,221,442,127.76282,002,151,391.91266,380,010,449.81548,382,161,841.720.00562,185,284,281.75562,185,284,281.753,273,860,018,339.942,725,477,856,498.21
90-10018,667,911.165,851,843,079,293.057,321,602.23196,216,150,562.6111,346,308.93443,951,944,399.350.005,205,703,719,149.251,121,127,207,052.895,537,578,050,437.54135,049.06949,704,379.331,122,076,911,432.2218,020,602,143.7013,042,525,118.62899,088,828.171,116,199,745,578.96425,918,311,090.891,542,118,056,669.860.00841,685,384,636.44841,685,384,636.446,969,100,162,873.505,426,982,106,203.64
ALL186,614,949.5914,704,699,413,854.35147,650,137.892,891,352,972,917.3438,964,811.701,229,071,763,963.700.0011,188,279,723,708.391,911,748,893,331.6013,840,025,072,602.02772,703.232,596,586,022.901,914,345,479,354.50106,942,229,769.5913,042,653,133.86105,430,906,759.651,715,014,995,959.121,379,983,415,597.083,094,998,411,556.200.003,837,087,236,928.373,837,087,236,928.3719,176,835,420,360.8616,081,837,008,804.66
90-959,318,378.901,769,807,229,747.484,324,064.79115,842,859,874.204,994,314.11176,094,242,199.930.001,479,359,800,805.03249,173,216,896.201,650,215,440,831.2530,351.0876,963,136.21249,250,180,032.4110,006,539,064.43132,755,068.73495,732,022.70238,880,664,014.01173,291,626,545.24412,172,290,559.250.00369,785,944,110.83369,785,944,110.832,230,395,919,889.601,818,223,629,330.35
95-997,483,174.912,132,923,087,873.792,566,464.1468,213,027,033.904,916,710.77194,910,109,134.420.001,870,660,131,011.91357,174,963,268.801,994,617,443,526.3641,443.41196,023,568.93357,370,986,837.747,945,664,437.612,198,192,296.19248,346,533.44351,375,168,162.87175,289,585,257.14526,664,753,420.010.00408,458,487,776.62408,458,487,776.622,673,202,472,955.452,146,537,719,535.44
Top 1%1,866,357.351,949,112,761,671.78431,073.3012,160,263,654.511,435,284.0572,947,593,064.990.001,855,683,787,332.31514,779,026,887.881,892,745,166,079.9363,254.57676,717,674.19515,455,744,562.0768,398,641.6610,711,577,753.70155,010,272.03525,943,913,402.0877,337,099,288.52603,281,012,690.600.0063,440,952,748.9963,440,952,748.992,065,501,770,028.461,462,220,757,337.86
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_8tax_cut_8perc_cut_8tax_inc_8perc_inc_8mean_8tot_change_8share_of_change_8ubi_8benefit_cost_total_8benefit_value_total_8pc_aftertaxinc_8
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p18,624,694.4647,464.660.25343,250.041.840.366,637,664.740.660.0042,300,472,391.6542,300,472,391.650.81
10-2018,651,062.5881,199.550.44395,831.122.120.346,258,429.050.620.00193,257,245,393.54193,257,245,393.540.65
20-3018,682,769.1049,958.520.27872,280.834.671.9837,073,427.663.660.00245,623,939,964.22245,623,939,964.220.76
30-4018,672,149.8632,780.090.181,518,137.808.133.6968,890,527.016.800.00276,055,302,045.73276,055,302,045.730.85
40-5018,668,577.144,169.550.02908,603.544.872.2041,054,266.234.050.00331,734,592,125.65331,734,592,125.650.82
50-6018,650,640.765,125.670.03942,770.835.053.5466,063,644.686.520.00388,768,848,353.60388,768,848,353.600.86
60-7018,618,634.170.000.001,041,461.795.593.5566,013,903.476.520.00419,105,584,218.75419,105,584,218.750.88
70-8018,707,895.919,596.290.051,543,580.898.253.4865,034,650.856.420.00536,370,583,517.04536,370,583,517.040.87
80-9018,670,614.4412,761.410.071,662,705.738.9110.54196,726,296.7019.430.00562,185,284,281.75562,185,284,281.750.94
90-10018,667,911.16172,557.490.921,583,218.268.4824.57458,723,431.5545.310.00841,685,384,636.44841,685,384,636.440.66
ALL186,614,949.59415,613.240.2210,811,840.825.795.431,012,476,241.94100.000.003,837,087,236,928.373,837,087,236,928.370.80
90-959,318,378.9012,128.850.13658,671.317.079.2285,948,499.658.490.00369,785,944,110.83369,785,944,110.830.89
95-997,483,174.91113,607.451.52518,685.826.9319.97149,419,912.5214.760.00408,458,487,776.62408,458,487,776.620.72
Top 1%1,866,357.3546,821.192.51405,861.1321.75119.67223,355,019.3822.060.0063,440,952,748.9963,440,952,748.990.30
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_8tax_cut_8perc_cut_8tax_inc_8perc_inc_8mean_8tot_change_8share_of_change_8ubi_8benefit_cost_total_8benefit_value_total_8pc_aftertaxinc_8
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,624,694.4613,225,887.9071.010.000.00-112.84-2,101,566,269.650.850.0042,300,472,391.6542,300,472,391.650.81
10-2018,651,062.5811,992,090.4664.300.000.00-285.43-5,323,641,257.222.160.00193,257,245,393.54193,257,245,393.540.65
20-3018,682,769.1012,824,708.4568.640.000.00-472.98-8,836,525,573.283.590.00245,623,939,964.22245,623,939,964.220.76
30-4018,672,149.8613,776,243.5173.780.000.00-682.42-12,742,172,156.715.180.00276,055,302,045.73276,055,302,045.730.85
40-5018,668,577.1414,158,800.0875.840.000.00-860.34-16,061,350,894.876.530.00331,734,592,125.65331,734,592,125.650.82
50-6018,650,640.7614,698,049.4778.810.000.00-1,106.47-20,636,419,489.328.380.00388,768,848,353.60388,768,848,353.600.86
60-7018,618,634.1714,814,732.3979.570.000.00-1,441.24-26,833,905,644.1310.900.00419,105,584,218.75419,105,584,218.750.88
70-8018,707,895.9114,553,228.7877.790.000.00-1,867.04-34,928,462,141.4314.190.00536,370,583,517.04536,370,583,517.040.87
80-9018,670,614.4415,459,735.7982.800.000.00-2,641.29-49,314,434,349.1120.030.00562,185,284,281.75562,185,284,281.750.94
90-10018,667,911.1615,785,436.2084.567,096.810.04-3,715.81-69,366,433,466.8228.180.00841,685,384,636.44841,685,384,636.440.66
ALL186,614,949.59141,288,913.0275.717,096.810.00-1,319.00-246,144,911,242.53100.000.003,837,087,236,928.373,837,087,236,928.370.80
90-959,318,378.907,951,260.0585.330.000.00-3,387.48-31,565,799,620.5012.820.00369,785,944,110.83369,785,944,110.830.89
95-997,483,174.916,173,052.8282.490.000.00-4,000.21-29,934,289,000.3412.160.00408,458,487,776.62408,458,487,776.620.72
Top 1%1,866,357.351,661,123.3389.007,096.810.38-4,214.81-7,866,344,845.983.200.0063,440,952,748.9963,440,952,748.990.30
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_8tax_cut_8perc_cut_8tax_inc_8perc_inc_8mean_8tot_change_8share_of_change_8ubi_8benefit_cost_total_8benefit_value_total_8pc_aftertaxinc_8
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,624,694.4613,225,887.9071.010.000.00-112.48-2,094,928,604.910.850.0042,300,472,391.6542,300,472,391.650.81
10-2018,651,062.5811,992,090.4664.300.000.00-285.10-5,317,382,828.172.170.00193,257,245,393.54193,257,245,393.540.65
20-3018,682,769.1012,824,708.4568.640.000.00-470.99-8,799,452,145.623.590.00245,623,939,964.22245,623,939,964.220.76
30-4018,672,149.8613,776,243.5173.780.000.00-678.73-12,673,281,629.705.170.00276,055,302,045.73276,055,302,045.730.85
40-5018,668,577.1414,158,800.0875.840.000.00-858.14-16,020,296,628.636.540.00331,734,592,125.65331,734,592,125.650.82
50-6018,650,640.7614,698,049.4778.810.000.00-1,102.93-20,570,355,844.658.390.00388,768,848,353.60388,768,848,353.600.86
60-7018,618,634.1714,814,732.3979.570.000.00-1,437.69-26,767,891,740.6610.920.00419,105,584,218.75419,105,584,218.750.88
70-8018,707,895.9114,553,228.7877.790.000.00-1,863.57-34,863,427,490.5814.220.00536,370,583,517.04536,370,583,517.040.87
80-9018,670,614.4415,459,735.7982.800.000.00-2,630.75-49,117,708,052.4120.040.00562,185,284,281.75562,185,284,281.750.94
90-10018,667,911.1615,785,436.2084.567,096.810.04-3,691.24-68,907,710,035.2728.110.00841,685,384,636.44841,685,384,636.440.66
ALL186,614,949.59141,288,913.0275.717,096.810.00-1,313.57-245,132,435,000.60100.000.003,837,087,236,928.373,837,087,236,928.370.80
90-959,318,378.907,951,260.0585.330.000.00-3,378.25-31,479,851,120.8512.840.00369,785,944,110.83369,785,944,110.830.89
95-997,483,174.916,173,052.8282.490.000.00-3,980.24-29,784,869,087.8212.150.00408,458,487,776.62408,458,487,776.620.72
Top 1%1,866,357.351,661,123.3389.007,096.810.38-4,095.14-7,642,989,826.603.120.0063,440,952,748.9963,440,952,748.990.30
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/response_year_9.json b/webapp/apps/taxbrain/tests/response_year_9.json index 88d6f604..aebe59d7 100644 --- a/webapp/apps/taxbrain/tests/response_year_9.json +++ b/webapp/apps/taxbrain/tests/response_year_9.json @@ -1 +1 @@ -{"aggr_1": {"payroll_tax_9": "1775826519627.76", "combined_tax_9": "3859445357163.15", "ind_tax_9": "2083618837535.38"}, "aggr_2": {"payroll_tax_9": "2625348573466.81", "combined_tax_9": "5323932210508.08", "ind_tax_9": "2698583637041.28"}, "diff_ptax_xdec": {"Top 1%_9": ["1916986.02", "1491.48", "0.08", "1686566.30", "87.98", "14171.19", "27165974024.03", "3.20", "61383334106.23", "84972092300.00", "84972092300.00", "1.56"], "80-90_9": ["19168737.18", "0.00", "0.00", "15829903.42", "82.58", "8797.56", "168638140276.62", "19.85", "591852220218.41", "611353457814.15", "611353457814.15", "13.26"], "90-95_9": ["9584836.95", "0.00", "0.00", "8148360.74", "85.01", "11563.92", "110838311976.99", "13.05", "307462707711.03", "360180991295.84", "360180991295.84", "8.93"], "ALL_9": ["191687565.87", "1491.48", "0.00", "145582030.58", "75.95", "4431.81", "849522053839.04", "100.00", "4649589965954.56", "3909037434733.55", "3909037434733.55", "20.73"], "0-10p_9": ["17703924.16", "0.00", "0.00", "13012152.73", "73.50", "366.97", "6496771337.34", "0.76", "272236537710.43", "44302958793.10", "44302958793.10", "179.15"], "0-10n_9": ["102333.55", "0.00", "0.00", "22072.88", "21.57", "320.42", "32789442.43", "0.00", "2453551823.57", "1191379736.83", "1191379736.83", "-6.77"], "50-60_9": ["19168591.50", "0.00", "0.00", "14985260.10", "78.18", "3727.97", "71459982874.17", "8.41", "482069568582.85", "389631198451.11", "389631198451.11", "29.10"], "20-30_9": ["19169006.07", "0.00", "0.00", "13483167.00", "70.34", "1555.80", "29823134483.66", "3.51", "379132462862.38", "235862194702.06", "235862194702.06", "50.51"], "40-50_9": ["19169213.66", "0.00", "0.00", "14633167.68", "76.34", "2851.36", "54658253320.14", "6.43", "446426672209.40", "337732142331.85", "337732142331.85", "34.99"], "10-20_9": ["19168614.90", "0.00", "0.00", "12509165.65", "65.26", "940.83", "18034335704.45", "2.12", "347806939946.31", "182651563765.87", "182651563765.87", "69.70"], "60-70_9": ["19168891.04", "0.00", "0.00", "15265392.95", "79.64", "4853.71", "93040171706.38", "10.95", "516990348024.50", "451884719804.97", "451884719804.97", "23.72"], "95-99_9": ["7667907.35", "0.00", "0.00", "6615468.59", "86.27", "13915.95", "106706178095.59", "12.56", "250523129796.37", "379336944143.76", "379336944143.76", "5.19"], "90-100_9": ["19169730.32", "1491.48", "0.01", "16450395.63", "85.81", "12765.46", "244710464096.62", "28.81", "619369171613.62", "824490027739.60", "824490027739.60", "5.48"], "0-10z_9": ["1362366.05", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "29346992479.21", "0.00", "0.00", "inf"], "70-80_9": ["19167862.41", "0.00", "0.00", "15392177.47", "80.30", "6366.91", "122040050952.52", "14.37", "553466511976.81", "535758379578.08", "535758379578.08", "18.47"], "30-40_9": ["19168295.03", "0.00", "0.00", "13999175.07", "73.03", "2117.45", "40587959644.72", "4.78", "408438988507.08", "294179412015.96", "294179412015.96", "41.27"]}, "diff_comb_xbin": {"$20-30K_9": ["14694031.93", "0.00", "0.00", "9883742.63", "67.26", "2121.73", "31176728590.93", "2.13", "267448202699.66", "147453631160.59", "147453631160.59", "66.95"], "<$0K_9": ["102333.55", "0.00", "0.00", "22072.88", "21.57", "319.48", "32693258.70", "0.00", "2453551823.57", "1191379736.83", "1191379736.83", "-6.77"], "$200-500K_9": ["22148768.83", "0.00", "0.00", "21374111.32", "96.50", "19824.26", "439082908439.33", "29.98", "710608709714.30", "882824915402.51", "882824915402.51", "7.98"], ">$1000K_9": ["639659.63", "297.69", "0.05", "633082.69", "98.97", "25362.43", "16223321502.38", "1.11", "20390187076.17", "20670799333.09", "20670799333.09", "0.86"], "ALL_9": ["191687565.87", "297.69", "0.00", "160727871.03", "83.85", "7639.97", "1464486853344.94", "100.00", "4649589965954.56", "3909037434733.55", "3909037434733.55", "20.73"], "=$0K_9": ["1362366.05", "0.00", "0.00", "383036.35", "28.12", "422.29", "575319581.04", "0.04", "29346992479.21", "0.00", "0.00", "inf"], "$10-20K_9": ["10474457.23", "0.00", "0.00", "8177200.81", "78.07", "1566.25", "16405631441.60", "1.12", "178268601649.57", "53575536352.76", "53575536352.76", "102.94"], "$0-10K_9": ["10889295.87", "0.00", "0.00", "8563058.06", "78.64", "880.84", "9591726912.16", "0.65", "159198666913.22", "16074515677.31", "16074515677.31", "299.94"], "$50-75K_9": ["30721604.82", "0.00", "0.00", "25276654.39", "82.28", "4823.40", "148182735553.16", "10.12", "710688818752.66", "537361363949.74", "537361363949.74", "35.22"], "$500-1000K_9": ["1903728.37", "0.00", "0.00", "1879818.39", "98.74", "25086.53", "47757943964.87", "3.26", "61571909401.54", "107213568211.81", "107213568211.81", "2.78"], "$30-40K_9": ["16396872.61", "0.00", "0.00", "11805011.98", "72.00", "3033.77", "49744350600.10", "3.40", "321052652752.90", "201755077703.06", "201755077703.06", "51.92"], "$75-100K_9": ["21503385.96", "0.00", "0.00", "18848093.38", "87.65", "6772.98", "145641950011.32", "9.94", "553777964358.60", "460812441173.48", "460812441173.48", "27.54"], "$100-200K_9": ["45194475.63", "0.00", "0.00", "41856843.02", "92.61", "11116.34", "502396947993.43", "34.31", "1308852473548.65", "1258726578568.19", "1258726578568.19", "17.77"], "$40-50K_9": ["15656585.39", "0.00", "0.00", "12025145.13", "76.81", "3683.73", "57674595495.90", "3.94", "325931234784.52", "221377627464.19", "221377627464.19", "43.25"]}, "taxcalc_version": "0.17.0", "dist2_xdec": {"Top 1%_9": ["1916986.02", "2140634736330.54", "233768.41", "7341266455.32", "1682911.44", "136487081684.89", "1264824566.03", "1995846810011.63", "583450624484.58", "2077438024654.14", "867689.45", "9876099146.81", "593326723631.39", "57967753.86", "11004271267.34", "13554501.01", "604259472643.86", "117853140006.79", "722112612650.65", "61383334106.23", "84972092300.00", "84972092300.00", "2314597555498.56", "1592484942847.91"], "80-90_9": ["19168737.18", "3402181676195.67", "10336928.12", "329617369913.83", "8821004.78", "355333909267.24", "239490836524.40", "2491857307601.94", "452673124112.88", "3186827919192.71", "885856.86", "1512269686.26", "454185393799.13", "707367012.21", "56675371.27", "144238882.63", "453390463275.55", "510009946008.91", "963400409284.47", "591852220218.41", "611353457814.15", "611353457814.15", "4248897177397.14", "3285496768112.67"], "90-95_9": ["9584836.95", "2315599541030.40", "3384159.07", "111312809475.26", "6195790.73", "275811196416.36", "124338824097.15", "1809555425724.62", "362420534433.08", "2157954645779.71", "2135941.45", "4127031851.67", "366547566284.75", "293899761.27", "836629252.88", "43595519.27", "367046700257.09", "338917388604.33", "705964088861.42", "307462707711.03", "360180991295.84", "360180991295.84", "2851032318930.14", "2145068230068.72"], "ALL_9": ["191687565.87", "20622564475244.71", "151570200.53", "3703008000928.49", "39930644.33", "1600859898516.45", "1805654789663.29", "13939177134447.42", "2696298981251.47", "19694584676997.05", "19750716.36", "52809525970.39", "2749108507221.85", "38962143814.42", "14788199807.69", "26350926173.84", "2698583637041.28", "2625348573466.81", "5323932210508.09", "4649589965954.56", "3909037434733.55", "3909037434733.55", "25799541912615.39", "20475609702107.30"], "0-10p_9": ["17703924.16", "370125624733.74", "16942533.93", "257644635352.77", "751874.57", "7954509574.70", "83646538395.36", "81637287890.53", "8394619460.37", "364471503371.30", "4589232.02", "6158743383.29", "14553362843.66", "3383374113.05", "0.00", "8121945854.63", "3048042875.97", "19585607602.46", "22633650478.44", "272236537710.43", "44302958793.10", "44302958793.10", "418414270415.53", "395780619937.09"], "0-10n_9": ["102333.55", "-33690225589.87", "12151.86", "2510211777.89", "0.00", "0.00", "961650770.57", "0.00", "0.00", "-33690225589.87", "0.00", "0.00", "0.00", "0.00", "0.00", "318796.76", "-318796.76", "102721617.43", "102402820.67", "2453551823.57", "1191379736.83", "1191379736.83", "-32398651857.47", "-32501054678.14"], "50-60_9": ["19168591.50", "1569120484184.14", "16685431.60", "443210143172.54", "2477163.48", "73893935795.00", "196656870771.35", "886239512288.44", "129193230671.99", "1522110871555.95", "702848.65", "1330912210.82", "130524142882.82", "6636075101.70", "0.00", "734396158.59", "123153671622.53", "216096352223.81", "339250023846.35", "482069568582.85", "389631198451.11", "389631198451.11", "2050840118784.94", "1711590094938.59"], "20-30_9": ["19169006.07", "798573816595.47", "18163112.58", "396823247898.35", "994847.25", "24300039022.86", "150880597670.37", "284621415097.32", "33807953321.45", "782929032016.08", "761481.54", "1806031815.91", "35613985137.36", "5153525115.44", "0.00", "4275092509.64", "26185367512.28", "90532208398.49", "116717575910.76", "379132462862.38", "235862194702.06", "235862194702.06", "1081159824404.43", "964442248493.67"], "40-50_9": ["19169213.66", "1248620102279.22", "17611056.33", "436236747740.43", "1544189.97", "43042284800.86", "181512057338.90", "625367147765.31", "82990296861.19", "1221238192349.77", "534699.37", "1265748161.32", "84256045022.51", "7192852826.97", "0.00", "1255145485.43", "75808046710.11", "165512592763.97", "241320639474.08", "446426672209.40", "337732142331.85", "337732142331.85", "1663621280422.23", "1422300640948.15"], "10-20_9": ["19168614.90", "603759350714.84", "18502841.16", "380382834170.63", "655940.88", "13331392888.34", "134063269552.34", "146246686533.54", "15633836640.76", "595149460880.06", "2082105.39", "3011030012.40", "18644866653.17", "3170969045.93", "0.00", "9034859956.32", "6439037650.92", "54506734285.87", "60945771936.79", "347806939946.31", "182651563765.87", "182651563765.87", "809265189802.91", "748319417866.12"], "60-70_9": ["19168891.04", "1986716506764.38", "15295384.09", "435327092098.74", "3865689.30", "126262540072.38", "210435332329.17", "1238048372354.69", "190088878345.97", "1908065535961.50", "710714.23", "1166049220.03", "191254927566.00", "4339448607.93", "0.00", "444839601.55", "186470639356.51", "281149260885.52", "467619900242.03", "516990348024.50", "451884719804.97", "451884719804.97", "2549040304516.66", "2081420404274.63"], "95-99_9": ["7667907.35", "2674742267160.45", "1508775.27", "47091434270.44", "6157571.83", "313055462800.03", "82271935523.05", "2236903763974.56", "503851062310.95", "2509672729415.57", "5002694.21", "19629197624.79", "523480259935.74", "246144326.30", "2890623916.20", "46992669.59", "526077746856.05", "339325366021.22", "865403112877.27", "250523129796.37", "379336944143.76", "379336944143.76", "3256810655765.92", "2391407542888.65"], "90-100_9": ["19169730.32", "7130976544521.39", "5126702.75", "165745510201.03", "14036274.00", "725353740901.29", "207875584186.23", "6042305999710.80", "1449722221228.61", "6745065399849.42", "8006325.11", "33632328623.27", "1483354549851.88", "598011841.42", "14731524436.42", "104142689.88", "1497383919757.00", "796095894632.34", "2293479814389.34", "619369171613.62", "824490027739.60", "824490027739.60", "8422440530194.63", "6128960715805.29"], "0-10z_9": ["1362366.05", "29323513160.39", "1341273.07", "31927443127.99", "20560.80", "22855107.53", "11951587296.89", "492099938.17", "52041262.42", "29304033100.13", "343174.71", "550449202.62", "602490465.04", "27170884.00", "0.00", "0.00", "575319581.04", "0.00", "575319581.04", "29346992479.21", "0.00", "0.00", "29346992479.21", "28771672898.17"], "70-80_9": ["19167862.41", "2528125665376.75", "13545581.90", "407521054123.17", "5613805.97", "202261217829.83", "223927245658.94", "1713702643423.39", "280262863374.35", "2403288639442.20", "559716.65", "884824791.53", "281147688165.88", "1598883403.39", "0.00", "205280107.37", "279343524655.12", "368575575500.20", "647919100155.32", "553466511976.81", "535758379578.08", "535758379578.08", "3212403225749.37", "2564484125594.05"], "30-40_9": ["19168295.03", "988731416308.59", "18007203.14", "416061711351.12", "1149293.33", "29103473256.42", "164253219168.78", "428658661843.28", "53479915971.47", "969824314867.79", "574561.83", "1491138862.94", "54971054834.41", "6154465862.37", "0.00", "2030666131.04", "46785922841.00", "123181679547.80", "169967602388.80", "408438988507.08", "294179412015.96", "294179412015.96", "1346511650305.81", "1176544047917.02"]}, "aggr_d": {"payroll_tax_9": "849522053839.04", "combined_tax_9": "1464486853344.94", "ind_tax_9": "614964799505.90"}, "dropq_version": "0.17.0", "dist1_xdec": {"Top 1%_9": ["1916986.02", "2081413129927.92", "111085.55", "1739160788.99", "1796364.90", "140978839769.06", "1447448597.24", "1937754794593.93", "562462760799.14", "2016511139142.38", "900219.95", "9981049231.12", "572443810030.27", "45039583.85", "10929113677.06", "77743707.54", "583250140415.94", "90687165982.76", "673937306398.70", "0.00", "85226290126.50", "85226290126.50", "2241971959451.33", "1568034653052.62"], "80-90_9": ["19168737.18", "2812801326724.46", "3583610.80", "61676647378.66", "15084057.26", "509970043003.07", "239490836524.40", "2029987068006.67", "341553283216.98", "2518718875124.91", "98022.08", "232422998.84", "341785706215.82", "1488423985.85", "11826716.22", "1023264244.41", "339285844701.78", "341371805732.30", "680657650434.08", "0.00", "617598531409.69", "617598531409.69", "3581419156578.89", "2900761506144.81"], "90-95_9": ["9584836.95", "2009660903314.91", "1251071.11", "21880651091.28", "8166186.86", "325948251871.74", "124339338913.72", "1547860802149.59", "294259568028.28", "1830209155779.35", "447231.16", "951914233.56", "295211482261.84", "275398988.05", "379548455.58", "370128299.40", "294945503429.97", "228079076627.34", "523024580057.31", "0.00", "362688836747.17", "362688836747.17", "2492171629069.53", "1969147049012.22"], "ALL_9": ["191687565.87", "15990191432717.49", "85908311.31", "1146915119958.57", "85431722.68", "2492162891664.49", "1814230959630.09", "11353581352575.27", "2171798750447.66", "14558568104522.96", "5598615.96", "26377750723.96", "2198176501171.62", "33347480305.10", "13930953743.96", "95141137075.09", "2083618837535.38", "1775826519627.76", "3859445357163.15", "0.00", "3985800877674.31", "3985800877674.31", "20818778592364.67", "16959333235201.52"], "0-10p_9": ["17703924.16", "97906301485.28", "14564177.49", "123377786880.90", "359681.33", "4156537505.45", "83646538395.36", "6499473354.23", "513622293.99", "95457904512.65", "8818.56", "5803550.29", "519425844.28", "162228084.78", "0.00", "10664260221.24", "-10307062461.75", "13088836265.13", "2781773803.38", "0.00", "45920564485.31", "45920564485.31", "144564167190.61", "141782393387.23"], "0-10n_9": ["102333.55", "-36140329121.46", "0.00", "1142662406.48", "0.00", "0.00", "961650770.57", "0.00", "0.00", "-36140329121.46", "0.00", "0.00", "0.00", "0.00", "0.00", "222613.03", "-222613.03", "69932175.00", "69709561.97", "0.00", "1265673455.99", "1265673455.99", "-34790856391.11", "-34860565953.08"], "50-60_9": ["19168591.50", "1088479711928.51", "8718671.89", "125827393137.70", "9090298.77", "197394755961.67", "196656870771.35", "634502007547.95", "86758647750.48", "966505151375.06", "38648.75", "119954790.13", "86878602540.60", "6313922552.27", "0.00", "7210250518.15", "73354429470.19", "144636369349.64", "217990798819.83", "0.00", "398997394141.53", "398997394141.53", "1543768749856.76", "1325777951036.93"], "20-30_9": ["19169006.07", "420622873805.74", "11428903.08", "149199390710.13", "4445450.31", "67500394553.81", "150880597670.37", "165412111269.68", "18683444937.47", "378545463154.78", "40543.44", "62681790.00", "18746126727.47", "2445062225.68", "0.00", "20990468571.91", "-4689404070.12", "60709073914.83", "56019669844.71", "0.00", "244366461248.81", "244366461248.81", "696796491009.25", "640776821164.54"], "40-50_9": ["19169213.66", "803700730676.62", "10179932.76", "139437797746.48", "7221116.91", "135213507270.47", "181512057338.90", "427524655692.42", "53524312323.47", "719417742171.72", "30355.41", "118833273.25", "53643145596.72", "4880957570.38", "0.00", "11707244605.49", "37054943420.85", "110854339443.84", "147909282864.69", "0.00", "348007882205.60", "348007882205.60", "1201577805185.35", "1053668522320.66"], "10-20_9": ["19168614.90", "256244472985.32", "11466031.87", "151626937375.81", "3105508.16", "39555199277.98", "134063269552.34", "67679076549.11", "6665809583.90", "231484816180.51", "53314.49", "45173470.42", "6710983054.32", "1109616860.40", "0.00", "20473184896.20", "-14871818702.29", "36472398581.42", "21600579879.13", "0.00", "192481395457.97", "192481395457.97", "462562975913.27", "440962396034.14"], "60-70_9": ["19168891.04", "1471189392659.23", "7315342.81", "109561752519.76", "10908541.87", "276764495379.65", "210435332329.17", "925755474263.66", "136395932531.02", "1302130951455.80", "30165.23", "118524333.71", "136514456864.74", "7319219191.12", "0.00", "4070667136.73", "125124570536.89", "188109089179.14", "313233659716.03", "0.00", "460564369708.12", "460564369708.12", "1995621339641.64", "1682387679925.62"], "95-99_9": ["7667907.35", "2426271342681.51", "664405.57", "12152509298.35", "6842151.28", "331803795075.28", "90664966642.07", "1999858802964.91", "434011966806.22", "2255955413105.37", "3885915.20", "14581290447.41", "448593257253.64", "190768682.15", "2610464895.09", "339776674.93", "450673176791.65", "232619187925.62", "683292364717.28", "0.00", "381072263853.88", "381072263853.88", "2956704591292.94", "2273412226575.66"], "90-100_9": ["19169730.32", "6517345375924.34", "2026562.23", "35772321178.62", "16804703.04", "798730886716.08", "216451754153.02", "5485474399708.43", "1290734295633.64", "6102675708027.10", "5233366.31", "25514253912.10", "1316248549545.74", "511207254.05", "13919127027.74", "787648681.86", "1328868820637.57", "551385430535.72", "1880254251173.29", "0.00", "828987390727.55", "828987390727.55", "7690848179813.80", "5810593928640.51"], "0-10z_9": ["1362366.05", "-23479318.82", "0.00", "14518744546.29", "0.00", "0.00", "11951587296.89", "0.00", "0.00", "-23479318.82", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "70-80_9": ["19167862.41", "1976188803303.80", "5529835.26", "87649259300.91", "12862803.41", "371163344569.03", "223927245658.94", "1333559029400.89", "203615373405.32", "1755388730345.73", "38681.28", "97768776.71", "203713142182.04", "5780356136.35", "0.00", "1978555572.05", "195954230473.64", "246535524547.67", "442489755021.31", "0.00", "543518809005.52", "543518809005.52", "2607168078837.38", "2164678323816.07"], "30-40_9": ["19168295.03", "581876251664.46", "11095243.12", "147124426776.83", "5549561.62", "91713727427.28", "164253219168.78", "277188056782.24", "33354028771.38", "524406570614.98", "26700.41", "62333828.50", "33416362599.89", "3336486444.22", "0.00", "16235370014.01", "13844506141.66", "82593719903.08", "96438226044.74", "0.00", "304092405828.25", "304092405828.25", "929242504728.84", "832804278684.10"]}, "diff_comb_xdec": {"Top 1%_9": ["1916986.02", "297.69", "0.02", "1903152.76", "99.28", "25131.10", "48175972927.91", "3.29", "61383334106.23", "84972092300.00", "84972092300.00", "1.56"], "80-90_9": ["19168737.18", "0.00", "0.00", "18231189.26", "95.11", "14750.20", "282742758850.39", "19.31", "591852220218.41", "611353457814.15", "611353457814.15", "13.26"], "90-95_9": ["9584836.95", "0.00", "0.00", "9261702.32", "96.63", "19086.35", "182939508804.11", "12.49", "307462707711.03", "360180991295.84", "360180991295.84", "8.93"], "ALL_9": ["191687565.87", "297.69", "0.00", "160727871.03", "83.85", "7639.97", "1464486853344.94", "100.00", "4649589965954.56", "3909037434733.55", "3909037434733.55", "20.73"], "0-10p_9": ["17703924.16", "0.00", "0.00", "14130714.74", "79.82", "1121.33", "19851876675.06", "1.36", "272236537710.43", "44302958793.10", "44302958793.10", "179.15"], "0-10n_9": ["102333.55", "0.00", "0.00", "22072.88", "21.57", "319.48", "32693258.70", "0.00", "2453551823.57", "1191379736.83", "1191379736.83", "-6.77"], "50-60_9": ["19168591.50", "0.00", "0.00", "16616398.31", "86.69", "6325.93", "121259225026.52", "8.28", "482069568582.85", "389631198451.11", "389631198451.11", "29.10"], "20-30_9": ["19169006.07", "0.00", "0.00", "14029238.81", "73.19", "3166.46", "60697906066.05", "4.14", "379132462862.38", "235862194702.06", "235862194702.06", "50.51"], "40-50_9": ["19169213.66", "0.00", "0.00", "15890676.77", "82.90", "4872.99", "93411356609.39", "6.38", "446426672209.40", "337732142331.85", "337732142331.85", "34.99"], "10-20_9": ["19168614.90", "0.00", "0.00", "13052766.69", "68.09", "2052.58", "39345192057.66", "2.69", "347806939946.31", "182651563765.87", "182651563765.87", "69.70"], "60-70_9": ["19168891.04", "0.00", "0.00", "17295134.46", "90.23", "8054.00", "154386240526.00", "10.54", "516990348024.50", "451884719804.97", "451884719804.97", "23.72"], "95-99_9": ["7667907.35", "0.00", "0.00", "7413095.31", "96.68", "23749.65", "182110081484.03", "12.44", "250523129796.37", "379336944143.76", "379336944143.76", "5.19"], "90-100_9": ["19169730.32", "297.69", "0.00", "18577950.39", "96.91", "21556.15", "413225563216.05", "28.22", "619369171613.62", "824490027739.60", "824490027739.60", "5.48"], "0-10z_9": ["1362366.05", "0.00", "0.00", "383036.35", "28.12", "422.29", "575319581.04", "0.04", "29346992479.21", "0.00", "0.00", "inf"], "70-80_9": ["19167862.41", "0.00", "0.00", "17681668.73", "92.25", "10717.38", "205429345134.01", "14.03", "553466511976.81", "535758379578.08", "535758379578.08", "18.47"], "30-40_9": ["19168295.03", "0.00", "0.00", "14817023.64", "77.30", "3835.99", "73529376344.06", "5.02", "408438988507.08", "294179412015.96", "294179412015.96", "41.27"]}, "diff_ptax_xbin": {"$20-30K_9": ["14694031.93", "0.00", "0.00", "9486106.45", "64.56", "977.58", "14364640126.87", "1.69", "267448202699.66", "147453631160.59", "147453631160.59", "66.95"], "<$0K_9": ["102333.55", "0.00", "0.00", "22072.88", "21.57", "320.42", "32789442.43", "0.00", "2453551823.57", "1191379736.83", "1191379736.83", "-6.77"], "$200-500K_9": ["22148768.83", "0.00", "0.00", "18854218.14", "85.13", "11868.16", "262865143848.13", "30.94", "710608709714.30", "882824915402.51", "882824915402.51", "7.98"], ">$1000K_9": ["639659.63", "1491.48", "0.23", "573054.88", "89.59", "13975.95", "8939852694.01", "1.05", "20390187076.17", "20670799333.09", "20670799333.09", "0.86"], "ALL_9": ["191687565.87", "1491.48", "0.00", "145582030.58", "75.95", "4431.81", "849522053839.04", "100.00", "4649589965954.56", "3909037434733.55", "3909037434733.55", "20.73"], "=$0K_9": ["1362366.05", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "29346992479.21", "0.00", "0.00", "inf"], "$10-20K_9": ["10474457.23", "0.00", "0.00", "7797244.56", "74.44", "660.44", "6917758429.08", "0.81", "178268601649.57", "53575536352.76", "53575536352.76", "102.94"], "$0-10K_9": ["10889295.87", "0.00", "0.00", "7697640.01", "70.69", "209.74", "2283927873.49", "0.27", "159198666913.22", "16074515677.31", "16074515677.31", "299.94"], "$50-75K_9": ["30721604.82", "0.00", "0.00", "23327740.42", "75.93", "2804.55", "86160238905.17", "10.14", "710688818752.66", "537361363949.74", "537361363949.74", "35.22"], "$500-1000K_9": ["1903728.37", "0.00", "0.00", "1640864.46", "86.19", "14437.31", "27484725496.03", "3.24", "61571909401.54", "107213568211.81", "107213568211.81", "2.78"], "$30-40K_9": ["16396872.61", "0.00", "0.00", "11365873.93", "69.32", "1470.09", "24104832146.07", "2.84", "321052652752.90", "201755077703.06", "201755077703.06", "51.92"], "$75-100K_9": ["21503385.96", "0.00", "0.00", "16897494.41", "78.58", "4012.63", "86285096905.58", "10.16", "553777964358.60", "460812441173.48", "460812441173.48", "27.54"], "$100-200K_9": ["45194475.63", "0.00", "0.00", "36487286.02", "80.73", "6617.51", "299074862141.58", "35.21", "1308852473548.65", "1258726578568.19", "1258726578568.19", "17.77"], "$40-50K_9": ["15656585.39", "0.00", "0.00", "11432434.42", "73.02", "1980.52", "31008185830.59", "3.65", "325931234784.52", "221377627464.19", "221377627464.19", "43.25"]}, "dist2_xbin": {"$20-30K_9": ["14694031.93", "470581951791.47", "14171185.28", "292506771740.04", "515317.49", "10810691949.58", "103278498682.09", "118548674677.39", "12747657058.71", "463672625504.87", "1235998.57", "1988653480.91", "14736310539.62", "2490355314.82", "0.00", "6574799135.09", "5671156089.71", "43429194982.99", "49100351072.70", "267448202699.66", "147453631160.59", "147453631160.59", "637056753191.54", "587956402118.84"], "<$0K_9": ["102333.55", "-33690225589.87", "12151.86", "2510211777.89", "0.00", "0.00", "961650770.57", "0.00", "0.00", "-33690225589.87", "0.00", "0.00", "0.00", "0.00", "0.00", "318796.76", "-318796.76", "102721617.43", "102402820.67", "2453551823.57", "1191379736.83", "1191379736.83", "-32398651857.47", "-32501054678.14"], "$200-500K_9": ["22148768.83", "5800482994269.64", "7363261.14", "238436026681.24", "14775052.39", "682915987715.85", "274826729507.11", "4617353940992.22", "959609194763.62", "5418705354785.14", "7023169.94", "21773923780.43", "981383118544.04", "679090594.61", "3281097005.69", "103864079.25", "983881260875.87", "812901688215.59", "1796782949091.46", "710608709714.30", "882824915402.51", "882824915402.51", "7122372969279.16", "5325590020187.70"], ">$1000K_9": ["639659.63", "1284778348676.51", "76114.73", "2342662215.02", "563420.59", "63140587920.64", "52685122.72", "1219345779572.66", "378292526525.49", "1257509475306.07", "139321.72", "2737444436.28", "381029970961.77", "14373913.01", "9034846738.28", "3259.73", "390050440527.31", "51423732767.22", "441474173294.52", "20390187076.17", "20670799333.09", "20670799333.09", "1348082863674.53", "906608690380.00"], "ALL_9": ["191687565.87", "20622564475244.71", "151570200.53", "3703008000928.49", "39930644.33", "1600859898516.45", "1805654789663.29", "13939177134447.42", "2696298981251.47", "19694584676997.05", "19750716.36", "52809525970.39", "2749108507221.85", "38962143814.42", "14788199807.69", "26350926173.84", "2698583637041.28", "2625348573466.81", "5323932210508.09", "4649589965954.56", "3909037434733.55", "3909037434733.55", "25799541912615.39", "20475609702107.30"], "=$0K_9": ["1362366.05", "29323513160.39", "1341273.07", "31927443127.99", "20560.80", "22855107.53", "11951587296.89", "492099938.17", "52041262.42", "29304033100.13", "343174.71", "550449202.62", "602490465.04", "27170884.00", "0.00", "0.00", "575319581.04", "0.00", "575319581.04", "29346992479.21", "0.00", "0.00", "29346992479.21", "28771672898.17"], "$10-20K_9": ["10474457.23", "280364062325.74", "10088854.36", "194708418126.32", "378782.08", "5601515695.11", "66449079863.01", "44787101403.98", "4474843280.33", "276214922635.38", "2934332.68", "3654767603.41", "8129610883.74", "1544040288.85", "0.00", "7506934482.59", "-921363887.70", "20862488766.11", "19941124878.40", "178268601649.57", "53575536352.76", "53575536352.76", "339079437613.99", "319138312735.59"], "$0-10K_9": ["10889295.87", "194229367508.71", "10391387.48", "134144580495.47", "492958.30", "4375898384.10", "42128975982.57", "56059491789.25", "5834659160.99", "191334405940.86", "2456650.58", "3443293214.75", "9277952375.73", "2347529552.31", "0.00", "2831776867.55", "4098645955.87", "6883717751.47", "10982363707.35", "159198666913.22", "16074515677.31", "16074515677.31", "211688888638.17", "200706524930.82"], "$50-75K_9": ["30721604.82", "1973937375165.46", "28184998.35", "694120393847.79", "2517843.12", "69518359376.88", "288641487921.70", "983613363165.81", "131046951317.18", "1929936598247.14", "856652.70", "2042846832.17", "133089798149.36", "11293785317.35", "0.00", "2084577932.27", "119711434899.74", "260930596602.59", "380642031502.32", "710688818752.66", "537361363949.74", "537361363949.74", "2634067721466.55", "2253425689964.23"], "$500-1000K_9": ["1903728.37", "1148647289108.26", "265849.52", "8544972815.98", "1637384.87", "103154155196.48", "2901792266.16", "1034617107052.14", "267556738152.94", "1097508577764.30", "1198232.51", "9751864191.58", "277308602344.53", "63596900.70", "2467279929.85", "20414368.87", "279691871004.81", "97140696444.61", "376832567449.42", "61571909401.54", "107213568211.81", "107213568211.81", "1322705228869.91", "945872661420.49"], "$30-40K_9": ["16396872.61", "660222965804.59", "15566920.65", "338135213470.41", "819878.99", "19873052151.81", "127269284650.57", "226862643125.45", "26693390526.87", "647582974146.85", "679021.68", "1562042116.78", "28255432643.65", "4196811225.64", "0.00", "3959581692.68", "20099039725.33", "73159017751.43", "93258057476.76", "321052652752.90", "201755077703.06", "201755077703.06", "899220339988.15", "805962282511.39"], "$75-100K_9": ["21503385.96", "1883758730184.97", "18392995.88", "499045830168.31", "3101206.16", "95837557321.04", "226154953942.80", "1095529646832.10", "162706011564.31", "1823134557955.06", "877683.18", "1577444839.99", "164283456404.30", "6862632128.48", "0.00", "725983732.30", "156694840543.51", "260858343097.07", "417553183640.58", "553777964358.60", "460812441173.48", "460812441173.48", "2452460601373.84", "2034907417733.26"], "$100-200K_9": ["45194475.63", "6164440248646.32", "30954382.67", "931605221345.97", "14221603.39", "523485980461.84", "530248082107.80", "4222923876560.81", "707862436831.98", "5842579620452.02", "1510754.69", "2435796983.13", "710298233815.11", "4572476225.10", "4976133.86", "581373385.39", "705149360338.48", "903503198526.74", "1608652558865.21", "1308852473548.65", "1258726578568.19", "1258726578568.19", "7799410496556.94", "6190757937691.72"], "$40-50K_9": ["15656585.39", "765487854192.52", "14760825.54", "334980255116.05", "886636.15", "22123257235.60", "130789981549.33", "319043409337.45", "39422530806.61", "750791756749.10", "495723.40", "1290999288.36", "40713530094.96", "4870281469.54", "0.00", "1961298441.35", "33881950184.07", "94153176943.57", "128035127127.64", "325931234784.52", "221377627464.19", "221377627464.19", "1036448271340.88", "908413144213.24"]}, "diff_itax_xdec": {"Top 1%_9": ["1916986.02", "7442.91", "0.39", "1895364.92", "98.87", "10959.91", "21009998903.87", "3.42", "61383334106.23", "84972092300.00", "84972092300.00", "1.56"], "80-90_9": ["19168737.18", "56878.14", "0.30", "18110053.10", "94.48", "5952.64", "114104618573.77", "18.55", "591852220218.41", "611353457814.15", "611353457814.15", "13.26"], "90-95_9": ["9584836.95", "16946.88", "0.18", "9220817.87", "96.20", "7522.42", "72101196827.12", "11.72", "307462707711.03", "360180991295.84", "360180991295.84", "8.93"], "ALL_9": ["191687565.87", "726570.58", "0.38", "155424708.52", "81.08", "3208.16", "614964799505.90", "100.00", "4649589965954.56", "3909037434733.55", "3909037434733.55", "20.73"], "0-10p_9": ["17703924.16", "411258.35", "2.32", "11042968.03", "62.38", "754.36", "13355105337.72", "2.17", "272236537710.43", "44302958793.10", "44302958793.10", "179.15"], "0-10n_9": ["102333.55", "902.89", "0.88", "0.00", "0.00", "-0.94", "-96183.73", "-0.00", "2453551823.57", "1191379736.83", "1191379736.83", "-6.77"], "50-60_9": ["19168591.50", "19741.85", "0.10", "16454939.78", "85.84", "2597.96", "49799242152.34", "8.10", "482069568582.85", "389631198451.11", "389631198451.11", "29.10"], "20-30_9": ["19169006.07", "24662.27", "0.13", "13595525.86", "70.92", "1610.66", "30874771582.39", "5.02", "379132462862.38", "235862194702.06", "235862194702.06", "50.51"], "40-50_9": ["19169213.66", "20260.74", "0.11", "15685923.86", "81.83", "2021.63", "38753103289.26", "6.30", "446426672209.40", "337732142331.85", "337732142331.85", "34.99"], "10-20_9": ["19168614.90", "86652.79", "0.45", "12432918.41", "64.86", "1111.76", "21310856353.21", "3.47", "347806939946.31", "182651563765.87", "182651563765.87", "69.70"], "60-70_9": ["19168891.04", "20065.14", "0.10", "17152697.44", "89.48", "3200.29", "61346068819.63", "9.98", "516990348024.50", "451884719804.97", "451884719804.97", "23.72"], "95-99_9": ["7667907.35", "3808.66", "0.05", "7393726.69", "96.42", "9833.70", "75403903388.44", "12.26", "250523129796.37", "379336944143.76", "379336944143.76", "5.19"], "90-100_9": ["19169730.32", "28198.45", "0.15", "18509909.48", "96.56", "8790.69", "168515099119.43", "27.40", "619369171613.62", "824490027739.60", "824490027739.60", "5.48"], "0-10z_9": ["1362366.05", "0.00", "0.00", "383036.35", "28.12", "422.29", "575319581.04", "0.09", "29346992479.21", "0.00", "0.00", "inf"], "70-80_9": ["19167862.41", "31911.18", "0.17", "17556864.83", "91.60", "4350.47", "83389294181.48", "13.56", "553466511976.81", "535758379578.08", "535758379578.08", "18.47"], "30-40_9": ["19168295.03", "26038.78", "0.14", "14499871.38", "75.65", "1718.54", "32941416699.34", "5.36", "408438988507.08", "294179412015.96", "294179412015.96", "41.27"]}, "diff_itax_xbin": {"$20-30K_9": ["14694031.93", "52832.44", "0.36", "9442288.32", "64.26", "1144.14", "16812088464.06", "2.73", "267448202699.66", "147453631160.59", "147453631160.59", "66.95"], "<$0K_9": ["102333.55", "902.89", "0.88", "0.00", "0.00", "-0.94", "-96183.73", "-0.00", "2453551823.57", "1191379736.83", "1191379736.83", "-6.77"], "$200-500K_9": ["22148768.83", "32927.81", "0.15", "21281027.26", "96.08", "7956.10", "176217764591.20", "28.65", "710608709714.30", "882824915402.51", "882824915402.51", "7.98"], ">$1000K_9": ["639659.63", "4705.76", "0.74", "628486.09", "98.25", "11386.48", "7283468808.37", "1.18", "20390187076.17", "20670799333.09", "20670799333.09", "0.86"], "ALL_9": ["191687565.87", "726570.58", "0.38", "155424708.52", "81.08", "3208.16", "614964799505.90", "100.00", "4649589965954.56", "3909037434733.55", "3909037434733.55", "20.73"], "=$0K_9": ["1362366.05", "0.00", "0.00", "383036.35", "28.12", "422.29", "575319581.04", "0.09", "29346992479.21", "0.00", "0.00", "inf"], "$10-20K_9": ["10474457.23", "111327.28", "1.06", "7366308.26", "70.33", "905.81", "9487873012.52", "1.54", "178268601649.57", "53575536352.76", "53575536352.76", "102.94"], "$0-10K_9": ["10889295.87", "333580.69", "3.06", "6132380.63", "56.32", "671.10", "7307799038.66", "1.19", "159198666913.22", "16074515677.31", "16074515677.31", "299.94"], "$50-75K_9": ["30721604.82", "29766.05", "0.10", "24934967.61", "81.16", "2018.86", "62022496648.00", "10.09", "710688818752.66", "537361363949.74", "537361363949.74", "35.22"], "$500-1000K_9": ["1903728.37", "3709.81", "0.19", "1875145.00", "98.50", "10649.22", "20273218468.85", "3.30", "61571909401.54", "107213568211.81", "107213568211.81", "2.78"], "$30-40K_9": ["16396872.61", "18131.49", "0.11", "11411896.25", "69.60", "1563.68", "25639518454.03", "4.17", "321052652752.90", "201755077703.06", "201755077703.06", "51.92"], "$75-100K_9": ["21503385.96", "23430.51", "0.11", "18659161.32", "86.77", "2760.35", "59356853105.75", "9.65", "553777964358.60", "460812441173.48", "460812441173.48", "27.54"], "$100-200K_9": ["45194475.63", "90238.55", "0.20", "41560677.37", "91.96", "4498.83", "203322085851.85", "33.06", "1308852473548.65", "1258726578568.19", "1258726578568.19", "17.77"], "$40-50K_9": ["15656585.39", "25017.30", "0.16", "11749334.06", "75.04", "1703.21", "26666409665.31", "4.34", "325931234784.52", "221377627464.19", "221377627464.19", "43.25"]}, "dist1_xbin": {"$20-30K_9": ["14694031.93", "203390421460.72", "8653419.47", "116091070828.98", "2467142.38", "31827282747.43", "103278498682.09", "56755627521.30", "5596381519.04", "183454389976.40", "44978.95", "41685142.01", "5638066661.05", "927348778.05", "0.00", "15851650257.35", "-11140932374.35", "29064554856.12", "17923622481.77", "0.00", "154867754938.63", "154867754938.63", "370097026575.39", "352173404093.63"], "<$0K_9": ["102333.55", "-36140329121.46", "0.00", "1142662406.48", "0.00", "0.00", "961650770.57", "0.00", "0.00", "-36140329121.46", "0.00", "0.00", "0.00", "0.00", "0.00", "222613.03", "-222613.03", "69932175.00", "69709561.97", "0.00", "1265673455.99", "1265673455.99", "-34790856391.11", "-34860565953.08"], "$200-500K_9": ["22148768.83", "5093907810123.70", "2771971.31", "48767259403.16", "18946036.49", "789591080892.66", "282160996069.98", "3998237619250.83", "793379034739.28", "4666659502452.38", "3937856.65", "13274749059.15", "806653783798.43", "644924408.09", "2524478709.08", "869841814.75", "807663496284.67", "550036544367.46", "1357700040652.13", "0.00", "888254188805.38", "888254188805.38", "6289764786923.47", "4932064746271.34"], ">$1000K_9": ["639659.63", "1265319571658.29", "40071.92", "621702269.15", "595694.23", "64449992507.23", "53540449.45", "1200338022399.97", "371056840167.13", "1237073411662.19", "142976.21", "2714606556.35", "373771446723.48", "14374593.27", "9009910911.19", "11322.45", "382766971718.94", "42483880073.20", "425250851792.14", "0.00", "20729418839.64", "20729418839.64", "1324159671380.10", "898908819587.96"], "ALL_9": ["191687565.87", "15990191432717.49", "85908311.31", "1146915119958.57", "85431722.68", "2492162891664.49", "1814230959630.09", "11353581352575.27", "2171798750447.66", "14558568104522.96", "5598615.96", "26377750723.96", "2198176501171.62", "33347480305.10", "13930953743.96", "95141137075.09", "2083618837535.38", "1775826519627.76", "3859445357163.15", "0.00", "3985800877674.31", "3985800877674.31", "20818778592364.67", "16959333235201.53"], "=$0K_9": ["1362366.05", "-23479318.82", "0.00", "14518744546.29", "0.00", "0.00", "11951587296.89", "0.00", "0.00", "-23479318.82", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00", "0.00"], "$10-20K_9": ["10474457.23", "102127381644.43", "7838693.34", "84071294361.91", "807811.43", "9615467265.97", "66449079863.01", "10523493652.75", "930148263.62", "96177593560.27", "13750.49", "6867039.54", "937015303.16", "192797070.48", "0.00", "11153455132.90", "-10409236900.22", "13944730337.02", "3535493436.81", "0.00", "56983748281.05", "56983748281.05", "160792089646.44", "157256596209.63"], "$0-10K_9": ["10889295.87", "35034003973.66", "9034450.79", "68309315896.45", "48026.81", "471953609.21", "42128975982.57", "2319365708.43", "168672412.01", "34793121421.09", "0.00", "0.00", "168672412.01", "71940920.61", "0.00", "3305884574.18", "-3209153082.79", "4599789877.98", "1390636795.19", "0.00", "16298276608.83", "16298276608.83", "51575322097.89", "50184685302.69"], "$50-75K_9": ["30721604.82", "1265652846835.46", "16405922.56", "224268680025.39", "11347858.38", "212641701452.40", "288641487921.70", "671393114890.42", "84491249525.63", "1133741608521.78", "45934.36", "157265159.72", "84648514685.35", "7613676103.75", "0.00", "19345900329.86", "57688938251.74", "174770357697.42", "232459295949.16", "0.00", "553672196228.30", "553672196228.30", "1898919310482.45", "1666460014533.29"], "$500-1000K_9": ["1903728.37", "1088684366104.08", "117835.00", "1984730112.56", "1770725.50", "108100113746.69", "4142840343.35", "975536196954.00", "247549421023.90", "1036453417497.86", "1200250.19", "9630985838.29", "257180406862.19", "47557922.30", "2396564123.69", "110760527.61", "259418652535.96", "69655970948.58", "329074623484.55", "0.00", "107579215753.69", "107579215753.69", "1249341362761.62", "920266739277.07"], "$30-40K_9": ["16396872.61", "340099386271.21", "9822489.67", "128665843148.69", "3624159.43", "54346850194.86", "127269284650.57", "129254306665.89", "14377863951.44", "306632348159.47", "34095.69", "40528868.41", "14418392819.85", "1948404459.71", "0.00", "18010467088.84", "-5540478728.70", "49054185605.36", "43513706876.66", "0.00", "208750413908.25", "208750413908.25", "574036021621.34", "530522314744.68"], "$75-100K_9": ["21503385.96", "1331575975833.66", "9371430.05", "136563517522.68", "10746998.14", "244924634901.12", "226154953942.80", "794290025995.15", "111456003823.69", "1180539927238.16", "45135.27", "145976425.49", "111601980249.18", "7495096509.01", "0.00", "6768896302.40", "97337987437.77", "174573246191.49", "271911233629.25", "0.00", "471144240384.40", "471144240384.40", "1867394593174.97", "1595483359545.72"], "$100-200K_9": ["45194475.63", "4859721733985.24", "12744326.26", "202262314681.59", "30714839.60", "906758876844.11", "530248082107.80", "3312353412102.88", "518642904224.83", "4322716034191.86", "103783.12", "293681627.31", "518936585852.15", "11838913632.83", "0.00", "5270397732.69", "501827274486.63", "604428336385.15", "1106255610871.78", "0.00", "1276661458680.21", "1276661458680.21", "6362995095345.63", "5256739484473.85"], "$40-50K_9": ["15656585.39", "440841743267.31", "9107700.94", "119647984755.22", "4362430.29", "69434937502.82", "130789981549.33", "202580167433.65", "24150230797.08", "396490558281.78", "29855.03", "71405007.69", "24221635804.77", "2552445906.97", "0.00", "14453649379.03", "7215540518.76", "63144991112.98", "70360531631.74", "0.00", "229594291789.95", "229594291789.95", "704494168746.48", "634133637114.74"]}} \ No newline at end of file +{"download_only": {"aggr_d": ",0_9\nind_tax,1249448231.18788\npayroll_tax,-257467549482.9514\ncombined_tax,-256218101251.7635\n", "aggr_1": ",0_9\nind_tax,2003032995549.8958\npayroll_tax,1701198953551.434\ncombined_tax,3704231949101.3296\n", "aggr_2": ",0_9\nind_tax,2004282443781.0835\npayroll_tax,1443731404068.483\ncombined_tax,3448013847849.5664\n", "dist1_xbin": ",s006_9,c00100_9,num_returns_StandardDed_9,standard_9,num_returns_ItemDed_9,c04470_9,c04600_9,c04800_9,taxbc_9,c62100_9,num_returns_AMT_9,c09600_9,c05800_9,c07100_9,othertaxes_9,refund_9,iitax_9,payrolltax_9,combined_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,expanded_income_9,aftertax_income_9\n<$0K,66308.5320416195,-9736669613.062359,66308.5320416195,924852896.3050811,0.0,0.0,774623539.158841,0.0,0.0,-9736669613.062359,0.0,0.0,0.0,0.0,0.0,945865.7714417798,-945865.7714417798,24294439.829682402,23348574.058240622,0.0,1157123558.0725532,1157123558.0725532,-8477145933.123472,-8500494507.181711\n=$0K,1184582.574210356,0.0,1184582.574210356,11682028871.430813,0.0,0.0,10800329645.51211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10524169.38544442,32230254199.417953,10466742.860526234,62198928487.59909,57426.52491818562,329152124.83667254,38857665954.54071,2062968778.7376757,148828598.85880905,31918747132.328636,0.0,0.0,148828598.85880905,40807711.26161401,0.0,3246129178.7857385,-3138108291.1885433,4395784693.427352,1257676402.2388082,0.0,15187351853.741901,15187351853.741901,47923255645.35155,46665579243.11275\n$10-20K,9856950.906202542,101948773629.034,9179893.30557463,77386809859.9953,677057.6006279127,7776349086.621385,61583122242.433075,9872795978.98888,872018538.2209723,96059223775.44286,0.0,0.0,872018538.2209723,183127007.9671957,0.0,11303846398.240421,-10614954867.986645,13937819124.322428,3322864256.3357844,0.0,49055620859.04323,49055620859.04323,151794232726.41675,148471368470.081\n$20-30K,14187091.324065479,184742921210.9544,12167551.777907941,112230951792.57239,2019539.5461575375,22206331694.040462,97384235179.6995,55538880844.80095,5298104107.087854,169087483924.64313,20390.536932938514,9676911.567249004,5307781018.655103,712563416.0784806,0.0,15413853707.654484,-10818636105.077862,25850812384.501137,15032176279.423279,0.0,161448146979.87134,161448146979.87134,355525727573.51324,340493551294.08997\n$30-40K,15494557.04744919,321022987824.0409,12033579.270639813,117442192725.2838,3460977.7768093757,50403739077.00493,116419019828.14478,122776717252.14563,13747019763.155804,290570586208.83154,98523.21821251856,256827121.3958775,14003846884.551683,1679204551.1329274,0.0,17066768581.962921,-4742126248.544167,45682799091.20668,40940672842.662506,0.0,196876072321.7844,196876072321.7844,542632048805.5,501691375962.83746\n$40-50K,15151582.942679837,429751195340.52673,10591012.551654156,108952538870.15897,4560570.391025679,71042944790.22061,123203909443.81398,196873555096.67987,23111439624.506653,384610814090.5923,122453.72148138819,128611736.79310474,23240051361.29976,2444168287.747713,0.0,13051215848.87154,7744667224.680509,61234684222.22052,68979351446.90103,0.0,218910979555.80148,218910979555.80148,680457898671.7947,611478547224.8936\n$50-75K,33489598.760863125,1369131231092.7476,20584769.59238345,236496720381.91483,12904829.168479674,229687729180.90936,311407407345.0187,727073031473.6935,91944678945.78174,1231025522152.914,92263.7637194516,224995609.61692876,92169674555.39867,7956030321.927453,0.0,22176833191.750374,62036811041.72084,187001298896.20068,249038109937.9215,0.0,615527631412.6934,615527631412.6934,2066325020458.848,1817286910520.9265\n$75-100K,21359107.452950597,1309366851593.588,10449774.180772036,129232514507.23474,10909333.272178564,240833188811.08978,219918493478.41302,792240124170.5928,111684616808.86449,1164118158212.4985,60172.480113347134,151689861.3647395,111836306670.22923,6374184137.860735,0.0,6625322796.906549,98836799735.46194,173876023770.3548,272712823505.81674,0.0,474177131755.8112,474177131755.8112,1854302730188.5066,1581589906682.69\n$100-200K,44684125.61625926,4849202646410.14,14327762.307819923,199061227370.6549,30356363.308439337,884394488872.565,501909275482.9583,3351924929244.508,530252794998.086,4325428468133.03,145626.9366247488,608270641.8093886,530861065639.8954,10270125053.60124,0.0,3625614807.7668376,516965325778.5273,589660203322.5784,1106625529101.1055,0.0,1262739922328.8318,1262739922328.8318,6324337753212.252,5217712224111.146\n$200-500K,20873881.620580718,4604647724074.335,3256141.429417438,46102463359.01967,17617740.191163287,711778168733.4597,263282787670.3687,3610082315603.458,716713444030.5359,4224320008091.0107,3612761.9389928174,11720177890.69149,728433621921.2273,607367553.1724256,2370247334.140075,996652977.2252324,729199848724.9697,499404810236.6516,1228604658961.621,0.0,963592886622.6903,963592886622.6903,5866322836146.527,4637718177184.906\n$500-1000K,1694025.7463737084,967293806761.4767,62424.163373379575,1047798797.1978714,1631601.5830003289,95155083479.66891,3596539479.99627,867710677722.3513,220163908204.6954,921977923975.6399,1099261.7762409835,8717150984.051321,228881059188.7467,33842142.89550162,2436633359.2542353,140191748.64349788,231143658656.46198,61700080071.25619,292843738727.71814,0.0,88578415674.78537,88578415674.78537,1092314638093.4988,799470899365.7808\n>$1000K,568268.8108791691,1211284380718.8242,57152.2602366448,957119201.2990438,511116.5506425244,60391083597.69916,24186994.01102433,1149911990925.8152,375063015509.48224,1186171197833.2188,129895.92173622653,2347892138.9142084,377410907648.3965,10976079.119487954,9020724197.36503,0.0,386420655766.64197,38430343298.88481,424850999065.52673,0.0,11713119098.868309,11713119098.868309,1258146018396.138,833295019330.6111\nALL,189134250.72000003,15370886103242.023,104427694.80655761,1103716147120.6665,84706555.9134424,2373998259448.116,1749161596284.0688,10886067987091.771,2088999869129.2756,14015551463917.09,5381350.29405442,24165292896.204308,2113165162025.48,30312396262.764774,13827604890.75934,93647375103.57904,2003032995549.8955,1701198953551.434,3704231949101.3296,0.0,4058964402021.995,4058964402021.995,20231605013985.223,16527373064883.896\n", "dist2_xbin": ",s006_9,c00100_9,num_returns_StandardDed_9,standard_9,num_returns_ItemDed_9,c04470_9,c04600_9,c04800_9,taxbc_9,c62100_9,num_returns_AMT_9,c09600_9,c05800_9,c07100_9,othertaxes_9,refund_9,iitax_9,payrolltax_9,combined_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,expanded_income_9,aftertax_income_9\n<$0K,66308.5320416195,-9736669613.062359,66308.5320416195,924852896.3050811,0.0,0.0,774623539.158841,0.0,0.0,-9736669613.062359,0.0,0.0,0.0,0.0,0.0,945865.7714417798,-945865.7714417798,20483547.307379283,19537681.535937503,0.0,1157123558.0725532,1157123558.0725532,-8479051379.384623,-8498589060.920559\n=$0K,1184582.574210356,0.0,1184582.574210356,11682028871.430813,0.0,0.0,10800329645.51211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n$0-10K,10524169.38544442,32230266169.617123,10466742.860526234,62198928487.59909,57426.52491818562,329152124.83667254,38857665954.54071,2062968778.7376757,148828598.85880905,31918759102.527805,0.0,0.0,148828598.85880905,40807711.26161401,0.0,3241057820.9159093,-3133036933.318714,3706251637.176526,573214703.8578115,0.0,15187351853.741901,15187351853.741901,47578501087.42531,47005286383.56749\n$10-20K,9856950.906202542,101964678345.20203,9179893.30557463,77386809859.9953,677057.6006279127,7776349086.621385,61583122242.433075,9879109169.972569,872649857.3193412,96075128491.61087,0.0,0.0,872649857.3193412,183324636.96854228,0.0,11300924470.052032,-10611599249.701237,11753883040.534292,1142283790.833058,0.0,49055620859.04323,49055620859.04323,150718169400.6907,149575885609.85764\n$20-30K,14187091.324065479,184816224655.9893,12167551.777907941,112230951792.57239,2019539.5461575375,22206290183.701263,97384235179.6995,55571139936.340614,5301515834.353388,169160855184.72556,20390.536932938514,9676911.567249004,5311192745.920637,712662852.9751794,0.0,15414780612.3992,-10816250719.45374,21806791307.97788,10990540588.52414,0.0,161448146979.87134,161448146979.87134,353577020480.28644,342586479891.7623\n$30-40K,15494557.04744919,321311863499.2174,12033579.270639813,117442192725.2838,3460977.7768093757,50401736063.40235,116419019828.14478,122946681973.42804,13768439246.478582,290861433700.67175,98523.21821251856,256827121.3958775,14025266367.874462,1681353492.8699636,0.0,17047549621.768946,-4703636746.764448,38560190134.485306,33856553387.72085,0.0,196876072321.7844,196876072321.7844,539359210594.0135,505502657206.2926\n$40-50K,15151582.942679837,430175687776.1424,10589610.129476773,108931066384.20105,4561972.813203064,71067079854.65886,123203909443.81398,197220451781.40906,23154155827.824646,385019765005.49805,122453.72148138819,128611736.79310474,23282767564.617752,2449800863.3425646,0.0,13020363720.349285,7812602980.925904,51692438629.05382,59505041609.97973,0.0,218910979555.80148,218910979555.80148,676107586451.9036,616602544841.924\n$50-75K,33489598.760863125,1369885040152.0757,20561494.479143687,236140355123.1009,12928104.281719431,230703763063.4494,311407407345.0187,727748629256.6565,92037803662.54271,1231240511712.1646,92263.7637194516,224995609.61692876,92262799272.15964,7962971075.2881775,0.0,22143504264.23021,62156323932.641266,157776305955.9005,219932629888.54175,0.0,615527631412.6934,615527631412.6934,2052435310170.9565,1832502680282.415\n$75-100K,21359107.452950597,1309914971679.739,10448863.052988002,129218564229.73341,10910244.399962598,240866982374.3344,219918493478.41302,792739412957.4834,111784148720.14264,1164641122741.4312,60172.480113347134,151689861.3647395,111935838581.50739,6377413154.289719,0.0,6612862006.321961,98945563420.8957,146677998918.3498,245623562339.24548,0.0,474177131755.8112,474177131755.8112,1841214093899.9705,1595590531560.725\n$100-200K,44684125.61625926,4850751351224.213,14327762.307819923,199061227370.6549,30356363.308439337,884386474267.9468,501909275482.9583,3353408272334.5195,530569772567.3646,4326983485305.633,145626.9366247488,608303710.7640133,531178076278.12866,10263777373.683567,0.0,3615729050.0902977,517298569854.35474,497399069146.18353,1014697639000.5383,0.0,1262739922328.8318,1262739922328.8318,6279717133686.264,5265019494685.725\n$200-500K,20873881.620580718,4605712495050.712,3256141.429417438,46102463359.01967,17617740.191163287,711765833333.5144,263273098810.0243,3611160970593.1426,717003084266.4058,4225391250219.789,3614321.840046454,11731509224.511919,728734593490.9177,608419255.9615104,2371733493.3577776,991595239.0315762,729506312489.2825,423974199726.9573,1153480512216.2397,0.0,963592886622.6903,963592886622.6903,5829668064249.389,4676187552033.148\n$500-1000K,1694025.7463737084,967726285154.8512,62424.163373379575,1047798797.1978714,1631601.5830003289,95141608053.42453,3585945366.832603,868167225655.1338,220322756511.65063,922410521111.5039,1099261.7762409835,8712502324.55279,229035258836.20343,33832435.919141345,2437032991.6364985,140191748.64349788,231298267643.27728,54095515871.58681,285393783514.8641,0.0,88578415674.78537,88578415674.78537,1088938260718.112,803544477203.2479\n>$1000K,568268.8108791691,1211555724895.5938,57152.2602366448,957119201.2990438,511116.5506425244,60383152318.29753,24186994.01102433,1150191266381.986,375173379498.64667,1186442542009.988,129895.92173622653,2347063715.6979647,377520443214.3446,10976079.119487954,9020805839.490587,0.0,386530272974.7157,36268276152.96963,422798549127.68536,0.0,11713119098.868309,11713119098.868309,1257316391209.642,834517842081.9567\nALL,189134250.72000003,15376307918990.291,104402106.14335644,1103324359098.3933,84732144.57664359,2375028420724.1875,1749141313310.5608,10891096128818.81,2090136534591.588,14020408704972.48,5382910.195108057,24171180216.264584,2114307714807.8525,30325338931.679462,13829572324.484863,93529504419.57436,2004282443781.0835,1443731404068.483,3448013847849.5664,0.0,4058964402021.995,4058964402021.995,20108150690569.27,16660136842719.701\n", "diff_itax_xbin": ",count_9,tax_cut_9,perc_cut_9,tax_inc_9,perc_inc_9,mean_9,tot_change_9,share_of_change_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,pc_aftertaxinc_9\n<$0K,66308.5320416195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1157123558.0725532,1157123558.0725532,-0.022415710751211293\n=$0K,1184582.574210356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n$0-10K,10524169.38544442,23155.680730668628,0.2200238316450358,296079.1451195495,2.813325539296672,0.481877256445808,5071357.869828922,0.4058877945673237,0.0,15187351853.741901,15187351853.741901,0.7279608352978473\n$10-20K,9856950.906202542,1603.571666379261,0.01626843515442696,152832.25688925758,1.550502364712875,0.3404316727698334,3355618.285408656,0.2685680127954074,0.0,49055620859.04323,49055620859.04323,0.7439260183011109\n$20-30K,14187091.324065479,46036.104265870454,0.3244929014292005,183746.41897917108,1.2951662520666454,0.16813775069409476,2385385.624120076,0.19091512273799724,0.0,161448146979.87134,161448146979.87134,0.6146749592519152\n$30-40K,15494557.04744919,22331.232496169534,0.14412307772196586,811557.7944666769,5.237695998546021,2.484065963412297,38489501.77971867,3.0805199302355883,0.0,196876072321.7844,196876072321.7844,0.7596864179976404\n$40-50K,15151582.942679837,29362.531985659614,0.1937918440386157,1220758.0526217937,8.05696709868573,4.4837398509716735,67935756.24539624,5.437260588284488,0.0,218910979555.80148,218910979555.80148,0.8379685011493665\n$50-75K,33489598.760863125,1201.6035263646534,0.0035879902143494194,1897614.5037607115,5.666280200341834,3.568656996275733,119512890.9204213,9.565253520491808,0.0,615527631412.6934,615527631412.6934,0.8372794451662502\n$75-100K,21359107.452950597,1256.191792292563,0.005881293471928433,1139714.6588353426,5.335965752997323,5.092145618600663,108763685.43376315,8.704937325042987,0.0,474177131755.8112,474177131755.8112,0.885224723481004\n$100-200K,44684125.61625926,0.0,0.0,3477117.3765974184,7.78154955175445,7.457773230013462,333244075.8274971,26.671299179052355,0.0,1262739922328.8318,1262739922328.8318,0.9066669172740127\n$200-500K,20873881.620580718,137666.97493853362,0.6595178483852285,1582603.4863414124,7.581740258510596,14.681685461437716,306463764.3126519,24.52792814163173,0.0,963592886622.6903,963592886622.6903,0.8294892742187532\n$500-1000K,1694025.7463737084,19333.840439764313,1.141295548851664,280343.1676613974,16.54893193102348,91.26720012744914,154608986.81534064,12.374181094990245,0.0,88578415674.78537,88578415674.78537,0.5095342232842581\n>$1000K,568268.8108791691,30821.85829479907,5.423816634792,163397.89846909832,28.75362774464171,192.89675233828908,109617208.07373312,8.773249290170067,0.0,11713119098.868309,11713119098.868309,0.14674547704940366\nALL,189134250.72000003,312769.5901365017,0.16536909044546094,11205764.75974183,5.9247675749281274,6.606144716948175,1249448231.1878798,100.0,0.0,4058964402021.995,4058964402021.995,0.8032963091871625\n", "diff_ptax_xbin": ",count_9,tax_cut_9,perc_cut_9,tax_inc_9,perc_inc_9,mean_9,tot_change_9,share_of_change_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,pc_aftertaxinc_9\n<$0K,66308.5320416195,4515.60752515175,6.8099947112650066,0.0,0.0,-57.4721292263137,-3810892.5223031184,0.0014801447910450021,0.0,1157123558.0725532,1157123558.0725532,-0.022415710751211293\n=$0K,1184582.574210356,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10524169.38544442,7530695.4431809215,71.55619761875309,0.0,0.0,-65.51900021720411,-689533056.2508258,0.2678135779190629,0.0,15187351853.741901,15187351853.741901,0.7279608352978473\n$10-20K,9856950.906202542,7739425.422704408,78.51743907778146,0.0,0.0,-221.56304769803413,-2183936083.7881346,0.8482374140639993,0.0,49055620859.04323,49055620859.04323,0.7439260183011109\n$20-30K,14187091.324065479,8885663.21389915,62.632029433873114,0.0,0.0,-285.0493440937686,-4044021076.523259,1.5706915627404303,0.0,161448146979.87134,161448146979.87134,0.6146749592519152\n$30-40K,15494557.04744919,10657135.152753646,68.77986327791209,0.0,0.0,-459.68458052138664,-7122608956.721376,2.7664103577421946,0.0,196876072321.7844,196876072321.7844,0.7596864179976404\n$40-50K,15151582.942679837,11099801.326302325,73.25836097980084,0.0,0.0,-629.7853913525803,-9542245593.166702,3.7061935037365,0.0,218910979555.80148,218910979555.80148,0.8379685011493665\n$50-75K,33489598.760863125,25279295.28710254,75.48401958355089,0.0,0.0,-872.6587962126708,-29224992940.300167,11.35094228340234,0.0,615527631412.6934,615527631412.6934,0.8372794451662502\n$75-100K,21359107.452950597,16920796.581514794,79.22052276195332,0.0,0.0,-1273.3689791072145,-27198024852.004997,10.563670997228316,0.0,474177131755.8112,474177131755.8112,0.885224723481004\n$100-200K,44684125.61625926,35584167.39725375,79.63491935110329,0.0,0.0,-2064.740730717658,-92261134176.39478,35.83408253260436,0.0,1262739922328.8318,1262739922328.8318,0.9066669172740127\n$200-500K,20873881.620580718,17586429.685178936,84.25088349566714,0.0,0.0,-3613.6360203999157,-75430610509.69424,29.297133041105443,0.0,963592886622.6903,963592886622.6903,0.8294892742187532\n$500-1000K,1694025.7463737084,1418187.5994222523,83.71700385652785,0.0,0.0,-4489.048773873702,-7604564199.669378,2.9536010324178457,0.0,88578415674.78537,88578415674.78537,0.5095342232842581\n>$1000K,568268.8108791691,490211.5606579623,86.26402703670391,7192.417583471246,1.2656717113057552,-3804.6556568365068,-2162067145.915186,0.8397435522484555,0.0,11713119098.868309,11713119098.868309,0.14674547704940366\nALL,189134250.72000003,143196324.2774958,75.71147147191648,7192.417583471246,0.0038028107315787635,-1361.2952096345255,-257467549482.95135,100.0,0.0,4058964402021.995,4058964402021.995,0.8032963091871625\n", "diff_comb_xbin": ",count_9,tax_cut_9,perc_cut_9,tax_inc_9,perc_inc_9,mean_9,tot_change_9,share_of_change_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,pc_aftertaxinc_9\n<$0K,66308.5320416195,4515.60752515175,6.8099947112650066,0.0,0.0,-57.4721292263137,-3810892.5223031184,0.0014873627209337882,0.0,1157123558.0725532,1157123558.0725532,-0.022415710751211293\n=$0K,1184582.574210356,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n$0-10K,10524169.38544442,7530695.4431809215,71.55619761875309,0.0,0.0,-65.0371229607583,-684461698.3809968,0.26714025864567437,0.0,15187351853.741901,15187351853.741901,0.7279608352978473\n$10-20K,9856950.906202542,7739425.422704408,78.51743907778146,0.0,0.0,-221.22261602526427,-2180580465.5027256,0.8510641733934546,0.0,49055620859.04323,49055620859.04323,0.7439260183011109\n$20-30K,14187091.324065479,8885663.21389915,62.632029433873114,0.0,0.0,-284.8812063430745,-4041635690.8991394,1.5774200461066457,0.0,161448146979.87134,161448146979.87134,0.6146749592519152\n$30-40K,15494557.04744919,10657135.152753646,68.77986327791209,0.0,0.0,-457.2005145579744,-7084119454.941658,2.764878601602274,0.0,196876072321.7844,196876072321.7844,0.7596864179976404\n$40-50K,15151582.942679837,11099801.326302325,73.25836097980084,0.0,0.0,-625.3016515016087,-9474309836.921307,3.6977519506366634,0.0,218910979555.80148,218910979555.80148,0.8379685011493665\n$50-75K,33489598.760863125,25279295.28710254,75.48401958355089,0.0,0.0,-869.0901392163951,-29105480049.379745,11.359650199257505,0.0,615527631412.6934,615527631412.6934,0.8372794451662502\n$75-100K,21359107.452950597,16920796.581514794,79.22052276195332,0.0,0.0,-1268.2768334886139,-27089261166.571236,10.572735116771844,0.0,474177131755.8112,474177131755.8112,0.885224723481004\n$100-200K,44684125.61625926,35584167.39725375,79.63491935110329,0.0,0.0,-2057.2829574876446,-91927890100.56728,35.87876486924616,0.0,1262739922328.8318,1262739922328.8318,0.9066669172740127\n$200-500K,20873881.620580718,17586429.685178936,84.25088349566714,0.0,0.0,-3598.9543349384776,-75124146745.38159,29.320390081090935,0.0,963592886622.6903,963592886622.6903,0.8294892742187532\n$500-1000K,1694025.7463737084,1418187.5994222523,83.71700385652785,0.0,0.0,-4397.781573746253,-7449955212.854038,2.9076615494600078,0.0,88578415674.78537,88578415674.78537,0.5095342232842581\n>$1000K,568268.8108791691,490211.5606579623,86.26402703670391,7192.417583471246,1.2656717113057552,-3611.758904498229,-2052449937.8414593,0.801055791067897,0.0,11713119098.868309,11713119098.868309,0.14674547704940366\nALL,189134250.72000003,143196324.2774958,75.71147147191648,7192.417583471246,0.0038028107315787635,-1354.6890649175775,-256218101251.7635,100.0,0.0,4058964402021.995,4058964402021.995,0.8032963091871625\n", "dist1_xdec": ",s006_9,c00100_9,num_returns_StandardDed_9,standard_9,num_returns_ItemDed_9,c04470_9,c04600_9,c04800_9,taxbc_9,c62100_9,num_returns_AMT_9,c09600_9,c05800_9,c07100_9,othertaxes_9,refund_9,iitax_9,payrolltax_9,combined_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,expanded_income_9,aftertax_income_9\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18888876.26563905,93936918256.12956,18405907.079098836,129762811222.82129,482969.1865402175,5736078992.941904,93781032188.64493,7399568131.76136,585478147.3568687,89633380113.55255,0.0,0.0,585478147.3568687,144962426.5278715,0.0,11163004445.053883,-10722488724.224886,14138334389.071236,3415845664.846353,0.0,44008702947.467896,44008702947.467896,139486608542.26526,136070762877.4189\n10-20,18929169.02265336,252125490409.14352,16294511.030769471,150439832102.523,2634657.9918838907,31193013419.793266,129624464288.0215,71344517059.98283,6941007758.513132,229483780565.7517,20390.536932938514,9676911.567249004,6950684670.080381,912565737.3385401,0.0,20903249021.712646,-14865130088.970804,35699817770.55388,20834687681.583073,0.0,204093047723.6673,204093047723.6673,468682647898.3286,447847960216.7455\n20-30,18915167.628699817,425361827108.8302,14396657.99282855,142494265304.2232,4518509.635871263,64920809158.1225,145389318232.1795,172285536762.74377,19711976579.154533,387076245271.0191,145323.55820137978,335537932.1689699,20047514511.323505,2418858284.490267,0.0,20347653527.999912,-2718997301.1666727,60430021598.86918,57711024297.70251,0.0,251015791489.4693,251015791489.4693,708088409119.8016,650377384822.0991\n30-40,18904017.39641758,602242628333.5304,12619072.829866078,133598005186.63635,6284944.566551503,101884388812.20816,156763135851.1717,294821637513.1195,35474168041.799934,540103221772.4592,92849.34693576918,84546479.33512807,35558714521.13506,3277602123.3403845,0.0,13763295849.023981,18517816548.7707,85287344255.49915,103805160804.26984,0.0,293204075010.1146,293204075010.1146,938615817194.405,834810656390.1353\n40-50,18894183.56843915,787331774013.8047,11532891.725493323,131427883451.1556,7361291.842945827,134238734869.43764,180063761829.1328,417209296335.1384,52325312104.67645,705844997424.0842,75067.79827620942,190350056.30181298,52515662160.97827,4938016748.944754,0.0,13231001460.967981,34346643951.065533,106623364620.97751,140970008572.04303,0.0,353650288835.1274,353650288835.1274,1187499365662.4775,1046529357090.4346\n50-60,18944501.046943642,1040506332228.8867,9776756.11182279,120988118658.55872,9167744.935120856,193448468942.0819,193485541923.2596,606016921996.8701,82688281469.98576,919926174600.5764,23132.191234420858,101896094.02047777,82790177564.00624,5170723008.924065,0.0,7629467158.147201,69989987396.93497,138539106602.01022,208529093998.9452,0.0,409544698397.5464,409544698397.5464,1506128863424.9746,1297599769426.0295\n60-70,18911488.710414253,1440335906770.3474,8168219.8907858655,110035120921.75392,10743268.81962838,256055071025.51105,199653777890.85785,917768461373.4043,134923821778.75717,1290288726856.3862,142617.63440123206,558084232.3467727,135481906011.10397,6353650152.015936,0.0,3694627037.5650663,125433628821.52295,179440801522.52808,304874430344.051,0.0,446235973262.2931,446235973262.2931,1939912155536.1914,1635037725192.1401\n70-80,18904619.852370642,1927862594657.3704,6178127.901973646,83005245657.6117,12726491.950396994,359276127452.842,208640404466.42804,1316343185600.3682,203552634579.41882,1710181998776.493,7695.291305958656,45975778.11385445,203598610357.53265,5005932021.6298275,0.0,1309798511.0022845,197282879824.90054,236028262937.5802,433311142762.4808,0.0,546945784281.2694,546945784281.2694,2547133745702.9653,2113822602940.4846\n80-90,18924796.66797152,2704845404412.8457,4519773.767774964,66247607082.84325,14405022.90019656,478275040883.94055,233034761725.59924,1960226586488.0498,329209334219.9232,2429570347630.5405,34940.46024956602,55847798.108983435,329265182018.0322,1648906028.4660053,6040706.808253147,701280606.9783845,326921036089.3961,328532775052.4485,655453811141.8445,0.0,604741503300.3843,604741503300.3843,3458578895721.128,2803125084579.283\n90-100,18917430.56045101,6096337227051.134,2535776.4761440996,35717257532.53946,16381654.084306907,748970525891.237,208725397888.77386,5122652275830.333,1223587854449.69,5713442590906.225,4839333.476516946,22783377614.241066,1246371232063.9312,441179731.0871235,13821564183.951088,903997485.1277008,1258847619031.6672,516479124801.89624,1775326743833.5635,0.0,905524536774.6559,905524536774.6559,7337478505182.687,5562151761349.123\nALL,189134250.72000003,15370886103242.02,104427694.80655764,1103716147120.6665,84706555.9134424,2373998259448.1157,1749161596284.0693,10886067987091.771,2088999869129.276,14015551463917.09,5381350.29405442,24165292896.20431,2113165162025.48,30312396262.764774,13827604890.75934,93647375103.57904,2003032995549.8955,1701198953551.4343,3704231949101.3296,0.0,4058964402021.9956,4058964402021.9956,20231605013985.223,16527373064883.893\n90-95,9459705.809123613,1847992070289.4712,1499534.0407940974,21339709156.181816,7960171.768329516,298790601417.0658,117406350629.35568,1418950226299.2559,267495127987.74872,1690268542106.4316,357720.87668129575,483704281.49512637,267978832269.24387,256273504.16496632,195852522.7836638,522883344.39436007,267395527943.4682,213817763058.3308,481213291001.799,0.0,401484089620.9612,401484089620.9612,2360313271098.016,1879099980096.2173\n95-99,7565269.004115857,2222435534952.5156,942049.5553964559,12875299604.380085,6623219.448719401,310964410515.6648,89947023318.91095,1819743798540.0962,393005631940.6557,2059435698883.357,3465180.080771899,11944548972.12466,404950180912.7804,141987503.07240504,2380038921.731455,240922392.08984277,406947309939.34955,213714717686.54077,620662027625.8903,0.0,436645439247.4882,436645439247.4882,2815365542642.259,2194703515016.3687\nTop 1%,1892455.7472115364,2025909621809.1467,94192.87995354638,1502248771.9775548,1798262.8672579902,139215513958.50653,1372023940.5072408,1883958250990.9812,563087094521.2855,1963738349916.4365,1016432.5190637516,10355124360.621277,573442218881.9067,42918723.84975217,11245672739.435968,140191748.64349788,584504781148.8495,88946644057.02467,673451425205.8741,0.0,67395007906.20647,67395007906.20647,2161799691442.4114,1488348266236.5374\n", "dist2_xdec": ",s006_9,c00100_9,num_returns_StandardDed_9,standard_9,num_returns_ItemDed_9,c04470_9,c04600_9,c04800_9,taxbc_9,c62100_9,num_returns_AMT_9,c09600_9,c05800_9,c07100_9,othertaxes_9,refund_9,iitax_9,payrolltax_9,combined_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,expanded_income_9,aftertax_income_9\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0\n0-10p,18888876.26563905,93945285512.39125,18405907.079098836,129762811222.82129,482969.1865402175,5736078992.941904,93781032188.64493,7400934973.646993,585614831.5454321,89641747369.81422,0.0,0.0,585614831.5454321,144962426.5278715,0.0,11155599920.358208,-10714947515.340647,11921812995.230886,1206865479.8902373,0.0,44008702947.467896,44008702947.467896,138386715101.60675,137179849621.7165\n10-20,18929169.02265336,252260123916.22104,16294511.030769471,150439832102.523,2634657.9918838907,31192806641.13073,129624464288.0215,71416951344.80371,6949283581.698769,229618591155.95187,20390.536932938514,9676911.567249004,6958960493.266018,913116120.3905236,0.0,20900963649.955757,-14855119277.080261,30120064891.552223,15264945614.471962,0.0,204093047723.6673,204093047723.6673,466027404965.9053,450762459351.4333\n20-30,18915167.628699817,425757068281.9529,14396657.99282855,142494265304.2232,4518509.635871263,64918580177.94533,145389318232.1795,172558982351.91006,19745749757.1485,387473735914.7114,145323.55820137978,335537932.1689699,20081287689.317467,2424728994.6722093,0.0,20318001854.323383,-2661443159.6781225,51010070657.744705,48348627498.06659,0.0,251015791489.4693,251015791489.4693,703773095094.3993,655424467596.3328\n30-40,18904017.39641758,602794951093.9241,12617670.407688694,133576532700.67844,6286346.988728887,101906346096.41632,156763135851.1717,295294466515.88745,35535549148.65854,540642192779.1649,92849.34693576918,84546479.33512807,35620095627.99367,3281550748.1859612,0.0,13733904250.275402,18604640629.532303,71989957608.18866,90594598237.72096,0.0,293204075010.1146,293204075010.1146,932506631104.6401,841912032866.9192\n40-50,18894183.56843915,787693787064.499,11510457.602386829,131084394592.27206,7383725.966052322,135243293605.66911,180063761829.1328,417523872992.0216,52368079590.54456,705676338561.015,75067.79827620942,190350056.30181298,52558429646.846375,4941479668.07152,0.0,13213831492.11081,34403118486.66405,89949865109.6047,124352983596.26874,0.0,353650288835.1274,353650288835.1274,1179507109231.2515,1055154125634.9829\n50-60,18944501.046943642,1041003225574.387,9775003.993905492,120961291981.12695,9169497.053038154,193496593640.3236,193485541923.2596,606472803132.2036,82775049683.82996,920386911094.5831,23132.191234420858,101896094.02047777,82876945777.85043,5177044763.669719,0.0,7613524596.623494,70086376417.55722,116876863376.16927,186963239793.7265,0.0,409544698397.5464,409544698397.5464,1495759746233.4175,1308796506439.691\n60-70,18911488.710414253,1440804573957.3264,8168219.8907858655,110035120921.75392,10743268.81962838,256054087559.02203,199653777890.85785,918201411992.4818,135003876406.48093,1290758432326.1074,142617.63440123206,558084232.3467727,135561960638.82768,6352574556.417412,0.0,3687633475.0463276,125521752607.36392,151359657046.7692,276881409654.1332,0.0,446235973262.2931,446235973262.2931,1926313949877.4717,1649432540223.3384\n70-80,18904619.852370642,1928350515910.535,6178127.901973646,83005245657.6117,12726491.950396994,359271212964.6659,208640404466.42804,1316791537819.2217,203636282368.06067,1710674625833.0444,7695.291305958656,45975778.11385445,203682258146.17453,5001070173.768734,0.0,1307077121.1194193,197374110851.28638,199076139886.60956,396450250737.89594,0.0,546945784281.2694,546945784281.2694,2529136581299.6987,2132686330561.8027\n80-90,18924796.66797152,2705805439738.0005,4519773.767774964,66247607082.84325,14405022.90019656,478272061023.4908,233034761725.59924,1961181862381.1995,329442666622.12524,2430531585727.1807,34940.46024956602,55880867.06360814,329498547489.18884,1646325649.5583682,6040706.808253147,700028312.82751,327158234233.6112,277225073347.2422,604383307580.8534,0.0,604741503300.3843,604741503300.3843,3433874592860.742,2829491285279.889\n90-100,18917430.56045101,6097892947941.054,2535776.4761440996,35717257532.53946,16381654.084306907,748937360022.5819,208705114915.26575,5124253305315.434,1224094382601.495,5715004544210.908,4840893.377570583,22789231865.346714,1246883614466.842,442485830.41714853,13823531617.67661,898939746.9340446,1259365720507.1675,444201899149.3714,1703567619656.5388,0.0,905524536774.6559,905524536774.6559,7302864864800.135,5599297245143.596\nALL,189134250.72000003,15376307918990.291,104402106.14335646,1103324359098.3933,84732144.57664357,2375028420724.1875,1749141313310.561,10891096128818.81,2090136534591.5876,14020408704972.48,5382910.195108057,24171180216.264587,2114307714807.8523,30325338931.679466,13829572324.484863,93529504419.57434,2004282443781.0835,1443731404068.4827,3448013847849.5664,0.0,4058964402021.9956,4058964402021.9956,20108150690569.266,16660136842719.701\n90-95,9459705.809123613,1848390883610.8706,1499534.0407940974,21339709156.181816,7960171.768329516,298786831270.5231,117406350629.35568,1419348952974.2683,267596435432.48047,1690669483458.9033,357720.87668129575,485629226.4671558,268082064658.94763,257512719.2101276,196369318.5761261,518307634.5135215,267502613623.8001,180874824734.52448,448377438358.3246,0.0,401484089620.9612,401484089620.9612,2344238996067.9297,1895861557709.605\n95-99,7565269.004115857,2222942420282.271,942049.5553964559,12875299604.380085,6623219.448719401,310954972944.8349,89931373157.04056,1820271488148.499,393161336933.3734,2059946569854.3135,3466739.9818255357,11952418913.998913,405113755847.3724,142064094.333629,2381142949.6424026,240440363.77702522,407112394338.9041,182600220441.76,589712614780.6641,0.0,436645439247.4882,436645439247.4882,2800312109747.5566,2210599494966.892\nTop 1%,1892455.7472115364,2026559644047.9119,94192.87995354638,1502248771.9775548,1798262.8672579902,139195555807.224,1367391128.869495,1884632864192.666,563336610235.6414,1964388490897.691,1016432.5190637516,10351183724.880646,573687793960.522,42909016.873391904,11246019349.458082,140191748.64349788,584750712544.4633,80726853973.08691,665477566517.5502,0.0,67395007906.20647,67395007906.20647,2158313758984.6484,1492836192467.0981\n", "diff_itax_xdec": ",count_9,tax_cut_9,perc_cut_9,tax_inc_9,perc_inc_9,mean_9,tot_change_9,share_of_change_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,pc_aftertaxinc_9\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,\n0-10p,18888876.26563905,23155.680730668628,0.12258897991084501,385974.10893570515,2.043393707003283,0.3992407371503875,7541208.884236193,0.6035631325890619,0.0,44008702947.467896,44008702947.467896,0.8150808600204229\n10-20,18929169.02265336,53180.88118089553,0.28094672892006856,432699.6795421439,2.28588840336474,0.5288563844806478,10010811.890543532,0.8012186212009773,0.0,204093047723.6673,204093047723.6673,0.6507787002707932\n20-30,18915167.628699817,16790.027247523725,0.08876488740204642,1000780.5744513308,5.290889269904514,3.042750802864857,57554141.488549724,4.606364637759473,0.0,251015791489.4693,251015791489.4693,0.7760237197691255\n30-40,18904017.39641758,29362.531985659614,0.15532429625897393,1540799.4614558439,8.150645596357915,4.592890439153811,86824080.76160362,6.94899385139454,0.0,293204075010.1146,293204075010.1146,0.8506571427216114\n40-50,18894183.56843915,1201.6035263646534,0.006359647782674306,975673.611342221,5.163883413157828,2.988990521551138,56474535.598511875,4.5199580253773455,0.0,353650288835.1274,353650288835.1274,0.8241305880350103\n50-60,18944501.046943642,1256.191792292563,0.006630904604875973,981343.843401242,5.180098652213194,5.087968291347414,96389020.62224713,7.714526958080352,0.0,409544698397.5464,409544698397.5464,0.8628806260203126\n60-70,18911488.710414253,0.0,0.0,1048409.9944063458,5.543772943845522,4.659801625900274,88123785.840983,7.053016174763931,0.0,446235973262.2931,446235973262.2931,0.8803965076406239\n70-80,18904619.852370642,0.0,0.0,1572862.9546720213,8.319992504238503,4.825858816430983,91231026.38583905,7.301705193427946,0.0,546945784281.2694,546945784281.2694,0.8923988037159436\n80-90,18924796.66797152,12933.779807186058,0.0683430318122006,1638192.537144667,8.656328339406453,12.53372220461374,237198144.2151548,18.984231462686925,0.0,604741503300.3843,604741503300.3843,0.940600219578247\n90-100,18917430.56045101,174888.89386591094,0.9244854543382632,1629027.9943903093,8.611253992368148,27.387518291377248,518101475.50021094,41.466421942719435,0.0,905524536774.6559,905524536774.6559,0.6678257873615312\nALL,189134250.72000003,312769.5901365017,0.16536909044546094,11205764.75974183,5.9247675749281274,6.606144716948177,1249448231.18788,100.0,0.0,4058964402021.9956,4058964402021.9956,0.8032963091871848\n90-95,9459705.809123613,12292.615811014608,0.1299471258308978,692142.1581126583,7.316740838231007,11.320191398407609,107085680.33190762,8.570637634990184,0.0,401484089620.9612,401484089620.9612,0.8920003081756889\n95-99,7565269.004115857,115142.2022268015,1.5219842435762536,525925.520093828,6.951841630584453,21.821352216917724,165084399.5545425,13.212584197873717,0.0,436645439247.4882,436645439247.4882,0.7242882622532587\nTop 1%,1892455.7472115364,47454.07582809483,2.50753952360665,410960.31618382304,21.715716036655436,129.95357803009747,245931395.61376083,19.683200109855534,0.0,67395007906.20647,67395007906.20647,0.30153737081368703\n", "diff_ptax_xdec": ",count_9,tax_cut_9,perc_cut_9,tax_inc_9,perc_inc_9,mean_9,tot_change_9,share_of_change_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,pc_aftertaxinc_9\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18888876.26563905,13417185.038177747,71.03220355456024,0.0,0.0,-117.34532868281042,-2216521393.840351,0.860893498342447,0.0,44008702947.467896,44008702947.467896,0.8150808600204229\n10-20,18929169.02265336,12222640.932530487,64.57040410967392,0.0,0.0,-294.77009119228194,-5579752879.001649,2.167167431471251,0.0,204093047723.6673,204093047723.6673,0.6507787002707932\n20-30,18915167.628699817,13110463.827906057,69.31190928497861,0.0,0.0,-498.010439348772,-9419950941.124466,3.658694449083659,0.0,251015791489.4693,251015791489.4693,0.7760237197691255\n30-40,18904017.39641758,13898909.61225481,73.52357607800728,0.0,0.0,-703.4159125261074,-13297386647.310482,5.164684510344861,0.0,293204075010.1146,293204075010.1146,0.8506571427216114\n40-50,18894183.56843915,14279001.091151338,75.57352790306847,0.0,0.0,-882.4673186315516,-16673499511.372816,6.475961551215555,0.0,353650288835.1274,353650288835.1274,0.8241305880350103\n50-60,18944501.046943642,14869675.24223315,78.4907198420626,0.0,0.0,-1143.4581028110922,-21662243225.840927,8.413581932691416,0.0,409544698397.5464,409544698397.5464,0.8628806260203126\n60-70,18911488.710414253,15050798.446906002,79.58547672990846,0.0,0.0,-1484.872233262897,-28081144475.758877,10.906673300053416,0.0,446235973262.2931,446235973262.2931,0.8803965076406239\n70-80,18904619.852370642,14836133.234105263,78.47887632739047,0.0,0.0,-1954.6609950126488,-36952123050.97067,14.352147727035215,0.0,546945784281.2694,546945784281.2694,0.8923988037159436\n80-90,18924796.66797152,15564447.23141163,82.24366953306836,0.0,0.0,-2711.136220133867,-51307701705.206314,19.927832384408404,0.0,604741503300.3843,604741503300.3843,0.940600219578247\n90-100,18917430.56045101,15947069.620819362,84.29828548787425,7192.417583471246,0.038020055421838284,-3820.6682150391184,-72277225652.52483,28.072363215353775,0.0,905524536774.6559,905524536774.6559,0.6678257873615312\nALL,189134250.72000003,143196324.27749586,75.71147147191651,7192.417583471246,0.0038028107315787635,-1361.2952096345257,-257467549482.9514,99.99999999999999,0.0,4058964402021.9956,4058964402021.9956,0.8032963091871848\n90-95,9459705.809123613,8034320.498710286,84.93203341441566,0.0,0.0,-3482.448501943243,-32942938323.80632,12.794986548775805,0.0,401484089620.9612,401484089620.9612,0.8920003081756889\n95-99,7565269.004115857,6230988.201156457,82.36307522926825,0.0,0.0,-4112.807783550461,-31114497244.780743,12.084822847487052,0.0,436645439247.4882,436645439247.4882,0.7242882622532587\nTop 1%,1892455.7472115364,1681760.9209526207,88.86659164583548,7192.417583471246,0.3800573722301833,-4343.451674391496,-8219790083.937758,3.192553819090916,0.0,67395007906.20647,67395007906.20647,0.30153737081368703\n", "diff_comb_xdec": ",count_9,tax_cut_9,perc_cut_9,tax_inc_9,perc_inc_9,mean_9,tot_change_9,share_of_change_9,ubi_9,benefit_cost_total_9,benefit_value_total_9,pc_aftertaxinc_9\n0-10n,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10z,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,0.0,\n0-10p,18888876.26563905,13417185.038177747,71.03220355456024,0.0,0.0,-116.94608794566004,-2208980184.9561152,0.8621483705343442,0.0,44008702947.467896,44008702947.467896,0.8150808600204229\n10-20,18929169.02265336,12222640.932530487,64.57040410967392,0.0,0.0,-294.2412348078013,-5569742067.111106,2.173828484365435,0.0,204093047723.6673,204093047723.6673,0.6507787002707932\n20-30,18915167.628699817,13110463.827906057,69.31190928497861,0.0,0.0,-494.96768854590715,-9362396799.635916,3.6540731329658453,0.0,251015791489.4693,251015791489.4693,0.7760237197691255\n30-40,18904017.39641758,13898909.61225481,73.52357607800728,0.0,0.0,-698.8230220869536,-13210562566.548878,5.155983321243956,0.0,293204075010.1146,293204075010.1146,0.8506571427216114\n40-50,18894183.56843915,14279001.091151338,75.57352790306847,0.0,0.0,-879.4783281100003,-16617024975.774303,6.4855000074511455,0.0,353650288835.1274,353650288835.1274,0.8241305880350103\n50-60,18944501.046943642,14869675.24223315,78.4907198420626,0.0,0.0,-1138.3701345197449,-21565854205.21868,8.416990876077007,0.0,409544698397.5464,409544698397.5464,0.8628806260203126\n60-70,18911488.710414253,15050798.446906002,79.58547672990846,0.0,0.0,-1480.2124316369966,-27993020689.917892,10.925465668958164,0.0,446235973262.2931,446235973262.2931,0.8803965076406239\n70-80,18904619.852370642,14836133.234105263,78.47887632739047,0.0,0.0,-1949.8351361962177,-36860892024.58483,14.386529228223731,0.0,546945784281.2694,546945784281.2694,0.8923988037159436\n80-90,18924796.66797152,15564447.23141163,82.24366953306836,0.0,0.0,-2698.602497929253,-51070503560.99115,19.932433856735422,0.0,604741503300.3843,604741503300.3843,0.940600219578247\n90-100,18917430.56045101,15947069.620819362,84.29828548787425,7192.417583471246,0.038020055421838284,-3793.2806967477413,-71759124177.02461,28.007047053444943,0.0,905524536774.6559,905524536774.6559,0.6678257873615312\nALL,189134250.72000003,143196324.27749586,75.71147147191651,7192.417583471246,0.0038028107315787635,-1354.6890649175775,-256218101251.7635,100.0,0.0,4058964402021.9956,4058964402021.9956,0.8032963091871848\n90-95,9459705.809123613,8034320.498710286,84.93203341441566,0.0,0.0,-3471.1283105448356,-32835852643.474415,12.81558659714266,0.0,401484089620.9612,401484089620.9612,0.8920003081756889\n95-99,7565269.004115857,6230988.201156457,82.36307522926825,0.0,0.0,-4090.9864313335434,-30949412845.2262,12.07932331635495,0.0,436645439247.4882,436645439247.4882,0.7242882622532587\nTop 1%,1892455.7472115364,1681760.9209526207,88.86659164583548,7192.417583471246,0.3800573722301833,-4213.4980963614025,-7973858688.324004,3.112137139947337,0.0,67395007906.20647,67395007906.20647,0.30153737081368703\n"}, "renderable": {"aggr_d": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_9
ind_tax1,249,448,231.19
payroll_tax-257,467,549,482.95
combined_tax-256,218,101,251.76
", "aggr_1": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_9
ind_tax2,003,032,995,549.90
payroll_tax1,701,198,953,551.43
combined_tax3,704,231,949,101.33
", "aggr_2": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
0_9
ind_tax2,004,282,443,781.08
payroll_tax1,443,731,404,068.48
combined_tax3,448,013,847,849.57
", "dist1_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_9c00100_9num_returns_StandardDed_9standard_9num_returns_ItemDed_9c04470_9c04600_9c04800_9taxbc_9c62100_9num_returns_AMT_9c09600_9c05800_9c07100_9othertaxes_9refund_9iitax_9payrolltax_9combined_9ubi_9benefit_cost_total_9benefit_value_total_9expanded_income_9aftertax_income_9
<$0K66,308.53-9,736,669,613.0666,308.53924,852,896.310.000.00774,623,539.160.000.00-9,736,669,613.060.000.000.000.000.00945,865.77-945,865.7724,294,439.8323,348,574.060.001,157,123,558.071,157,123,558.07-8,477,145,933.12-8,500,494,507.18
=$0K1,184,582.570.001,184,582.5711,682,028,871.430.000.0010,800,329,645.510.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,524,169.3932,230,254,199.4210,466,742.8662,198,928,487.6057,426.52329,152,124.8438,857,665,954.542,062,968,778.74148,828,598.8631,918,747,132.330.000.00148,828,598.8640,807,711.260.003,246,129,178.79-3,138,108,291.194,395,784,693.431,257,676,402.240.0015,187,351,853.7415,187,351,853.7447,923,255,645.3546,665,579,243.11
$10-20K9,856,950.91101,948,773,629.039,179,893.3177,386,809,860.00677,057.607,776,349,086.6261,583,122,242.439,872,795,978.99872,018,538.2296,059,223,775.440.000.00872,018,538.22183,127,007.970.0011,303,846,398.24-10,614,954,867.9913,937,819,124.323,322,864,256.340.0049,055,620,859.0449,055,620,859.04151,794,232,726.42148,471,368,470.08
$20-30K14,187,091.32184,742,921,210.9512,167,551.78112,230,951,792.572,019,539.5522,206,331,694.0497,384,235,179.7055,538,880,844.805,298,104,107.09169,087,483,924.6420,390.549,676,911.575,307,781,018.66712,563,416.080.0015,413,853,707.65-10,818,636,105.0825,850,812,384.5015,032,176,279.420.00161,448,146,979.87161,448,146,979.87355,525,727,573.51340,493,551,294.09
$30-40K15,494,557.05321,022,987,824.0412,033,579.27117,442,192,725.283,460,977.7850,403,739,077.00116,419,019,828.14122,776,717,252.1513,747,019,763.16290,570,586,208.8398,523.22256,827,121.4014,003,846,884.551,679,204,551.130.0017,066,768,581.96-4,742,126,248.5445,682,799,091.2140,940,672,842.660.00196,876,072,321.78196,876,072,321.78542,632,048,805.50501,691,375,962.84
$40-50K15,151,582.94429,751,195,340.5310,591,012.55108,952,538,870.164,560,570.3971,042,944,790.22123,203,909,443.81196,873,555,096.6823,111,439,624.51384,610,814,090.59122,453.72128,611,736.7923,240,051,361.302,444,168,287.750.0013,051,215,848.877,744,667,224.6861,234,684,222.2268,979,351,446.900.00218,910,979,555.80218,910,979,555.80680,457,898,671.79611,478,547,224.89
$50-75K33,489,598.761,369,131,231,092.7520,584,769.59236,496,720,381.9112,904,829.17229,687,729,180.91311,407,407,345.02727,073,031,473.6991,944,678,945.781,231,025,522,152.9192,263.76224,995,609.6292,169,674,555.407,956,030,321.930.0022,176,833,191.7562,036,811,041.72187,001,298,896.20249,038,109,937.920.00615,527,631,412.69615,527,631,412.692,066,325,020,458.851,817,286,910,520.93
$75-100K21,359,107.451,309,366,851,593.5910,449,774.18129,232,514,507.2310,909,333.27240,833,188,811.09219,918,493,478.41792,240,124,170.59111,684,616,808.861,164,118,158,212.5060,172.48151,689,861.36111,836,306,670.236,374,184,137.860.006,625,322,796.9198,836,799,735.46173,876,023,770.35272,712,823,505.820.00474,177,131,755.81474,177,131,755.811,854,302,730,188.511,581,589,906,682.69
$100-200K44,684,125.624,849,202,646,410.1414,327,762.31199,061,227,370.6530,356,363.31884,394,488,872.56501,909,275,482.963,351,924,929,244.51530,252,794,998.094,325,428,468,133.03145,626.94608,270,641.81530,861,065,639.9010,270,125,053.600.003,625,614,807.77516,965,325,778.53589,660,203,322.581,106,625,529,101.110.001,262,739,922,328.831,262,739,922,328.836,324,337,753,212.255,217,712,224,111.15
$200-500K20,873,881.624,604,647,724,074.333,256,141.4346,102,463,359.0217,617,740.19711,778,168,733.46263,282,787,670.373,610,082,315,603.46716,713,444,030.544,224,320,008,091.013,612,761.9411,720,177,890.69728,433,621,921.23607,367,553.172,370,247,334.14996,652,977.23729,199,848,724.97499,404,810,236.651,228,604,658,961.620.00963,592,886,622.69963,592,886,622.695,866,322,836,146.534,637,718,177,184.91
$500-1000K1,694,025.75967,293,806,761.4862,424.161,047,798,797.201,631,601.5895,155,083,479.673,596,539,480.00867,710,677,722.35220,163,908,204.70921,977,923,975.641,099,261.788,717,150,984.05228,881,059,188.7533,842,142.902,436,633,359.25140,191,748.64231,143,658,656.4661,700,080,071.26292,843,738,727.720.0088,578,415,674.7988,578,415,674.791,092,314,638,093.50799,470,899,365.78
>$1000K568,268.811,211,284,380,718.8257,152.26957,119,201.30511,116.5560,391,083,597.7024,186,994.011,149,911,990,925.82375,063,015,509.481,186,171,197,833.22129,895.922,347,892,138.91377,410,907,648.4010,976,079.129,020,724,197.370.00386,420,655,766.6438,430,343,298.88424,850,999,065.530.0011,713,119,098.8711,713,119,098.871,258,146,018,396.14833,295,019,330.61
ALL189,134,250.7215,370,886,103,242.02104,427,694.811,103,716,147,120.6784,706,555.912,373,998,259,448.121,749,161,596,284.0710,886,067,987,091.772,088,999,869,129.2814,015,551,463,917.095,381,350.2924,165,292,896.202,113,165,162,025.4830,312,396,262.7613,827,604,890.7693,647,375,103.582,003,032,995,549.901,701,198,953,551.433,704,231,949,101.330.004,058,964,402,022.004,058,964,402,022.0020,231,605,013,985.2216,527,373,064,883.90
", "dist2_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_9c00100_9num_returns_StandardDed_9standard_9num_returns_ItemDed_9c04470_9c04600_9c04800_9taxbc_9c62100_9num_returns_AMT_9c09600_9c05800_9c07100_9othertaxes_9refund_9iitax_9payrolltax_9combined_9ubi_9benefit_cost_total_9benefit_value_total_9expanded_income_9aftertax_income_9
<$0K66,308.53-9,736,669,613.0666,308.53924,852,896.310.000.00774,623,539.160.000.00-9,736,669,613.060.000.000.000.000.00945,865.77-945,865.7720,483,547.3119,537,681.540.001,157,123,558.071,157,123,558.07-8,479,051,379.38-8,498,589,060.92
=$0K1,184,582.570.001,184,582.5711,682,028,871.430.000.0010,800,329,645.510.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
$0-10K10,524,169.3932,230,266,169.6210,466,742.8662,198,928,487.6057,426.52329,152,124.8438,857,665,954.542,062,968,778.74148,828,598.8631,918,759,102.530.000.00148,828,598.8640,807,711.260.003,241,057,820.92-3,133,036,933.323,706,251,637.18573,214,703.860.0015,187,351,853.7415,187,351,853.7447,578,501,087.4347,005,286,383.57
$10-20K9,856,950.91101,964,678,345.209,179,893.3177,386,809,860.00677,057.607,776,349,086.6261,583,122,242.439,879,109,169.97872,649,857.3296,075,128,491.610.000.00872,649,857.32183,324,636.970.0011,300,924,470.05-10,611,599,249.7011,753,883,040.531,142,283,790.830.0049,055,620,859.0449,055,620,859.04150,718,169,400.69149,575,885,609.86
$20-30K14,187,091.32184,816,224,655.9912,167,551.78112,230,951,792.572,019,539.5522,206,290,183.7097,384,235,179.7055,571,139,936.345,301,515,834.35169,160,855,184.7320,390.549,676,911.575,311,192,745.92712,662,852.980.0015,414,780,612.40-10,816,250,719.4521,806,791,307.9810,990,540,588.520.00161,448,146,979.87161,448,146,979.87353,577,020,480.29342,586,479,891.76
$30-40K15,494,557.05321,311,863,499.2212,033,579.27117,442,192,725.283,460,977.7850,401,736,063.40116,419,019,828.14122,946,681,973.4313,768,439,246.48290,861,433,700.6798,523.22256,827,121.4014,025,266,367.871,681,353,492.870.0017,047,549,621.77-4,703,636,746.7638,560,190,134.4933,856,553,387.720.00196,876,072,321.78196,876,072,321.78539,359,210,594.01505,502,657,206.29
$40-50K15,151,582.94430,175,687,776.1410,589,610.13108,931,066,384.204,561,972.8171,067,079,854.66123,203,909,443.81197,220,451,781.4123,154,155,827.82385,019,765,005.50122,453.72128,611,736.7923,282,767,564.622,449,800,863.340.0013,020,363,720.357,812,602,980.9351,692,438,629.0559,505,041,609.980.00218,910,979,555.80218,910,979,555.80676,107,586,451.90616,602,544,841.92
$50-75K33,489,598.761,369,885,040,152.0820,561,494.48236,140,355,123.1012,928,104.28230,703,763,063.45311,407,407,345.02727,748,629,256.6692,037,803,662.541,231,240,511,712.1692,263.76224,995,609.6292,262,799,272.167,962,971,075.290.0022,143,504,264.2362,156,323,932.64157,776,305,955.90219,932,629,888.540.00615,527,631,412.69615,527,631,412.692,052,435,310,170.961,832,502,680,282.42
$75-100K21,359,107.451,309,914,971,679.7410,448,863.05129,218,564,229.7310,910,244.40240,866,982,374.33219,918,493,478.41792,739,412,957.48111,784,148,720.141,164,641,122,741.4360,172.48151,689,861.36111,935,838,581.516,377,413,154.290.006,612,862,006.3298,945,563,420.90146,677,998,918.35245,623,562,339.250.00474,177,131,755.81474,177,131,755.811,841,214,093,899.971,595,590,531,560.73
$100-200K44,684,125.624,850,751,351,224.2114,327,762.31199,061,227,370.6530,356,363.31884,386,474,267.95501,909,275,482.963,353,408,272,334.52530,569,772,567.364,326,983,485,305.63145,626.94608,303,710.76531,178,076,278.1310,263,777,373.680.003,615,729,050.09517,298,569,854.35497,399,069,146.181,014,697,639,000.540.001,262,739,922,328.831,262,739,922,328.836,279,717,133,686.265,265,019,494,685.72
$200-500K20,873,881.624,605,712,495,050.713,256,141.4346,102,463,359.0217,617,740.19711,765,833,333.51263,273,098,810.023,611,160,970,593.14717,003,084,266.414,225,391,250,219.793,614,321.8411,731,509,224.51728,734,593,490.92608,419,255.962,371,733,493.36991,595,239.03729,506,312,489.28423,974,199,726.961,153,480,512,216.240.00963,592,886,622.69963,592,886,622.695,829,668,064,249.394,676,187,552,033.15
$500-1000K1,694,025.75967,726,285,154.8562,424.161,047,798,797.201,631,601.5895,141,608,053.423,585,945,366.83868,167,225,655.13220,322,756,511.65922,410,521,111.501,099,261.788,712,502,324.55229,035,258,836.2033,832,435.922,437,032,991.64140,191,748.64231,298,267,643.2854,095,515,871.59285,393,783,514.860.0088,578,415,674.7988,578,415,674.791,088,938,260,718.11803,544,477,203.25
>$1000K568,268.811,211,555,724,895.5957,152.26957,119,201.30511,116.5560,383,152,318.3024,186,994.011,150,191,266,381.99375,173,379,498.651,186,442,542,009.99129,895.922,347,063,715.70377,520,443,214.3410,976,079.129,020,805,839.490.00386,530,272,974.7236,268,276,152.97422,798,549,127.690.0011,713,119,098.8711,713,119,098.871,257,316,391,209.64834,517,842,081.96
ALL189,134,250.7215,376,307,918,990.29104,402,106.141,103,324,359,098.3984,732,144.582,375,028,420,724.191,749,141,313,310.5610,891,096,128,818.812,090,136,534,591.5914,020,408,704,972.485,382,910.2024,171,180,216.262,114,307,714,807.8530,325,338,931.6813,829,572,324.4893,529,504,419.572,004,282,443,781.081,443,731,404,068.483,448,013,847,849.570.004,058,964,402,022.004,058,964,402,022.0020,108,150,690,569.2716,660,136,842,719.70
", "diff_itax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_9tax_cut_9perc_cut_9tax_inc_9perc_inc_9mean_9tot_change_9share_of_change_9ubi_9benefit_cost_total_9benefit_value_total_9pc_aftertaxinc_9
<$0K66,308.530.000.000.000.000.000.000.000.001,157,123,558.071,157,123,558.07-0.02
=$0K1,184,582.570.000.000.000.000.000.000.000.000.000.00nan
$0-10K10,524,169.3923,155.680.22296,079.152.810.485,071,357.870.410.0015,187,351,853.7415,187,351,853.740.73
$10-20K9,856,950.911,603.570.02152,832.261.550.343,355,618.290.270.0049,055,620,859.0449,055,620,859.040.74
$20-30K14,187,091.3246,036.100.32183,746.421.300.172,385,385.620.190.00161,448,146,979.87161,448,146,979.870.61
$30-40K15,494,557.0522,331.230.14811,557.795.242.4838,489,501.783.080.00196,876,072,321.78196,876,072,321.780.76
$40-50K15,151,582.9429,362.530.191,220,758.058.064.4867,935,756.255.440.00218,910,979,555.80218,910,979,555.800.84
$50-75K33,489,598.761,201.600.001,897,614.505.673.57119,512,890.929.570.00615,527,631,412.69615,527,631,412.690.84
$75-100K21,359,107.451,256.190.011,139,714.665.345.09108,763,685.438.700.00474,177,131,755.81474,177,131,755.810.89
$100-200K44,684,125.620.000.003,477,117.387.787.46333,244,075.8326.670.001,262,739,922,328.831,262,739,922,328.830.91
$200-500K20,873,881.62137,666.970.661,582,603.497.5814.68306,463,764.3124.530.00963,592,886,622.69963,592,886,622.690.83
$500-1000K1,694,025.7519,333.841.14280,343.1716.5591.27154,608,986.8212.370.0088,578,415,674.7988,578,415,674.790.51
>$1000K568,268.8130,821.865.42163,397.9028.75192.90109,617,208.078.770.0011,713,119,098.8711,713,119,098.870.15
ALL189,134,250.72312,769.590.1711,205,764.765.926.611,249,448,231.19100.000.004,058,964,402,022.004,058,964,402,022.000.80
", "diff_ptax_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_9tax_cut_9perc_cut_9tax_inc_9perc_inc_9mean_9tot_change_9share_of_change_9ubi_9benefit_cost_total_9benefit_value_total_9pc_aftertaxinc_9
<$0K66,308.534,515.616.810.000.00-57.47-3,810,892.520.000.001,157,123,558.071,157,123,558.07-0.02
=$0K1,184,582.570.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,524,169.397,530,695.4471.560.000.00-65.52-689,533,056.250.270.0015,187,351,853.7415,187,351,853.740.73
$10-20K9,856,950.917,739,425.4278.520.000.00-221.56-2,183,936,083.790.850.0049,055,620,859.0449,055,620,859.040.74
$20-30K14,187,091.328,885,663.2162.630.000.00-285.05-4,044,021,076.521.570.00161,448,146,979.87161,448,146,979.870.61
$30-40K15,494,557.0510,657,135.1568.780.000.00-459.68-7,122,608,956.722.770.00196,876,072,321.78196,876,072,321.780.76
$40-50K15,151,582.9411,099,801.3373.260.000.00-629.79-9,542,245,593.173.710.00218,910,979,555.80218,910,979,555.800.84
$50-75K33,489,598.7625,279,295.2975.480.000.00-872.66-29,224,992,940.3011.350.00615,527,631,412.69615,527,631,412.690.84
$75-100K21,359,107.4516,920,796.5879.220.000.00-1,273.37-27,198,024,852.0010.560.00474,177,131,755.81474,177,131,755.810.89
$100-200K44,684,125.6235,584,167.4079.630.000.00-2,064.74-92,261,134,176.3935.830.001,262,739,922,328.831,262,739,922,328.830.91
$200-500K20,873,881.6217,586,429.6984.250.000.00-3,613.64-75,430,610,509.6929.300.00963,592,886,622.69963,592,886,622.690.83
$500-1000K1,694,025.751,418,187.6083.720.000.00-4,489.05-7,604,564,199.672.950.0088,578,415,674.7988,578,415,674.790.51
>$1000K568,268.81490,211.5686.267,192.421.27-3,804.66-2,162,067,145.920.840.0011,713,119,098.8711,713,119,098.870.15
ALL189,134,250.72143,196,324.2875.717,192.420.00-1,361.30-257,467,549,482.95100.000.004,058,964,402,022.004,058,964,402,022.000.80
", "diff_comb_xbin": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_9tax_cut_9perc_cut_9tax_inc_9perc_inc_9mean_9tot_change_9share_of_change_9ubi_9benefit_cost_total_9benefit_value_total_9pc_aftertaxinc_9
<$0K66,308.534,515.616.810.000.00-57.47-3,810,892.520.000.001,157,123,558.071,157,123,558.07-0.02
=$0K1,184,582.570.000.000.000.000.000.00-0.000.000.000.00nan
$0-10K10,524,169.397,530,695.4471.560.000.00-65.04-684,461,698.380.270.0015,187,351,853.7415,187,351,853.740.73
$10-20K9,856,950.917,739,425.4278.520.000.00-221.22-2,180,580,465.500.850.0049,055,620,859.0449,055,620,859.040.74
$20-30K14,187,091.328,885,663.2162.630.000.00-284.88-4,041,635,690.901.580.00161,448,146,979.87161,448,146,979.870.61
$30-40K15,494,557.0510,657,135.1568.780.000.00-457.20-7,084,119,454.942.760.00196,876,072,321.78196,876,072,321.780.76
$40-50K15,151,582.9411,099,801.3373.260.000.00-625.30-9,474,309,836.923.700.00218,910,979,555.80218,910,979,555.800.84
$50-75K33,489,598.7625,279,295.2975.480.000.00-869.09-29,105,480,049.3811.360.00615,527,631,412.69615,527,631,412.690.84
$75-100K21,359,107.4516,920,796.5879.220.000.00-1,268.28-27,089,261,166.5710.570.00474,177,131,755.81474,177,131,755.810.89
$100-200K44,684,125.6235,584,167.4079.630.000.00-2,057.28-91,927,890,100.5735.880.001,262,739,922,328.831,262,739,922,328.830.91
$200-500K20,873,881.6217,586,429.6984.250.000.00-3,598.95-75,124,146,745.3829.320.00963,592,886,622.69963,592,886,622.690.83
$500-1000K1,694,025.751,418,187.6083.720.000.00-4,397.78-7,449,955,212.852.910.0088,578,415,674.7988,578,415,674.790.51
>$1000K568,268.81490,211.5686.267,192.421.27-3,611.76-2,052,449,937.840.800.0011,713,119,098.8711,713,119,098.870.15
ALL189,134,250.72143,196,324.2875.717,192.420.00-1,354.69-256,218,101,251.76100.000.004,058,964,402,022.004,058,964,402,022.000.80
", "dist1_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_9c00100_9num_returns_StandardDed_9standard_9num_returns_ItemDed_9c04470_9c04600_9c04800_9taxbc_9c62100_9num_returns_AMT_9c09600_9c05800_9c07100_9othertaxes_9refund_9iitax_9payrolltax_9combined_9ubi_9benefit_cost_total_9benefit_value_total_9expanded_income_9aftertax_income_9
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,888,876.2793,936,918,256.1318,405,907.08129,762,811,222.82482,969.195,736,078,992.9493,781,032,188.647,399,568,131.76585,478,147.3689,633,380,113.550.000.00585,478,147.36144,962,426.530.0011,163,004,445.05-10,722,488,724.2214,138,334,389.073,415,845,664.850.0044,008,702,947.4744,008,702,947.47139,486,608,542.27136,070,762,877.42
10-2018,929,169.02252,125,490,409.1416,294,511.03150,439,832,102.522,634,657.9931,193,013,419.79129,624,464,288.0271,344,517,059.986,941,007,758.51229,483,780,565.7520,390.549,676,911.576,950,684,670.08912,565,737.340.0020,903,249,021.71-14,865,130,088.9735,699,817,770.5520,834,687,681.580.00204,093,047,723.67204,093,047,723.67468,682,647,898.33447,847,960,216.75
20-3018,915,167.63425,361,827,108.8314,396,657.99142,494,265,304.224,518,509.6464,920,809,158.12145,389,318,232.18172,285,536,762.7419,711,976,579.15387,076,245,271.02145,323.56335,537,932.1720,047,514,511.322,418,858,284.490.0020,347,653,528.00-2,718,997,301.1760,430,021,598.8757,711,024,297.700.00251,015,791,489.47251,015,791,489.47708,088,409,119.80650,377,384,822.10
30-4018,904,017.40602,242,628,333.5312,619,072.83133,598,005,186.646,284,944.57101,884,388,812.21156,763,135,851.17294,821,637,513.1235,474,168,041.80540,103,221,772.4692,849.3584,546,479.3435,558,714,521.143,277,602,123.340.0013,763,295,849.0218,517,816,548.7785,287,344,255.50103,805,160,804.270.00293,204,075,010.11293,204,075,010.11938,615,817,194.41834,810,656,390.14
40-5018,894,183.57787,331,774,013.8011,532,891.73131,427,883,451.167,361,291.84134,238,734,869.44180,063,761,829.13417,209,296,335.1452,325,312,104.68705,844,997,424.0875,067.80190,350,056.3052,515,662,160.984,938,016,748.940.0013,231,001,460.9734,346,643,951.07106,623,364,620.98140,970,008,572.040.00353,650,288,835.13353,650,288,835.131,187,499,365,662.481,046,529,357,090.43
50-6018,944,501.051,040,506,332,228.899,776,756.11120,988,118,658.569,167,744.94193,448,468,942.08193,485,541,923.26606,016,921,996.8782,688,281,469.99919,926,174,600.5823,132.19101,896,094.0282,790,177,564.015,170,723,008.920.007,629,467,158.1569,989,987,396.93138,539,106,602.01208,529,093,998.950.00409,544,698,397.55409,544,698,397.551,506,128,863,424.971,297,599,769,426.03
60-7018,911,488.711,440,335,906,770.358,168,219.89110,035,120,921.7510,743,268.82256,055,071,025.51199,653,777,890.86917,768,461,373.40134,923,821,778.761,290,288,726,856.39142,617.63558,084,232.35135,481,906,011.106,353,650,152.020.003,694,627,037.57125,433,628,821.52179,440,801,522.53304,874,430,344.050.00446,235,973,262.29446,235,973,262.291,939,912,155,536.191,635,037,725,192.14
70-8018,904,619.851,927,862,594,657.376,178,127.9083,005,245,657.6112,726,491.95359,276,127,452.84208,640,404,466.431,316,343,185,600.37203,552,634,579.421,710,181,998,776.497,695.2945,975,778.11203,598,610,357.535,005,932,021.630.001,309,798,511.00197,282,879,824.90236,028,262,937.58433,311,142,762.480.00546,945,784,281.27546,945,784,281.272,547,133,745,702.972,113,822,602,940.48
80-9018,924,796.672,704,845,404,412.854,519,773.7766,247,607,082.8414,405,022.90478,275,040,883.94233,034,761,725.601,960,226,586,488.05329,209,334,219.922,429,570,347,630.5434,940.4655,847,798.11329,265,182,018.031,648,906,028.476,040,706.81701,280,606.98326,921,036,089.40328,532,775,052.45655,453,811,141.840.00604,741,503,300.38604,741,503,300.383,458,578,895,721.132,803,125,084,579.28
90-10018,917,430.566,096,337,227,051.132,535,776.4835,717,257,532.5416,381,654.08748,970,525,891.24208,725,397,888.775,122,652,275,830.331,223,587,854,449.695,713,442,590,906.224,839,333.4822,783,377,614.241,246,371,232,063.93441,179,731.0913,821,564,183.95903,997,485.131,258,847,619,031.67516,479,124,801.901,775,326,743,833.560.00905,524,536,774.66905,524,536,774.667,337,478,505,182.695,562,151,761,349.12
ALL189,134,250.7215,370,886,103,242.02104,427,694.811,103,716,147,120.6784,706,555.912,373,998,259,448.121,749,161,596,284.0710,886,067,987,091.772,088,999,869,129.2814,015,551,463,917.095,381,350.2924,165,292,896.202,113,165,162,025.4830,312,396,262.7613,827,604,890.7693,647,375,103.582,003,032,995,549.901,701,198,953,551.433,704,231,949,101.330.004,058,964,402,022.004,058,964,402,022.0020,231,605,013,985.2216,527,373,064,883.89
90-959,459,705.811,847,992,070,289.471,499,534.0421,339,709,156.187,960,171.77298,790,601,417.07117,406,350,629.361,418,950,226,299.26267,495,127,987.751,690,268,542,106.43357,720.88483,704,281.50267,978,832,269.24256,273,504.16195,852,522.78522,883,344.39267,395,527,943.47213,817,763,058.33481,213,291,001.800.00401,484,089,620.96401,484,089,620.962,360,313,271,098.021,879,099,980,096.22
95-997,565,269.002,222,435,534,952.52942,049.5612,875,299,604.386,623,219.45310,964,410,515.6689,947,023,318.911,819,743,798,540.10393,005,631,940.662,059,435,698,883.363,465,180.0811,944,548,972.12404,950,180,912.78141,987,503.072,380,038,921.73240,922,392.09406,947,309,939.35213,714,717,686.54620,662,027,625.890.00436,645,439,247.49436,645,439,247.492,815,365,542,642.262,194,703,515,016.37
Top 1%1,892,455.752,025,909,621,809.1594,192.881,502,248,771.981,798,262.87139,215,513,958.511,372,023,940.511,883,958,250,990.98563,087,094,521.291,963,738,349,916.441,016,432.5210,355,124,360.62573,442,218,881.9142,918,723.8511,245,672,739.44140,191,748.64584,504,781,148.8588,946,644,057.02673,451,425,205.870.0067,395,007,906.2167,395,007,906.212,161,799,691,442.411,488,348,266,236.54
", "dist2_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
s006_9c00100_9num_returns_StandardDed_9standard_9num_returns_ItemDed_9c04470_9c04600_9c04800_9taxbc_9c62100_9num_returns_AMT_9c09600_9c05800_9c07100_9othertaxes_9refund_9iitax_9payrolltax_9combined_9ubi_9benefit_cost_total_9benefit_value_total_9expanded_income_9aftertax_income_9
0-10n0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10z0.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
0-10p18,888,876.2793,945,285,512.3918,405,907.08129,762,811,222.82482,969.195,736,078,992.9493,781,032,188.647,400,934,973.65585,614,831.5589,641,747,369.810.000.00585,614,831.55144,962,426.530.0011,155,599,920.36-10,714,947,515.3411,921,812,995.231,206,865,479.890.0044,008,702,947.4744,008,702,947.47138,386,715,101.61137,179,849,621.72
10-2018,929,169.02252,260,123,916.2216,294,511.03150,439,832,102.522,634,657.9931,192,806,641.13129,624,464,288.0271,416,951,344.806,949,283,581.70229,618,591,155.9520,390.549,676,911.576,958,960,493.27913,116,120.390.0020,900,963,649.96-14,855,119,277.0830,120,064,891.5515,264,945,614.470.00204,093,047,723.67204,093,047,723.67466,027,404,965.91450,762,459,351.43
20-3018,915,167.63425,757,068,281.9514,396,657.99142,494,265,304.224,518,509.6464,918,580,177.95145,389,318,232.18172,558,982,351.9119,745,749,757.15387,473,735,914.71145,323.56335,537,932.1720,081,287,689.322,424,728,994.670.0020,318,001,854.32-2,661,443,159.6851,010,070,657.7448,348,627,498.070.00251,015,791,489.47251,015,791,489.47703,773,095,094.40655,424,467,596.33
30-4018,904,017.40602,794,951,093.9212,617,670.41133,576,532,700.686,286,346.99101,906,346,096.42156,763,135,851.17295,294,466,515.8935,535,549,148.66540,642,192,779.1692,849.3584,546,479.3435,620,095,627.993,281,550,748.190.0013,733,904,250.2818,604,640,629.5371,989,957,608.1990,594,598,237.720.00293,204,075,010.11293,204,075,010.11932,506,631,104.64841,912,032,866.92
40-5018,894,183.57787,693,787,064.5011,510,457.60131,084,394,592.277,383,725.97135,243,293,605.67180,063,761,829.13417,523,872,992.0252,368,079,590.54705,676,338,561.0275,067.80190,350,056.3052,558,429,646.854,941,479,668.070.0013,213,831,492.1134,403,118,486.6689,949,865,109.60124,352,983,596.270.00353,650,288,835.13353,650,288,835.131,179,507,109,231.251,055,154,125,634.98
50-6018,944,501.051,041,003,225,574.399,775,003.99120,961,291,981.139,169,497.05193,496,593,640.32193,485,541,923.26606,472,803,132.2082,775,049,683.83920,386,911,094.5823,132.19101,896,094.0282,876,945,777.855,177,044,763.670.007,613,524,596.6270,086,376,417.56116,876,863,376.17186,963,239,793.730.00409,544,698,397.55409,544,698,397.551,495,759,746,233.421,308,796,506,439.69
60-7018,911,488.711,440,804,573,957.338,168,219.89110,035,120,921.7510,743,268.82256,054,087,559.02199,653,777,890.86918,201,411,992.48135,003,876,406.481,290,758,432,326.11142,617.63558,084,232.35135,561,960,638.836,352,574,556.420.003,687,633,475.05125,521,752,607.36151,359,657,046.77276,881,409,654.130.00446,235,973,262.29446,235,973,262.291,926,313,949,877.471,649,432,540,223.34
70-8018,904,619.851,928,350,515,910.536,178,127.9083,005,245,657.6112,726,491.95359,271,212,964.67208,640,404,466.431,316,791,537,819.22203,636,282,368.061,710,674,625,833.047,695.2945,975,778.11203,682,258,146.175,001,070,173.770.001,307,077,121.12197,374,110,851.29199,076,139,886.61396,450,250,737.900.00546,945,784,281.27546,945,784,281.272,529,136,581,299.702,132,686,330,561.80
80-9018,924,796.672,705,805,439,738.004,519,773.7766,247,607,082.8414,405,022.90478,272,061,023.49233,034,761,725.601,961,181,862,381.20329,442,666,622.132,430,531,585,727.1834,940.4655,880,867.06329,498,547,489.191,646,325,649.566,040,706.81700,028,312.83327,158,234,233.61277,225,073,347.24604,383,307,580.850.00604,741,503,300.38604,741,503,300.383,433,874,592,860.742,829,491,285,279.89
90-10018,917,430.566,097,892,947,941.052,535,776.4835,717,257,532.5416,381,654.08748,937,360,022.58208,705,114,915.275,124,253,305,315.431,224,094,382,601.505,715,004,544,210.914,840,893.3822,789,231,865.351,246,883,614,466.84442,485,830.4213,823,531,617.68898,939,746.931,259,365,720,507.17444,201,899,149.371,703,567,619,656.540.00905,524,536,774.66905,524,536,774.667,302,864,864,800.135,599,297,245,143.60
ALL189,134,250.7215,376,307,918,990.29104,402,106.141,103,324,359,098.3984,732,144.582,375,028,420,724.191,749,141,313,310.5610,891,096,128,818.812,090,136,534,591.5914,020,408,704,972.485,382,910.2024,171,180,216.262,114,307,714,807.8530,325,338,931.6813,829,572,324.4893,529,504,419.572,004,282,443,781.081,443,731,404,068.483,448,013,847,849.570.004,058,964,402,022.004,058,964,402,022.0020,108,150,690,569.2716,660,136,842,719.70
90-959,459,705.811,848,390,883,610.871,499,534.0421,339,709,156.187,960,171.77298,786,831,270.52117,406,350,629.361,419,348,952,974.27267,596,435,432.481,690,669,483,458.90357,720.88485,629,226.47268,082,064,658.95257,512,719.21196,369,318.58518,307,634.51267,502,613,623.80180,874,824,734.52448,377,438,358.320.00401,484,089,620.96401,484,089,620.962,344,238,996,067.931,895,861,557,709.60
95-997,565,269.002,222,942,420,282.27942,049.5612,875,299,604.386,623,219.45310,954,972,944.8389,931,373,157.041,820,271,488,148.50393,161,336,933.372,059,946,569,854.313,466,739.9811,952,418,914.00405,113,755,847.37142,064,094.332,381,142,949.64240,440,363.78407,112,394,338.90182,600,220,441.76589,712,614,780.660.00436,645,439,247.49436,645,439,247.492,800,312,109,747.562,210,599,494,966.89
Top 1%1,892,455.752,026,559,644,047.9194,192.881,502,248,771.981,798,262.87139,195,555,807.221,367,391,128.871,884,632,864,192.67563,336,610,235.641,964,388,490,897.691,016,432.5210,351,183,724.88573,687,793,960.5242,909,016.8711,246,019,349.46140,191,748.64584,750,712,544.4680,726,853,973.09665,477,566,517.550.0067,395,007,906.2167,395,007,906.212,158,313,758,984.651,492,836,192,467.10
", "diff_itax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_9tax_cut_9perc_cut_9tax_inc_9perc_inc_9mean_9tot_change_9share_of_change_9ubi_9benefit_cost_total_9benefit_value_total_9pc_aftertaxinc_9
0-10n0.000.000.000.000.000.000.000.000.000.000.00nan
0-10z0.000.000.000.000.000.000.000.000.000.000.00nan
0-10p18,888,876.2723,155.680.12385,974.112.040.407,541,208.880.600.0044,008,702,947.4744,008,702,947.470.82
10-2018,929,169.0253,180.880.28432,699.682.290.5310,010,811.890.800.00204,093,047,723.67204,093,047,723.670.65
20-3018,915,167.6316,790.030.091,000,780.575.293.0457,554,141.494.610.00251,015,791,489.47251,015,791,489.470.78
30-4018,904,017.4029,362.530.161,540,799.468.154.5986,824,080.766.950.00293,204,075,010.11293,204,075,010.110.85
40-5018,894,183.571,201.600.01975,673.615.162.9956,474,535.604.520.00353,650,288,835.13353,650,288,835.130.82
50-6018,944,501.051,256.190.01981,343.845.185.0996,389,020.627.710.00409,544,698,397.55409,544,698,397.550.86
60-7018,911,488.710.000.001,048,409.995.544.6688,123,785.847.050.00446,235,973,262.29446,235,973,262.290.88
70-8018,904,619.850.000.001,572,862.958.324.8391,231,026.397.300.00546,945,784,281.27546,945,784,281.270.89
80-9018,924,796.6712,933.780.071,638,192.548.6612.53237,198,144.2218.980.00604,741,503,300.38604,741,503,300.380.94
90-10018,917,430.56174,888.890.921,629,027.998.6127.39518,101,475.5041.470.00905,524,536,774.66905,524,536,774.660.67
ALL189,134,250.72312,769.590.1711,205,764.765.926.611,249,448,231.19100.000.004,058,964,402,022.004,058,964,402,022.000.80
90-959,459,705.8112,292.620.13692,142.167.3211.32107,085,680.338.570.00401,484,089,620.96401,484,089,620.960.89
95-997,565,269.00115,142.201.52525,925.526.9521.82165,084,399.5513.210.00436,645,439,247.49436,645,439,247.490.72
Top 1%1,892,455.7547,454.082.51410,960.3221.72129.95245,931,395.6119.680.0067,395,007,906.2167,395,007,906.210.30
", "diff_ptax_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_9tax_cut_9perc_cut_9tax_inc_9perc_inc_9mean_9tot_change_9share_of_change_9ubi_9benefit_cost_total_9benefit_value_total_9pc_aftertaxinc_9
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,888,876.2713,417,185.0471.030.000.00-117.35-2,216,521,393.840.860.0044,008,702,947.4744,008,702,947.470.82
10-2018,929,169.0212,222,640.9364.570.000.00-294.77-5,579,752,879.002.170.00204,093,047,723.67204,093,047,723.670.65
20-3018,915,167.6313,110,463.8369.310.000.00-498.01-9,419,950,941.123.660.00251,015,791,489.47251,015,791,489.470.78
30-4018,904,017.4013,898,909.6173.520.000.00-703.42-13,297,386,647.315.160.00293,204,075,010.11293,204,075,010.110.85
40-5018,894,183.5714,279,001.0975.570.000.00-882.47-16,673,499,511.376.480.00353,650,288,835.13353,650,288,835.130.82
50-6018,944,501.0514,869,675.2478.490.000.00-1,143.46-21,662,243,225.848.410.00409,544,698,397.55409,544,698,397.550.86
60-7018,911,488.7115,050,798.4579.590.000.00-1,484.87-28,081,144,475.7610.910.00446,235,973,262.29446,235,973,262.290.88
70-8018,904,619.8514,836,133.2378.480.000.00-1,954.66-36,952,123,050.9714.350.00546,945,784,281.27546,945,784,281.270.89
80-9018,924,796.6715,564,447.2382.240.000.00-2,711.14-51,307,701,705.2119.930.00604,741,503,300.38604,741,503,300.380.94
90-10018,917,430.5615,947,069.6284.307,192.420.04-3,820.67-72,277,225,652.5228.070.00905,524,536,774.66905,524,536,774.660.67
ALL189,134,250.72143,196,324.2875.717,192.420.00-1,361.30-257,467,549,482.95100.000.004,058,964,402,022.004,058,964,402,022.000.80
90-959,459,705.818,034,320.5084.930.000.00-3,482.45-32,942,938,323.8112.790.00401,484,089,620.96401,484,089,620.960.89
95-997,565,269.006,230,988.2082.360.000.00-4,112.81-31,114,497,244.7812.080.00436,645,439,247.49436,645,439,247.490.72
Top 1%1,892,455.751,681,760.9288.877,192.420.38-4,343.45-8,219,790,083.943.190.0067,395,007,906.2167,395,007,906.210.30
", "diff_comb_xdec": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
count_9tax_cut_9perc_cut_9tax_inc_9perc_inc_9mean_9tot_change_9share_of_change_9ubi_9benefit_cost_total_9benefit_value_total_9pc_aftertaxinc_9
0-10n0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10z0.000.000.000.000.000.000.00-0.000.000.000.00nan
0-10p18,888,876.2713,417,185.0471.030.000.00-116.95-2,208,980,184.960.860.0044,008,702,947.4744,008,702,947.470.82
10-2018,929,169.0212,222,640.9364.570.000.00-294.24-5,569,742,067.112.170.00204,093,047,723.67204,093,047,723.670.65
20-3018,915,167.6313,110,463.8369.310.000.00-494.97-9,362,396,799.643.650.00251,015,791,489.47251,015,791,489.470.78
30-4018,904,017.4013,898,909.6173.520.000.00-698.82-13,210,562,566.555.160.00293,204,075,010.11293,204,075,010.110.85
40-5018,894,183.5714,279,001.0975.570.000.00-879.48-16,617,024,975.776.490.00353,650,288,835.13353,650,288,835.130.82
50-6018,944,501.0514,869,675.2478.490.000.00-1,138.37-21,565,854,205.228.420.00409,544,698,397.55409,544,698,397.550.86
60-7018,911,488.7115,050,798.4579.590.000.00-1,480.21-27,993,020,689.9210.930.00446,235,973,262.29446,235,973,262.290.88
70-8018,904,619.8514,836,133.2378.480.000.00-1,949.84-36,860,892,024.5814.390.00546,945,784,281.27546,945,784,281.270.89
80-9018,924,796.6715,564,447.2382.240.000.00-2,698.60-51,070,503,560.9919.930.00604,741,503,300.38604,741,503,300.380.94
90-10018,917,430.5615,947,069.6284.307,192.420.04-3,793.28-71,759,124,177.0228.010.00905,524,536,774.66905,524,536,774.660.67
ALL189,134,250.72143,196,324.2875.717,192.420.00-1,354.69-256,218,101,251.76100.000.004,058,964,402,022.004,058,964,402,022.000.80
90-959,459,705.818,034,320.5084.930.000.00-3,471.13-32,835,852,643.4712.820.00401,484,089,620.96401,484,089,620.960.89
95-997,565,269.006,230,988.2082.360.000.00-4,090.99-30,949,412,845.2312.080.00436,645,439,247.49436,645,439,247.490.72
Top 1%1,892,455.751,681,760.9288.877,192.420.38-4,213.50-7,973,858,688.323.110.0067,395,007,906.2167,395,007,906.210.30
"}, "taxcalc_version": "0.8.4-1973-g1b1a109c", "dropq_version": "0.8.4-1973-g1b1a109c"} diff --git a/webapp/apps/taxbrain/tests/test_all.py b/webapp/apps/taxbrain/tests/test_all.py index ace68104..ff37db28 100644 --- a/webapp/apps/taxbrain/tests/test_all.py +++ b/webapp/apps/taxbrain/tests/test_all.py @@ -1,6 +1,5 @@ from django.test import TestCase -from ..models import WorkerNodesCounter from ..helpers import (expand_1D, expand_2D, expand_list, package_up_vars, format_csv, arrange_totals_by_row, default_taxcalc_data) from ..param_displayers import default_policy @@ -12,45 +11,6 @@ FBY = 2015 -@pytest.mark.django_db -def test_compute(): - assert compute - compute.DROPQ_WORKERS = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] - compute.NUM_BUDGET_YEARS = 5 - wnc, created = WorkerNodesCounter.objects.get_or_create( - singleton_enforce=1) - dropq_worker_offset = wnc.current_offset - hostnames = compute.DROPQ_WORKERS[dropq_worker_offset: - dropq_worker_offset + - compute.NUM_BUDGET_YEARS] - assert hostnames == [1, 2, 3, 4, 5] - wnc.current_offset = ((dropq_worker_offset + compute.NUM_BUDGET_YEARS) % - len(compute.DROPQ_WORKERS)) - wnc.save() - - assert wnc.current_offset == 5 - dropq_worker_offset = wnc.current_offset - hostnames = compute.DROPQ_WORKERS[dropq_worker_offset: - dropq_worker_offset + - compute.NUM_BUDGET_YEARS] - assert hostnames == [6, 7, 8, 9, 10] - wnc.current_offset = ((dropq_worker_offset + compute.NUM_BUDGET_YEARS) % - len(compute.DROPQ_WORKERS)) - wnc.save() - - assert wnc.current_offset == 0 - dropq_worker_offset = wnc.current_offset - hostnames = compute.DROPQ_WORKERS[dropq_worker_offset: - dropq_worker_offset + - compute.NUM_BUDGET_YEARS] - assert hostnames == [1, 2, 3, 4, 5] - # Reset to original values - compute.DROPQ_WORKERS = ['localhost:5050'] - wnc.current_offset = 0 - wnc.save() - compute.NUM_BUDGET_YEARS = 2 - - def test_convert_val(): field = '*,*,130000' out = [convert_val(x) for x in field.split(',')] diff --git a/webapp/apps/taxbrain/tests/test_views.py b/webapp/apps/taxbrain/tests/test_views.py index cf43543a..18138afa 100644 --- a/webapp/apps/taxbrain/tests/test_views.py +++ b/webapp/apps/taxbrain/tests/test_views.py @@ -5,7 +5,7 @@ import os import msgpack -from ..models import TaxSaveInputs, OutputUrl, WorkerNodesCounter +from ..models import TaxSaveInputs, OutputUrl from ..helpers import (expand_1D, expand_2D, expand_list, package_up_vars, format_csv, arrange_totals_by_row, default_taxcalc_data) from ...core.compute import Compute @@ -78,19 +78,9 @@ def test_taxbrain_quick_calc_post(self, data_source): data['II_em'] = ['4333'] data['ID_AmountCap_Switch_0'] = ['0'] data['data_source'] = data_source - wnc, created = WorkerNodesCounter.objects.get_or_create( - singleton_enforce=1) - current_dropq_worker_offset = wnc.current_offset result = do_micro_sim(CLIENT, data, compute_count=1) - wnc, created = WorkerNodesCounter.objects.get_or_create( - singleton_enforce=1) - next_dropq_worker_offset = wnc.current_offset - - # Check that quick calc does not advance the counter - assert current_dropq_worker_offset == next_dropq_worker_offset - # Check that data was saved properly truth_mods = {START_YEAR: {"_ID_BenefitSurtax_Switch": [[0.0, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0]], @@ -126,9 +116,6 @@ def test_taxbrain_file_post_quick_calc(self, data_source): data = get_file_post_data(START_YEAR, self.r1, quick_calc=False) data.pop('data_source') data.pop('start_year') - wnc, created = WorkerNodesCounter.objects.get_or_create( - singleton_enforce=1) - current_dropq_worker_offset = wnc.current_offset post_url = '/taxbrain/file/?start_year={0}&data_source={1}'.format( START_YEAR, data_source) @@ -140,13 +127,6 @@ def test_taxbrain_file_post_quick_calc(self, data_source): post_url=post_url ) - wnc, created = WorkerNodesCounter.objects.get_or_create( - singleton_enforce=1) - next_dropq_worker_offset = wnc.current_offset - - # Check that quick calc does not advance the counter - assert current_dropq_worker_offset == next_dropq_worker_offset - # Check that data was saved properly truth_mods = taxcalc.Calculator.read_json_param_objects( self.r1, @@ -798,6 +778,7 @@ def test_taxbrain_old_data_gives_deprecation_errors(self): 'start_year,start_year_is_none', [(2018, False), (2017, True)] ) + @pytest.mark.xfail # Feature removed in new outputs module def test_get_not_avail_page_renders(self, start_year, start_year_is_none): """ Make sure not_avail.html page is rendered if exception is thrown diff --git a/webapp/apps/test_assets/utils.py b/webapp/apps/test_assets/utils.py index 08c5a8e7..cf08c15e 100644 --- a/webapp/apps/test_assets/utils.py +++ b/webapp/apps/test_assets/utils.py @@ -68,8 +68,6 @@ def do_micro_sim(client, data, tb_dropq_compute=None, dyn_dropq_compute=None, # TODO: check compute count once NUM_BUDGET_YEARS env variable issue is # resolved assert response2.status_code == 200 - if compute_count is not None: - assert tb_dropq_compute.count == compute_count # return response return {"response": response, "tb_dropq_compute": tb_dropq_compute, From 99be08e86d369731d6021e9c1c04d90a91e500ac Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Wed, 25 Jul 2018 14:27:51 -0400 Subject: [PATCH 15/66] Implement CoreRun --- webapp/apps/core/models.py | 109 ++++++++++++++++++++++++++++++--- webapp/apps/core/views.py | 79 +++++++++--------------- webapp/apps/dynamic/views.py | 4 +- webapp/apps/taxbrain/models.py | 90 +-------------------------- webapp/apps/taxbrain/urls.py | 2 +- webapp/apps/taxbrain/views.py | 23 +++---- 6 files changed, 147 insertions(+), 160 deletions(-) diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py index c92becdf..54fe90d6 100644 --- a/webapp/apps/core/models.py +++ b/webapp/apps/core/models.py @@ -1,13 +1,108 @@ from django.db import models from django.contrib.postgres.fields import JSONField from django.contrib.auth.models import User +import datetime +from django.utils.timezone import make_aware +from django.core.urlresolvers import reverse import uuid -# class CoreRun(models.Model): -# outputs = JSONField(default=None, blank=True, null=True) -# uuid = models.UUIDField( -# default=uuid.uuid4, -# editable=False, -# max_length=32, -# unique=True) +class SeparatedValuesField(models.TextField): + def __init__(self, *args, **kwargs): + self.token = kwargs.pop('token', ',') + super(SeparatedValuesField, self).__init__(*args, **kwargs) + + def to_python(self, value): + if not value: + return + if isinstance(value, list): + return value + return value.split(self.token) + + def get_db_prep_value(self, value, connection=None, prepared=False): + if not value: + return + assert(isinstance(value, list) or isinstance(value, tuple)) + return self.token.join([str(s) for s in value]) + + def value_to_string(self, obj): + value = self._get_val_from_obj(obj) + return self.get_db_prep_value(value) + + def from_db_value(self, value, expression, connection, context): + return self.to_python(value) + + +class JSONReformTaxCalculator(models.Model): + ''' + This class holds all of the text for a JSON-based reform input + for TaxBrain. A TaxSavesInput Model will have a foreign key to + an instance of this model if the user created the TaxBrain job + through the JSON iput page. + ''' + reform_text = models.TextField(blank=True, null=False) + raw_reform_text = models.TextField(blank=True, null=False) + assumption_text = models.TextField(blank=True, null=False) + raw_assumption_text = models.TextField(blank=True, null=False) + errors_warnings_text = models.TextField(blank=True, null=False) + + def get_errors_warnings(self): + """ + Errors were only stored for the taxcalc.Policy class until PB 1.6.0 + This method ensures that old runs are parsed correctly + """ + ew = json.loads(self.errors_warnings_text) + if 'errors' in ew: + return {'policy': ew} + else: + return ew + + +class CoreInputs(models.Model): + # Starting Year of the reform calculation + first_year = models.IntegerField(default=None, null=True) + # JSON input text + json_text = models.ForeignKey( + JSONReformTaxCalculator, + null=True, + default=None, + blank=True) + # Record whether or not this was a quick calculation on a sample of data + quick_calc = models.BooleanField(default=False) + # Creation DateTime + creation_date = models.DateTimeField( + default=make_aware(datetime.datetime(2015, 1, 1)) + ) + # validated gui input + input_fields = JSONField(default=None, blank=True, null=True) + # raw gui input + raw_input_fields = JSONField(default=None, blank=True, null=True) + + +class CoreRun(models.Model): + inputs = models.OneToOneField( + CoreInputs, + on_delete=models.CASCADE + ) + renderable_outputs = JSONField(default=None, blank=True, null=True) + download_only_outputs = JSONField(default=None, blank=True, null=True) + uuid = models.UUIDField( + default=uuid.uuid1, + editable=False, + max_length=32, + unique=True, + primary_key=True) + error_text = models.CharField( + null=False, + blank=True, + max_length=4000) + user = models.ForeignKey(User, null=True, default=None) + exp_comp_datetime = models.DateTimeField( + default=make_aware(datetime.datetime(2015, 1, 1))) + job_ids = SeparatedValuesField(blank=True, default=None, null=True) + + def get_absolute_url(self): + kwargs = { + 'pk': self.pk + } + return reverse('output_detail', kwargs=kwargs) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 787ee0bd..66f32139 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -4,12 +4,12 @@ import json from django.utils import timezone # from .models import CoreRun -from ..taxbrain.models import OutputUrl +from .models import CoreRun from .compute import Compute, JobFailError from ..formatters import get_version from ..taxbrain.views import TAXCALC_VERSION, WEBAPP_VERSION, dropq_compute from ..taxbrain.param_formatters import to_json_reform -from ..taxbrain.models import ErrorMessageTaxCalculator +from ..taxbrain.models import TaxSaveInputs from django.shortcuts import (render, render_to_response, get_object_or_404, redirect) from django.template.context import RequestContext @@ -32,35 +32,20 @@ def output_detail(request, pk): case 3b: not all jobs have completed """ - try: - url = OutputUrl.objects.get(pk=pk) - except OutputUrl.DoesNotExist: - raise Http404 + model = get_object_or_404(CoreRun, uuid=pk) - model = url.unique_inputs - - taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) - webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) - - context_vers_disp = {'taxcalc_version': taxcalc_vers_disp, - 'webapp_version': webapp_vers_disp} - if model.tax_result: - # try to render table; if failure render not available page - context = get_result_context(model, request, url) - - context.update(context_vers_disp) + if model.renderable_outputs: + context = get_result_context(model, request) return render(request, 'taxbrain/results.html', context) elif model.error_text: return render(request, 'taxbrain/failed.html', - {"error_msg": model.error_text.text}) + {"error_msg": model.error_text}) else: job_ids = model.job_ids try: jobs_ready = dropq_compute.results_ready(job_ids) except JobFailError as jfe: - print(jfe) return render_to_response('taxbrain/failed.html') - print(job_ids) if any(j == 'FAIL' for j in jobs_ready): failed_jobs = [sub_id for (sub_id, job_ready) in zip(job_ids, jobs_ready) @@ -74,28 +59,24 @@ def output_detail(request, pk): else: error_msg = "Error: stack trace for this error is unavailable" val_err_idx = error_msg.rfind("Error") - error = ErrorMessageTaxCalculator() error_contents = error_msg[val_err_idx:].replace(" ", " ") - error.text = error_contents - error.save() - model.error_text = error + model.error_text = error_contents model.save() return render(request, 'taxbrain/failed.html', {"error_msg": error_contents}) if all(j == 'YES' for j in jobs_ready): results = dropq_compute.get_results(job_ids) - model.tax_result = results + model.renderable_outputs = results['renderable'] + model.download_only_outputs = results['download_only'] model.creation_date = timezone.now() model.save() - context = get_result_context(model, request, url) - context.update(context_vers_disp) + context = get_result_context(model, request) return render(request, 'taxbrain/results.html', context) - else: if request.method == 'POST': # if not ready yet, insert number of minutes remaining - exp_comp_dt = url.exp_comp_datetime + exp_comp_dt = model.exp_comp_datetime utc_now = timezone.now() dt = exp_comp_dt - utc_now exp_num_minutes = dt.total_seconds() / 60. @@ -108,7 +89,6 @@ def output_detail(request, pk): else: context = {'eta': '100'} - context.update(context_vers_disp) return render_to_response( 'taxbrain/not_ready.html', context, @@ -116,22 +96,23 @@ def output_detail(request, pk): ) -def get_result_context(model, request, url): - output = model.get_tax_result() - first_year = model.first_year - quick_calc = model.quick_calc - created_on = model.creation_date +def get_result_context(model, request): + inputs = model.inputs + first_year = inputs.first_year + quick_calc = inputs.quick_calc + created_on = inputs.creation_date - is_from_file = not model.raw_input_fields + is_from_file = not inputs.raw_input_fields - if (model.json_text is not None and (model.json_text.raw_reform_text or - model.json_text.raw_assumption_text)): - reform_file_contents = model.json_text.raw_reform_text + if (inputs.json_text is not None and + (inputs.json_text.raw_reform_text or + inputs.json_text.raw_assumption_text)): + reform_file_contents = inputs.json_text.raw_reform_text reform_file_contents = reform_file_contents.replace(" ", " ") - assump_file_contents = model.json_text.raw_assumption_text + assump_file_contents = inputs.json_text.raw_assumption_text assump_file_contents = assump_file_contents.replace(" ", " ") - elif model.input_fields is not None: - reform = to_json_reform(first_year, model.input_fields) + elif inputs.input_fields is not None: + reform = to_json_reform(first_year, inputs.input_fields) reform_file_contents = json.dumps(reform, indent=4) assump_file_contents = '{}' else: @@ -143,7 +124,7 @@ def get_result_context(model, request, url): context = { 'locals': locals(), - 'unique_url': url, + 'unique_url': model, 'created_on': created_on, 'first_year': first_year, 'quick_calc': quick_calc, @@ -154,13 +135,9 @@ def get_result_context(model, request, url): 'dynamic_file_contents': None, 'is_from_file': is_from_file, 'allow_dyn_links': not is_from_file, - 'results_type': "static" + 'results_type': "static", + 'renderable': model.renderable_outputs.values() + # 'download_only': model.download_only_outputs.values() } - if 'renderable' in output: - context.update({ - 'renderable': output['renderable'].values(), - # 'download_only': output['download_only'] - }) - return context diff --git a/webapp/apps/dynamic/views.py b/webapp/apps/dynamic/views.py index edebab62..3eac5212 100644 --- a/webapp/apps/dynamic/views.py +++ b/webapp/apps/dynamic/views.py @@ -22,8 +22,7 @@ DynamicBehaviorSaveInputs, DynamicBehaviorOutputUrl, DynamicElasticitySaveInputs, DynamicElasticityOutputUrl) from ..taxbrain.models import (TaxSaveInputs, OutputUrl, - ErrorMessageTaxCalculator, - JSONReformTaxCalculator) + ErrorMessageTaxCalculator) from ..taxbrain.views import (make_bool, dropq_compute, JOB_PROC_TIME_IN_SECONDS) from ..taxbrain.param_formatters import (to_json_reform, get_reform_from_gui, @@ -32,6 +31,7 @@ convert_val, json_int_key_encode) from ..taxbrain.param_displayers import default_behavior from ..core.compute import JobFailError +from ..core.models import JSONReformTaxCalculator from .helpers import (default_parameters, job_submitted, ogusa_results_to_tables, success_text, failure_text, strip_empty_lists, diff --git a/webapp/apps/taxbrain/models.py b/webapp/apps/taxbrain/models.py index 639503d4..5d5ac75a 100644 --- a/webapp/apps/taxbrain/models.py +++ b/webapp/apps/taxbrain/models.py @@ -10,6 +10,7 @@ from django.contrib.postgres.fields import JSONField, ArrayField import datetime from django.utils.timezone import make_aware +from ..core.models import CoreInputs, CoreRun, SeparatedValuesField import taxcalc @@ -38,58 +39,6 @@ def deconstruct(self): return name, path, args, kwargs -class SeparatedValuesField(models.TextField): - - def __init__(self, *args, **kwargs): - self.token = kwargs.pop('token', ',') - super(SeparatedValuesField, self).__init__(*args, **kwargs) - - def to_python(self, value): - if not value: - return - if isinstance(value, list): - return value - return value.split(self.token) - - def get_db_prep_value(self, value, connection=None, prepared=False): - if not value: - return - assert(isinstance(value, list) or isinstance(value, tuple)) - return self.token.join([str(s) for s in value]) - - def value_to_string(self, obj): - value = self._get_val_from_obj(obj) - return self.get_db_prep_value(value) - - def from_db_value(self, value, expression, connection, context): - return self.to_python(value) - - -class JSONReformTaxCalculator(models.Model): - ''' - This class holds all of the text for a JSON-based reform input - for TaxBrain. A TaxSavesInput Model will have a foreign key to - an instance of this model if the user created the TaxBrain job - through the JSON iput page. - ''' - reform_text = models.TextField(blank=True, null=False) - raw_reform_text = models.TextField(blank=True, null=False) - assumption_text = models.TextField(blank=True, null=False) - raw_assumption_text = models.TextField(blank=True, null=False) - errors_warnings_text = models.TextField(blank=True, null=False) - - def get_errors_warnings(self): - """ - Errors were only stored for the taxcalc.Policy class until PB 1.6.0 - This method ensures that old runs are parsed correctly - """ - ew = json.loads(self.errors_warnings_text) - if 'errors' in ew: - return {'policy': ew} - else: - return ew - - class ErrorMessageTaxCalculator(models.Model): ''' This class holds all of the text for an error message on @@ -100,8 +49,7 @@ class ErrorMessageTaxCalculator(models.Model): text = models.CharField(blank=True, null=False, max_length=4000) -class TaxSaveInputs(DataSourceable, Fieldable, Resultable, - models.Model): +class TaxSaveInputs(DataSourceable, Fieldable, Resultable, CoreInputs): """ This model contains all the parameters for the tax model and the tax result. @@ -889,15 +837,6 @@ class TaxSaveInputs(DataSourceable, Fieldable, Resultable, factor_target = CommaSeparatedField(default=None, blank=True, null=True) growth_choice = models.CharField(blank=True, default=None, null=True, max_length=50) - # Job IDs when running a job - job_ids = SeparatedValuesField(blank=True, default=None, null=True) - jobs_not_ready = SeparatedValuesField(blank=True, default=None, null=True) - - # Starting Year of the reform calculation - first_year = models.IntegerField(default=None, null=True) - - # Record whether or not this was a quick calculation on a sample of data - quick_calc = models.BooleanField(default=False) # generate fields from default param data # this may eventually be useful if we're able to ensure syncdb picks up @@ -919,12 +858,6 @@ class TaxSaveInputs(DataSourceable, Fieldable, Resultable, # Result tax_result = JSONField(default=None, blank=True, null=True) - # # raw gui input - raw_input_fields = JSONField(default=None, blank=True, null=True) - # - # # validated gui input - input_fields = JSONField(default=None, blank=True, null=True) - # deprecated fields list deprecated_fields = ArrayField( models.CharField(max_length=100, blank=True), @@ -932,25 +865,6 @@ class TaxSaveInputs(DataSourceable, Fieldable, Resultable, null=True ) - # JSON input text - json_text = models.ForeignKey( - JSONReformTaxCalculator, - null=True, - default=None, - blank=True) - - # Error text - error_text = models.ForeignKey( - ErrorMessageTaxCalculator, - null=True, - default=None, - blank=True) - - # Creation DateTime - creation_date = models.DateTimeField( - default=make_aware(datetime.datetime(2015, 1, 1)) - ) - def get_tax_result(self): """ If taxcalc version is greater than or equal to 0.13.0, return table diff --git a/webapp/apps/taxbrain/urls.py b/webapp/apps/taxbrain/urls.py index 395500ee..02fe2e2f 100644 --- a/webapp/apps/taxbrain/urls.py +++ b/webapp/apps/taxbrain/urls.py @@ -10,7 +10,7 @@ url(r'^$', personal_results, name='tax_form'), url(r'^file/$', file_input, name='json_file'), url(r'^(?P\d+)/input.csv/$', csv_input, name='csv_input'), - url(r'^(?P\d+)/', output_detail, name='output_detail'), + url(r'^(?P[-\d\w]+)/', output_detail, name='output_detail'), url(r'^submit/(?P\d+)/', submit_micro, name='submit_micro'), url(r'^edit/(?P\d+)/', edit_personal_results, name='edit_personal_results'), diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index 171c92ee..7bc36b41 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -22,13 +22,13 @@ from django.contrib.auth.models import User from .forms import TaxBrainForm -from .models import (TaxSaveInputs, OutputUrl, JSONReformTaxCalculator, - ErrorMessageTaxCalculator) +from .models import TaxSaveInputs from .helpers import (taxcalc_results_to_tables, format_csv, json_int_key_encode, make_bool) from .param_displayers import nested_form_parameters from ..core.compute import (Compute, JobFailError, NUM_BUDGET_YEARS, NUM_BUDGET_YEARS_QUICK) +from ..core.models import CoreRun, JSONReformTaxCalculator from .mock_compute import MockCompute from ..constants import (DISTRIBUTION_TOOLTIP, DIFFERENCE_TOOLTIP, @@ -84,7 +84,6 @@ def save_model(post_meta): # create model for file_input case if model is None: model = TaxSaveInputs() - model.job_ids = post_meta.submitted_ids model.json_text = post_meta.json_reform model.first_year = int(post_meta.start_year) model.data_source = post_meta.data_source @@ -93,22 +92,24 @@ def save_model(post_meta): # create OutputUrl object if post_meta.url is None: - unique_url = OutputUrl() + unique_url = CoreRun() + unique_url.job_ids = post_meta.submitted_ids + unique_url.inputs = model + unique_url.save() else: - unique_url = post_meta.url + raise Exception("not implemented") + if post_meta.user: unique_url.user = post_meta.user elif post_meta.request and post_meta.request.user.is_authenticated(): current_user = User.objects.get(pk=post_meta.request.user.id) unique_url.user = current_user - if unique_url.taxcalc_vers is None: - unique_url.taxcalc_vers = TAXCALC_VERSION - if unique_url.webapp_vers is None: - unique_url.webapp_vers = WEBAPP_VERSION + # if unique_url.taxcalc_vers is None: + # unique_url.taxcalc_vers = TAXCALC_VERSION + # if unique_url.webapp_vers is None: + # unique_url.webapp_vers = WEBAPP_VERSION - unique_url.unique_inputs = model - unique_url.model_pk = model.pk cur_dt = timezone.now() future_offset_seconds = ((2 + post_meta.max_q_length) * JOB_PROC_TIME_IN_SECONDS) From 7df489562a472c3cb283581e6e6fad40e24a921a Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Wed, 25 Jul 2018 15:50:01 -0400 Subject: [PATCH 16/66] Make core abstract --- webapp/apps/core/models.py | 54 +++++----------------------------- webapp/apps/core/views.py | 5 ++-- webapp/apps/dynamic/views.py | 4 +-- webapp/apps/taxbrain/models.py | 53 +++++++++++++++++++++++++++++++++ webapp/apps/taxbrain/urls.py | 4 ++- webapp/apps/taxbrain/views.py | 4 +-- 6 files changed, 69 insertions(+), 55 deletions(-) diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py index 54fe90d6..4ff58513 100644 --- a/webapp/apps/core/models.py +++ b/webapp/apps/core/models.py @@ -33,57 +33,14 @@ def from_db_value(self, value, expression, connection, context): return self.to_python(value) -class JSONReformTaxCalculator(models.Model): - ''' - This class holds all of the text for a JSON-based reform input - for TaxBrain. A TaxSavesInput Model will have a foreign key to - an instance of this model if the user created the TaxBrain job - through the JSON iput page. - ''' - reform_text = models.TextField(blank=True, null=False) - raw_reform_text = models.TextField(blank=True, null=False) - assumption_text = models.TextField(blank=True, null=False) - raw_assumption_text = models.TextField(blank=True, null=False) - errors_warnings_text = models.TextField(blank=True, null=False) - - def get_errors_warnings(self): - """ - Errors were only stored for the taxcalc.Policy class until PB 1.6.0 - This method ensures that old runs are parsed correctly - """ - ew = json.loads(self.errors_warnings_text) - if 'errors' in ew: - return {'policy': ew} - else: - return ew - - class CoreInputs(models.Model): - # Starting Year of the reform calculation - first_year = models.IntegerField(default=None, null=True) - # JSON input text - json_text = models.ForeignKey( - JSONReformTaxCalculator, - null=True, - default=None, - blank=True) - # Record whether or not this was a quick calculation on a sample of data - quick_calc = models.BooleanField(default=False) - # Creation DateTime - creation_date = models.DateTimeField( - default=make_aware(datetime.datetime(2015, 1, 1)) - ) - # validated gui input - input_fields = JSONField(default=None, blank=True, null=True) - # raw gui input - raw_input_fields = JSONField(default=None, blank=True, null=True) + class Meta: + abstract = True class CoreRun(models.Model): - inputs = models.OneToOneField( - CoreInputs, - on_delete=models.CASCADE - ) + # Subclasses must implement: + # inputs = models.OneToOneField(CoreInputs) renderable_outputs = JSONField(default=None, blank=True, null=True) download_only_outputs = JSONField(default=None, blank=True, null=True) uuid = models.UUIDField( @@ -106,3 +63,6 @@ def get_absolute_url(self): 'pk': self.pk } return reverse('output_detail', kwargs=kwargs) + + class Meta: + abstract = True diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index 66f32139..f732f968 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -3,7 +3,6 @@ import json from django.utils import timezone -# from .models import CoreRun from .models import CoreRun from .compute import Compute, JobFailError from ..formatters import get_version @@ -15,7 +14,7 @@ from django.template.context import RequestContext -def output_detail(request, pk): +def output_detail(request, pk, model_class=CoreRun): """ This view is the single page of diplaying a progress bar for how close the job is to finishing, and then it will also display the @@ -32,7 +31,7 @@ def output_detail(request, pk): case 3b: not all jobs have completed """ - model = get_object_or_404(CoreRun, uuid=pk) + model = get_object_or_404(model_class, uuid=pk) if model.renderable_outputs: context = get_result_context(model, request) diff --git a/webapp/apps/dynamic/views.py b/webapp/apps/dynamic/views.py index 3eac5212..edebab62 100644 --- a/webapp/apps/dynamic/views.py +++ b/webapp/apps/dynamic/views.py @@ -22,7 +22,8 @@ DynamicBehaviorSaveInputs, DynamicBehaviorOutputUrl, DynamicElasticitySaveInputs, DynamicElasticityOutputUrl) from ..taxbrain.models import (TaxSaveInputs, OutputUrl, - ErrorMessageTaxCalculator) + ErrorMessageTaxCalculator, + JSONReformTaxCalculator) from ..taxbrain.views import (make_bool, dropq_compute, JOB_PROC_TIME_IN_SECONDS) from ..taxbrain.param_formatters import (to_json_reform, get_reform_from_gui, @@ -31,7 +32,6 @@ convert_val, json_int_key_encode) from ..taxbrain.param_displayers import default_behavior from ..core.compute import JobFailError -from ..core.models import JSONReformTaxCalculator from .helpers import (default_parameters, job_submitted, ogusa_results_to_tables, success_text, failure_text, strip_empty_lists, diff --git a/webapp/apps/taxbrain/models.py b/webapp/apps/taxbrain/models.py index 5d5ac75a..1bb8fb79 100644 --- a/webapp/apps/taxbrain/models.py +++ b/webapp/apps/taxbrain/models.py @@ -39,6 +39,31 @@ def deconstruct(self): return name, path, args, kwargs +class JSONReformTaxCalculator(models.Model): + ''' + This class holds all of the text for a JSON-based reform input + for TaxBrain. A TaxSavesInput Model will have a foreign key to + an instance of this model if the user created the TaxBrain job + through the JSON iput page. + ''' + reform_text = models.TextField(blank=True, null=False) + raw_reform_text = models.TextField(blank=True, null=False) + assumption_text = models.TextField(blank=True, null=False) + raw_assumption_text = models.TextField(blank=True, null=False) + errors_warnings_text = models.TextField(blank=True, null=False) + + def get_errors_warnings(self): + """ + Errors were only stored for the taxcalc.Policy class until PB 1.6.0 + This method ensures that old runs are parsed correctly + """ + ew = json.loads(self.errors_warnings_text) + if 'errors' in ew: + return {'policy': ew} + else: + return ew + + class ErrorMessageTaxCalculator(models.Model): ''' This class holds all of the text for an error message on @@ -838,6 +863,12 @@ class TaxSaveInputs(DataSourceable, Fieldable, Resultable, CoreInputs): growth_choice = models.CharField(blank=True, default=None, null=True, max_length=50) + # Starting Year of the reform calculation + first_year = models.IntegerField(default=None, null=True) + + # Record whether or not this was a quick calculation on a sample of data + quick_calc = models.BooleanField(default=False) + # generate fields from default param data # this may eventually be useful if we're able to ensure syncdb picks up # field changes and automatically create migrations @@ -858,6 +889,12 @@ class TaxSaveInputs(DataSourceable, Fieldable, Resultable, CoreInputs): # Result tax_result = JSONField(default=None, blank=True, null=True) + # # raw gui input + raw_input_fields = JSONField(default=None, blank=True, null=True) + # + # # validated gui input + input_fields = JSONField(default=None, blank=True, null=True) + # deprecated fields list deprecated_fields = ArrayField( models.CharField(max_length=100, blank=True), @@ -865,6 +902,18 @@ class TaxSaveInputs(DataSourceable, Fieldable, Resultable, CoreInputs): null=True ) + # JSON input text + json_text = models.ForeignKey( + JSONReformTaxCalculator, + null=True, + default=None, + blank=True) + + # Creation DateTime + creation_date = models.DateTimeField( + default=make_aware(datetime.datetime(2015, 1, 1)) + ) + def get_tax_result(self): """ If taxcalc version is greater than or equal to 0.13.0, return table @@ -925,6 +974,10 @@ class Meta: ) +class TaxBrainRun(CoreRun): + inputs = models.OneToOneField(TaxSaveInputs) + + class OutputUrl(models.Model): """ This model creates a unique url for each calculation. diff --git a/webapp/apps/taxbrain/urls.py b/webapp/apps/taxbrain/urls.py index 02fe2e2f..b2f73f82 100644 --- a/webapp/apps/taxbrain/urls.py +++ b/webapp/apps/taxbrain/urls.py @@ -4,13 +4,15 @@ submit_micro, file_input) from ..core.views import output_detail +from .models import TaxBrainRun urlpatterns = [ url(r'^$', personal_results, name='tax_form'), url(r'^file/$', file_input, name='json_file'), url(r'^(?P\d+)/input.csv/$', csv_input, name='csv_input'), - url(r'^(?P[-\d\w]+)/', output_detail, name='output_detail'), + url(r'^(?P[-\d\w]+)/', output_detail, {'model_class': TaxBrainRun}, + name='output_detail'), url(r'^submit/(?P\d+)/', submit_micro, name='submit_micro'), url(r'^edit/(?P\d+)/', edit_personal_results, name='edit_personal_results'), diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index 7bc36b41..564bf19b 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -28,7 +28,7 @@ from .param_displayers import nested_form_parameters from ..core.compute import (Compute, JobFailError, NUM_BUDGET_YEARS, NUM_BUDGET_YEARS_QUICK) -from ..core.models import CoreRun, JSONReformTaxCalculator +from ..taxbrain.models import TaxBrainRun, JSONReformTaxCalculator from .mock_compute import MockCompute from ..constants import (DISTRIBUTION_TOOLTIP, DIFFERENCE_TOOLTIP, @@ -92,7 +92,7 @@ def save_model(post_meta): # create OutputUrl object if post_meta.url is None: - unique_url = CoreRun() + unique_url = TaxBrainRun() unique_url.job_ids = post_meta.submitted_ids unique_url.inputs = model unique_url.save() From 3e212e2b6724972f1ce81669f7b61fc9604b3be9 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Thu, 26 Jul 2018 11:00:04 -0400 Subject: [PATCH 17/66] Get most TaxBrain tests to pass --- webapp/apps/core/views.py | 1 - webapp/apps/dynamic/helpers.py | 2 +- webapp/apps/dynamic/models.py | 16 ++++----- webapp/apps/dynamic/tests/test_behavioral.py | 2 +- webapp/apps/dynamic/urls.py | 16 ++++----- webapp/apps/dynamic/views.py | 37 ++++++++++---------- webapp/apps/taxbrain/behaviors.py | 35 ------------------ webapp/apps/taxbrain/models.py | 4 +-- webapp/apps/taxbrain/tests/test_views.py | 20 +++++------ webapp/apps/taxbrain/urls.py | 8 ++--- webapp/apps/taxbrain/views.py | 37 ++++++++------------ webapp/apps/test_assets/test_models.py | 14 ++++---- webapp/apps/test_assets/utils.py | 12 +++---- 13 files changed, 79 insertions(+), 125 deletions(-) diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index f732f968..aac02813 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -30,7 +30,6 @@ def output_detail(request, pk, model_class=CoreRun): case 3a: all jobs have completed case 3b: not all jobs have completed """ - model = get_object_or_404(model_class, uuid=pk) if model.renderable_outputs: diff --git a/webapp/apps/dynamic/helpers.py b/webapp/apps/dynamic/helpers.py index c780931b..06366930 100644 --- a/webapp/apps/dynamic/helpers.py +++ b/webapp/apps/dynamic/helpers.py @@ -286,7 +286,7 @@ def send_cc_email(email_txt, subject_txt, model): CC_EMAIL_ADDRESSES list ''' - pk = model.micro_sim.pk + pk = model.micro_run.pk job_ids = model.job_ids submitted_ids = normalize(job_ids) # Get the celery ID and IP address of the job diff --git a/webapp/apps/dynamic/models.py b/webapp/apps/dynamic/models.py index b0659dab..e614a680 100644 --- a/webapp/apps/dynamic/models.py +++ b/webapp/apps/dynamic/models.py @@ -9,8 +9,8 @@ import taxcalc from ..taxbrain.models import (CommaSeparatedField, SeparatedValuesField, - TaxSaveInputs, OutputUrl) -from ..taxbrain.behaviors import (Resultable, Fieldable, DataSourceable) + TaxSaveInputs, TaxBrainRun) +from ..taxbrain.behaviors import (Fieldable, DataSourceable) from ..taxbrain import param_formatters import datetime @@ -49,7 +49,7 @@ class DynamicSaveInputs(DataSourceable, models.Model): user_email = models.CharField(blank=True, default=None, null=True, max_length=50) - micro_sim = models.ForeignKey(OutputUrl, blank=True, null=True, + micro_run = models.ForeignKey(TaxBrainRun, blank=True, null=True, on_delete=models.SET_NULL) class Meta: @@ -58,8 +58,7 @@ class Meta: ) -class DynamicBehaviorSaveInputs(DataSourceable, Fieldable, Resultable, - models.Model): +class DynamicBehaviorSaveInputs(DataSourceable, Fieldable, models.Model): """ This model contains all the parameters for the dynamic behavioral tax model and the tax result. @@ -95,7 +94,7 @@ class DynamicBehaviorSaveInputs(DataSourceable, Fieldable, Resultable, default=make_aware(datetime.datetime(2015, 1, 1)) ) - micro_sim = models.ForeignKey(OutputUrl, blank=True, null=True, + micro_run = models.ForeignKey(TaxBrainRun, blank=True, null=True, on_delete=models.SET_NULL) # # raw gui input @@ -117,7 +116,8 @@ def get_tax_result(self): If taxcalc version is less than 0.13.0, then rename keys to new names and then return table """ - return Resultable.get_tax_result(self, DynamicBehaviorOutputUrl) + # TODO: Fix this + pass NONPARAM_FIELDS = set(["job_ids", "jobs_not_ready", "first_year", "tax_result", "raw_input_fields", "input_fields", @@ -172,7 +172,7 @@ class DynamicElasticitySaveInputs(DataSourceable, models.Model): default=make_aware(datetime.datetime(2015, 1, 1)) ) - micro_sim = models.ForeignKey(OutputUrl, blank=True, null=True, + micro_run = models.ForeignKey(TaxBrainRun, blank=True, null=True, on_delete=models.SET_NULL) class Meta: diff --git a/webapp/apps/dynamic/tests/test_behavioral.py b/webapp/apps/dynamic/tests/test_behavioral.py index 880da9d2..5306f755 100644 --- a/webapp/apps/dynamic/tests/test_behavioral.py +++ b/webapp/apps/dynamic/tests/test_behavioral.py @@ -156,7 +156,7 @@ def test_get_not_avail_page_renders(self, start_year, start_year_is_none): micro_sim_fields = get_post_data(start_year, _ID_BenefitSurtax_Switches=False) micro_sim_fields['first_year'] = start_year - model.micro_sim = get_taxbrain_model(micro_sim_fields, + model.micro_run = get_taxbrain_model(micro_sim_fields, taxcalc_vers="0.14.2", webapp_vers="1.4.0") model.save() diff --git a/webapp/apps/dynamic/urls.py b/webapp/apps/dynamic/urls.py index e90ce1d1..14c57f5e 100644 --- a/webapp/apps/dynamic/urls.py +++ b/webapp/apps/dynamic/urls.py @@ -6,17 +6,17 @@ urlpatterns = [ - url(r'^(?P\d+)/', dynamic_landing, name='dynamic_landing'), - url(r'^behavioral/(?P\d+)/', dynamic_behavioral, - name='dynamic_behavioral'), - url(r'^behavioral/edit/(?P\d+)/', edit_dynamic_behavioral, + url(r'^behavioral/edit/(?P[-\d\w]+)/', edit_dynamic_behavioral, name='edit_dynamic_behavioral'), - url(r'^macro/edit/(?P\d+)/', edit_dynamic_elastic, + url(r'^behavioral/(?P[-\d\w]+)/', dynamic_behavioral, + name='dynamic_behavioral'), + url(r'^macro/edit/(?P[-\d\w]+)/', edit_dynamic_elastic, name='edit_dynamic_elastic'), - url(r'^macro/(?P\d+)/', dynamic_elasticities, + url(r'^macro/(?P[-\d\w]+)/', dynamic_elasticities, name='dynamic_elasticities'), - url(r'^macro_results/(?P\d+)/', elastic_results, + url(r'^macro_results/(?P[-\d\w]+)/', elastic_results, name='elastic_results'), - url(r'^behavior_results/(?P\d+)/', behavior_results, + url(r'^behavior_results/(?P[-\d\w]+)/', behavior_results, name='behavior_results'), + url(r'^(?P[-\d\w]+)/', dynamic_landing, name='dynamic_landing'), ] diff --git a/webapp/apps/dynamic/views.py b/webapp/apps/dynamic/views.py index edebab62..69d0ee21 100644 --- a/webapp/apps/dynamic/views.py +++ b/webapp/apps/dynamic/views.py @@ -12,7 +12,8 @@ from django.core import serializers from django.http import (HttpResponseRedirect, HttpResponse, Http404, HttpResponseServerError, JsonResponse) -from django.shortcuts import redirect, render, render_to_response +from django.shortcuts import (redirect, render, render_to_response, + get_object_or_404) from django.template.context import RequestContext from django.contrib.auth.models import User @@ -21,7 +22,7 @@ from .models import (DynamicSaveInputs, DynamicOutputUrl, DynamicBehaviorSaveInputs, DynamicBehaviorOutputUrl, DynamicElasticitySaveInputs, DynamicElasticityOutputUrl) -from ..taxbrain.models import (TaxSaveInputs, OutputUrl, +from ..taxbrain.models import (TaxSaveInputs, TaxBrainRun, ErrorMessageTaxCalculator, JSONReformTaxCalculator) from ..taxbrain.views import (make_bool, dropq_compute, @@ -140,9 +141,9 @@ def dynamic_input(request, pk): '', None, [])} # get microsim data - outputsurl = OutputUrl.objects.get(pk=pk) - model.micro_sim = outputsurl - taxbrain_model = outputsurl.unique_inputs + outputsurl = TaxBrainRun.objects.get(pk=pk) + model.micro_run = outputsurl + taxbrain_model = outputsurl.inputs submitted_ids = None if not taxbrain_model.json_text: @@ -255,9 +256,9 @@ def dynamic_behavioral(request, pk): model.set_fields() # get microsim data - outputsurl = OutputUrl.objects.get(pk=pk) - model.micro_sim = outputsurl - taxbrain_model = outputsurl.unique_inputs + outputsurl = TaxBrainRun.objects.get(pk=pk) + model.micro_run = outputsurl + taxbrain_model = outputsurl.inputs model.data_source = taxbrain_model.data_source model.save() # get taxbrain data @@ -418,9 +419,9 @@ def dynamic_elasticities(request, pk): gdp_elasticity = float(model.elastic_gdp) # get microsim data - outputsurl = OutputUrl.objects.get(pk=pk) - model.micro_sim = outputsurl - taxbrain_model = outputsurl.unique_inputs + outputsurl = TaxBrainRun.objects.get(pk=pk) + model.micro_run = outputsurl + taxbrain_model = outputsurl.inputs model.data_source = taxbrain_model.data_source # get taxbrain data # necessary for simulations before PR 641 @@ -558,7 +559,7 @@ def edit_dynamic_behavioral(request, pk): 'taxcalc_version': taxcalc_vers_disp, 'webapp_version': webapp_vers_disp, 'start_year': str(start_year), - 'pk': model.micro_sim.pk + 'pk': model.micro_run.pk } return render(request, 'dynamic/behavior.html', init_context) @@ -596,7 +597,7 @@ def edit_dynamic_elastic(request, pk): 'taxcalc_version': taxcalc_vers_disp, 'webapp_version': webapp_vers_disp, 'start_year': str(start_year), - 'pk': model.micro_sim.pk + 'pk': model.micro_run.pk } return render(request, 'dynamic/elasticity.html', init_context) @@ -607,7 +608,8 @@ def dynamic_landing(request, pk): This view gives a landing page to choose a type of dynamic simulation that is linked to the microsim """ - outputsurl = OutputUrl.objects.get(pk=pk) + + outputsurl = TaxBrainRun.objects.get(pk=pk) include_ogusa = True init_context = { 'pk': pk, @@ -642,7 +644,7 @@ def elastic_results(request, pk): first_year = model.first_year created_on = model.creation_date tables = elast_results_to_tables(output, first_year) - microsim_url = "/taxbrain/" + str(url.unique_inputs.micro_sim.pk) + microsim_url = "/taxbrain/" + str(url.unique_inputs.micro_run.pk) context = { 'locals': locals(), @@ -734,10 +736,7 @@ def behavior_results(request, pk): page if the job has failed. """ - try: - url = DynamicBehaviorOutputUrl.objects.get(pk=pk) - except OutputUrl.DoesNotExist: - raise Http404 + url = get_object_or_404(DynamicBehaviorOutputUrl, pk=pk) model = url.unique_inputs diff --git a/webapp/apps/taxbrain/behaviors.py b/webapp/apps/taxbrain/behaviors.py index ffcc3f70..e7ee37c9 100644 --- a/webapp/apps/taxbrain/behaviors.py +++ b/webapp/apps/taxbrain/behaviors.py @@ -15,41 +15,6 @@ from . import param_formatters -class Resultable(models.Model): - """ - Mix-in to provide logic around retrieving model results. - """ - - class Meta: - abstract = True - - def get_tax_result(self, OutputUrlCls): - """ - If taxcalc version is greater than or equal to 0.13.0, return table - If taxcalc version is less than 0.13.0, then rename keys to new names - and then return table - """ - outputurl = OutputUrlCls.objects.get(unique_inputs__pk=self.pk) - taxcalc_vers = outputurl.taxcalc_vers - # only the older (pre 0.13.0) taxcalc versions are null - if taxcalc_vers: - taxcalc_vers = LooseVersion(taxcalc_vers) - else: - return rename_keys(self.tax_result, PRE_TC_0130_RES_MAP) - - # older PB versions stored commit reference too - # e.g. taxcalc_vers = "0.9.0.d79abf" - backwards_incompatible = LooseVersion( - TAXCALC_VERS_RESULTS_BACKWARDS_INCOMPATIBLE - ) - if taxcalc_vers >= backwards_incompatible: - return self.tax_result - else: - renamed = rename_keys(self.tax_result, PRE_TC_0130_RES_MAP) - return reorder_lists(renamed, REORDER_LT_TC_0130_DIFF_LIST, - DIFF_TABLE_IDs) - - class Fieldable(models.Model): """ Mix-in for providing logic around formatting raw GUI input fields diff --git a/webapp/apps/taxbrain/models.py b/webapp/apps/taxbrain/models.py index 1bb8fb79..0c5cbaf3 100644 --- a/webapp/apps/taxbrain/models.py +++ b/webapp/apps/taxbrain/models.py @@ -16,7 +16,7 @@ from . import param_formatters -from .behaviors import Resultable, Fieldable, DataSourceable +from .behaviors import Fieldable, DataSourceable # digit or true/false (case insensitive) @@ -74,7 +74,7 @@ class ErrorMessageTaxCalculator(models.Model): text = models.CharField(blank=True, null=False, max_length=4000) -class TaxSaveInputs(DataSourceable, Fieldable, Resultable, CoreInputs): +class TaxSaveInputs(DataSourceable, Fieldable, CoreInputs): """ This model contains all the parameters for the tax model and the tax result. diff --git a/webapp/apps/taxbrain/tests/test_views.py b/webapp/apps/taxbrain/tests/test_views.py index 18138afa..b2a0ec26 100644 --- a/webapp/apps/taxbrain/tests/test_views.py +++ b/webapp/apps/taxbrain/tests/test_views.py @@ -5,7 +5,7 @@ import os import msgpack -from ..models import TaxSaveInputs, OutputUrl +from ..models import TaxSaveInputs, TaxBrainRun from ..helpers import (expand_1D, expand_2D, expand_list, package_up_vars, format_csv, arrange_totals_by_row, default_taxcalc_data) from ...core.compute import Compute @@ -279,8 +279,8 @@ def test_taxbrain_edit_benefitsurtax_switch_show_correctly(self): result = do_micro_sim(CLIENT, data) - out = OutputUrl.objects.get(pk=result["pk"]) - tsi = TaxSaveInputs.objects.get(pk=out.model_pk) + out = TaxBrainRun.objects.get(pk=result["pk"]) + tsi = out.inputs _ids = ['ID_BenefitSurtax_Switch_' + str(i) for i in range(7)] # only posted param is stored assert ([_id in tsi.raw_input_fields for _id in _ids] == @@ -306,8 +306,8 @@ def test_taxbrain_edit_benefitsurtax_switch_show_correctly(self): result2 = do_micro_sim(CLIENT, data2) - out2 = OutputUrl.objects.get(pk=result2["pk"]) - tsi2 = TaxSaveInputs.objects.get(pk=out2.model_pk) + out2 = TaxBrainRun.objects.get(pk=result2["pk"]) + tsi2 = out2.inputs assert tsi2.raw_input_fields['ID_BenefitSurtax_Switch_0'] == 'False' assert (tsi2.raw_input_fields['ID_BenefitSurtax_Switch_1'] == 'False,*,True') @@ -516,7 +516,7 @@ def test_taxbrain_view_old_data_model(self): taxcalc_vers="0.10.0", webapp_vers="1.1.0") - tsi = unique_url.unique_inputs + tsi = unique_url.inputs old_result = os.path.join(os.path.dirname(os.path.abspath(__file__)), "example_old_result.json") @@ -748,7 +748,7 @@ def test_taxbrain_old_data_gives_deprecation_errors(self): unique_url = get_taxbrain_model(fields, taxcalc_vers="0.14.2", webapp_vers="1.3.0") - model = unique_url.unique_inputs + model = unique_url.inputs model.raw_input_fields = None model.input_fields = None model.deprecated_fields = None @@ -756,7 +756,7 @@ def test_taxbrain_old_data_gives_deprecation_errors(self): model.PT_exclusion_rt = "0.2,*,*,*,*,*,*,*,0.0" model.PT_exclusion_wage_limit = "0.5,*,*,*,*,*,*,*,9e99" model.save() - unique_url.unique_inputs = model + unique_url.inputs = model unique_url.save() pk = unique_url.pk @@ -790,12 +790,12 @@ def test_get_not_avail_page_renders(self, start_year, start_year_is_none): first_year=start_year, taxcalc_vers="0.14.2", webapp_vers="1.3.0") - model = unique_url.unique_inputs + model = unique_url.inputs model.tax_result = "unrenderable" if start_year_is_none: model.first_year = None model.save() - unique_url.unique_inputs = model + unique_url.inputs = model unique_url.save() pk = unique_url.pk diff --git a/webapp/apps/taxbrain/urls.py b/webapp/apps/taxbrain/urls.py index b2f73f82..ca8f4ae1 100644 --- a/webapp/apps/taxbrain/urls.py +++ b/webapp/apps/taxbrain/urls.py @@ -10,10 +10,10 @@ urlpatterns = [ url(r'^$', personal_results, name='tax_form'), url(r'^file/$', file_input, name='json_file'), - url(r'^(?P\d+)/input.csv/$', csv_input, name='csv_input'), + url(r'^submit/(?P[-\d\w]+)/', submit_micro, name='submit_micro'), + url(r'^edit/(?P[-\d\w]+)/', edit_personal_results, + name='edit_personal_results'), + url(r'^(?P[-\d\w]+)/input.csv/$', csv_input, name='csv_input'), url(r'^(?P[-\d\w]+)/', output_detail, {'model_class': TaxBrainRun}, name='output_detail'), - url(r'^submit/(?P\d+)/', submit_micro, name='submit_micro'), - url(r'^edit/(?P\d+)/', edit_personal_results, - name='edit_personal_results'), ] diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index 564bf19b..21174788 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -93,11 +93,11 @@ def save_model(post_meta): # create OutputUrl object if post_meta.url is None: unique_url = TaxBrainRun() - unique_url.job_ids = post_meta.submitted_ids - unique_url.inputs = model - unique_url.save() else: - raise Exception("not implemented") + unique_url = post_meta.url + unique_url.job_ids = post_meta.submitted_ids + unique_url.inputs = model + unique_url.save() if post_meta.user: unique_url.user = post_meta.user @@ -496,12 +496,9 @@ def submit_micro(request, pk): job after one has submitted parameters for a 'quick calculation' """ # TODO: get this function to work with process_reform - try: - url = OutputUrl.objects.get(pk=pk) - except BaseException: - raise Http404 + url = get_object_or_404(TaxBrainRun, pk=pk) - model = url.unique_inputs + model = url.inputs start_year = model.start_year # This will be a new model instance so unset the primary key model.pk = None @@ -580,12 +577,9 @@ def edit_personal_results(request, pk): """ This view handles the editing of previously entered inputs """ - try: - url = OutputUrl.objects.get(pk=pk) - except OutputUrl.DoesNotExist: - raise Http404 + url = get_object_or_404(TaxBrainRun, pk=pk) - model = url.unique_inputs + model = url.inputs start_year = model.first_year model.set_fields() @@ -601,14 +595,14 @@ def edit_personal_results(request, pk): for dep in model.deprecated_fields: form_personal_exemp.add_error(None, msg.format(dep)) - taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) - webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) + # taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) + # webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) init_context = { 'form': form_personal_exemp, 'params': nested_form_parameters(int(form_personal_exemp._first_year)), - 'taxcalc_version': taxcalc_vers_disp, - 'webapp_version': webapp_vers_disp, + # 'taxcalc_version': taxcalc_vers_disp, + # 'webapp_version': webapp_vers_disp, 'start_years': START_YEARS, 'start_year': str(form_personal_exemp._first_year), 'is_edit_page': True, @@ -622,10 +616,7 @@ def edit_personal_results(request, pk): @permission_required('taxbrain.view_inputs') def csv_input(request, pk): - try: - url = OutputUrl.objects.get(pk=pk) - except OutputUrl.DoesNotExist: - raise Http404 + url = get_object_or_404(TaxBrainRun, pk=pk) def filter_names(x): """ @@ -647,7 +638,7 @@ def filter_names(x): filename = "taxbrain_inputs_" + suffix + ".csv" response['Content-Disposition'] = 'attachment; filename="' + filename + '"' - inputs = url.unique_inputs + inputs = url_inputs writer = csv.writer(response) writer.writerow(field_names) diff --git a/webapp/apps/test_assets/test_models.py b/webapp/apps/test_assets/test_models.py index 32f61246..cdb4076c 100644 --- a/webapp/apps/test_assets/test_models.py +++ b/webapp/apps/test_assets/test_models.py @@ -4,7 +4,7 @@ from django.utils import timezone from ..taxbrain.models import (JSONReformTaxCalculator, - OutputUrl, TaxSaveInputs) + TaxBrainRun, TaxSaveInputs) from ..dynamic.models import (DynamicBehaviorSaveInputs, DynamicElasticitySaveInputs) from ..btax.models import BTaxSaveInputs @@ -28,32 +28,32 @@ def setUp(self): "skelaton_res_gt_0130") class TaxBrainTableResults(TaxBrainModelsTest): - def tc_lt_0130(self, fields, Form=TaxBrainForm, UrlModel=OutputUrl): + def tc_lt_0130(self, fields, Form=TaxBrainForm, UrlModel=TaxBrainRun): unique_url = get_taxbrain_model(fields, taxcalc_vers="0.10.2.abc", webapp_vers="1.1.1", Form=Form, UrlModel=UrlModel) - model = unique_url.unique_inputs + model = unique_url.inputs model.tax_result = self.skelaton_res_lt_0130 model.creation_date = timezone.now() model.save() - np.testing.assert_equal(model.get_tax_result(), + np.testing.assert_equal(model.taxbrainrun, self.skelaton_res_gt_0130) - def tc_gt_0130(self, fields, Form=TaxBrainForm, UrlModel=OutputUrl): + def tc_gt_0130(self, fields, Form=TaxBrainForm, UrlModel=TaxBrainRun): unique_url = get_taxbrain_model(fields, taxcalc_vers="0.13.0", webapp_vers="1.2.0", Form=Form, UrlModel=UrlModel) - model = unique_url.unique_inputs + model = unique_url.inputs model.tax_result = self.skelaton_res_gt_0130 model.creation_date = timezone.now() model.save() - np.testing.assert_equal(model.get_tax_result(), + np.testing.assert_equal(model.taxbrainrun, self.skelaton_res_gt_0130) diff --git a/webapp/apps/test_assets/utils.py b/webapp/apps/test_assets/utils.py index cf08c15e..82cc9623 100644 --- a/webapp/apps/test_assets/utils.py +++ b/webapp/apps/test_assets/utils.py @@ -5,7 +5,7 @@ from ..taxbrain.mock_compute import MockCompute -from ..taxbrain.models import OutputUrl +from ..taxbrain.models import TaxBrainRun from ..taxbrain.forms import TaxBrainForm @@ -159,7 +159,7 @@ def get_taxbrain_model(_fields, first_year=2017, quick_calc=False, taxcalc_vers="0.13.0", webapp_vers="1.2.0", exp_comp_datetime="2017-10-10T00:00:00+00:00", - Form=TaxBrainForm, UrlModel=OutputUrl, + Form=TaxBrainForm, UrlModel=TaxBrainRun, use_puf_not_cps=True): fields = _fields.copy() fields.pop('_state', None) @@ -180,10 +180,10 @@ def get_taxbrain_model(_fields, first_year=2017, model.save() unique_url = UrlModel() - unique_url.taxcalc_vers = taxcalc_vers - unique_url.webapp_vers = webapp_vers - unique_url.unique_inputs = model - unique_url.model_pk = model.pk + # unique_url.taxcalc_vers = taxcalc_vers + # unique_url.webapp_vers = webapp_vers + unique_url.inputs = model + # unique_url.model_pk = model.pk unique_url.exp_comp_datetime = exp_comp_datetime unique_url.save() From 157ec1db2de162fc344d3acdd1fdc3dec3959b04 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Thu, 26 Jul 2018 11:31:03 -0400 Subject: [PATCH 18/66] Restore version display --- templates/taxbrain/results.html | 2 +- webapp/apps/core/models.py | 4 ++++ webapp/apps/core/views.py | 15 +++++++-------- webapp/apps/taxbrain/views.py | 20 ++++++++++---------- 4 files changed, 22 insertions(+), 19 deletions(-) diff --git a/templates/taxbrain/results.html b/templates/taxbrain/results.html index 46a6e9ce..5f7d6f13 100644 --- a/templates/taxbrain/results.html +++ b/templates/taxbrain/results.html @@ -48,7 +48,7 @@

Static Results

Partial Equilibrium Results

{% endif %} -

These results were generated by PolicyBrain version {{ webapp_version }} on {{ created_on|date:"D, M jS Y \a\t g:iA" }} UTC using Tax-Calculator version {{ taxcalc_version }}.

+

These results were generated by PolicyBrain version {{ webapp_version }} on {{ created_on|date:"D, M jS Y \a\t g:iA" }} UTC using Tax-Calculator version {{ upstream_version }}.

{% if quick_calc %}

This calculation used only a small sample of the available data and only calculated revenues for one year instead of ten. For the full results, click here

diff --git a/webapp/apps/core/models.py b/webapp/apps/core/models.py index 4ff58513..3259d73d 100644 --- a/webapp/apps/core/models.py +++ b/webapp/apps/core/models.py @@ -57,6 +57,10 @@ class CoreRun(models.Model): exp_comp_datetime = models.DateTimeField( default=make_aware(datetime.datetime(2015, 1, 1))) job_ids = SeparatedValuesField(blank=True, default=None, null=True) + upstream_vers = models.CharField(blank=True, default=None, null=True, + max_length=50) + webapp_vers = models.CharField(blank=True, default=None, null=True, + max_length=50) def get_absolute_url(self): kwargs = { diff --git a/webapp/apps/core/views.py b/webapp/apps/core/views.py index aac02813..2bbe8252 100644 --- a/webapp/apps/core/views.py +++ b/webapp/apps/core/views.py @@ -96,9 +96,6 @@ def output_detail(request, pk, model_class=CoreRun): def get_result_context(model, request): inputs = model.inputs - first_year = inputs.first_year - quick_calc = inputs.quick_calc - created_on = inputs.creation_date is_from_file = not inputs.raw_input_fields @@ -123,9 +120,9 @@ def get_result_context(model, request): context = { 'locals': locals(), 'unique_url': model, - 'created_on': created_on, - 'first_year': first_year, - 'quick_calc': quick_calc, + 'created_on': inputs.creation_date, + 'first_year': inputs.first_year, + 'quick_calc': inputs.quick_calc, 'is_registered': is_registered, 'is_micro': True, 'reform_file_contents': reform_file_contents, @@ -134,8 +131,10 @@ def get_result_context(model, request): 'is_from_file': is_from_file, 'allow_dyn_links': not is_from_file, 'results_type': "static", - 'renderable': model.renderable_outputs.values() - # 'download_only': model.download_only_outputs.values() + 'renderable': model.renderable_outputs.values(), + # 'download_only': model.download_only_outputs.values(), + 'upstream_version': model.upstream_vers, + 'webapp_version': model.webapp_vers, } return context diff --git a/webapp/apps/taxbrain/views.py b/webapp/apps/taxbrain/views.py index 21174788..5d4efea8 100644 --- a/webapp/apps/taxbrain/views.py +++ b/webapp/apps/taxbrain/views.py @@ -105,10 +105,10 @@ def save_model(post_meta): current_user = User.objects.get(pk=post_meta.request.user.id) unique_url.user = current_user - # if unique_url.taxcalc_vers is None: - # unique_url.taxcalc_vers = TAXCALC_VERSION - # if unique_url.webapp_vers is None: - # unique_url.webapp_vers = WEBAPP_VERSION + if unique_url.upstream_vers is None: + unique_url.upstream_vers = TAXCALC_VERSION + if unique_url.webapp_vers is None: + unique_url.webapp_vers = WEBAPP_VERSION cur_dt = timezone.now() future_offset_seconds = ((2 + post_meta.max_q_length) * @@ -412,7 +412,7 @@ def file_input(request): 'form_id': json_reform.id if json_reform is not None else None, 'errors': errors, 'has_errors': has_errors, - 'taxcalc_version': TAXCALC_VERSION, + 'upstream_version': TAXCALC_VERSION, 'webapp_version': WEBAPP_VERSION, 'params': None, 'start_years': START_YEARS, @@ -476,7 +476,7 @@ def personal_results(request): init_context = { 'form': personal_inputs, 'params': nested_form_parameters(int(start_year), use_puf_not_cps), - 'taxcalc_version': TAXCALC_VERSION, + 'upstream_version': TAXCALC_VERSION, 'webapp_version': WEBAPP_VERSION, 'start_years': START_YEARS, 'start_year': start_year, @@ -595,14 +595,14 @@ def edit_personal_results(request, pk): for dep in model.deprecated_fields: form_personal_exemp.add_error(None, msg.format(dep)) - # taxcalc_vers_disp = get_version(url, 'taxcalc_vers', TAXCALC_VERSION) - # webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) + taxcalc_vers_disp = get_version(url, 'upstream_vers', TAXCALC_VERSION) + webapp_vers_disp = get_version(url, 'webapp_vers', WEBAPP_VERSION) init_context = { 'form': form_personal_exemp, 'params': nested_form_parameters(int(form_personal_exemp._first_year)), - # 'taxcalc_version': taxcalc_vers_disp, - # 'webapp_version': webapp_vers_disp, + 'upstream_version': taxcalc_vers_disp, + 'webapp_version': webapp_vers_disp, 'start_years': START_YEARS, 'start_year': str(form_personal_exemp._first_year), 'is_edit_page': True, From b2ff702aff1dedefb426cb9be8f1e6722ec163e5 Mon Sep 17 00:00:00 2001 From: Lucas Szwarcberg Date: Thu, 26 Jul 2018 14:11:14 -0400 Subject: [PATCH 19/66] Add DataTables back --- templates/taxbrain/results.html | 44 +++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 5 deletions(-) diff --git a/templates/taxbrain/results.html b/templates/taxbrain/results.html index 5f7d6f13..60024d9a 100644 --- a/templates/taxbrain/results.html +++ b/templates/taxbrain/results.html @@ -6,6 +6,7 @@ {{block.super}} + {% endblock %} {% block content %} @@ -91,11 +95,31 @@

Assumptions


{% if renderable %} - {{ renderable | safeseq | join:"" }} +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ renderable | safeseq | join:"" }} +
+
+
+
+
+
{% else %}
- {% endif %}
+ {% endif %}

- {% if renderable %}
-
-
-
-
-
-
-
-
-
-
-
-
- {{ renderable | safeseq | join:"" }} +
+
+
+
+
+

Build Table

+
+
+
+
+

For Year:

+
+
+

+ +

+
+
+ {% for tag in tags_flattened %} + + {% endfor %} +
+
+
+
+
+
+
+
+ {% for x in outputs %} +
+

{{ x.title }}

+ {{ x.renderable | safe }}
+ {% endfor %} +
+
- {% else %} -
-
- {% endif %} -