afb6d5185d
Feature/lesser table caching refactor hybrid * chore: Remove unused duplicate main.py from shared pipeline * fix: Correct crosswalk paths in aarete_derived.py * chore: Remove unused documentation files from fieldExtraction * docs: Add documentation files to documentation folder * docs: Update README with uv setup, expanded project structure, and branching conventions * docs: Add uv installation steps with Ubuntu/WSL emphasis * Enable prompt caching for all remaining LLM calls - Add _INSTRUCTION() functions for: EXHIBIT_HEADER, EXHIBIT_LINKAGE, EXHIBIT_TITLE_MATCH, DATE_FIX, DERIVED_TERM_DATE, CHECK_PROVIDER_NAME_MATCH, SPECIAL_CASE_ASSIGNMENT - Update all invoke_claude() calls in saas and clover pipelines to use cache=True with corresponding _INSTRUCTION() functions - Add new instructions to get_cacheable_instructions() for cache warming - Update tests for new instruction functions Functions now using caching: - prompt_exhibit_level - prompt_exhibit_lesser (EXHIBIT_LEVEL_LESSER_OF) - prompt_fee_schedule_breakout - prompt_grouper_breakout - prompt_special_case_assignment - prompt_exhibit_linkage - prompt_exhibit_header - prompt_smart_chunked (ONE_TO_ONE templates) - prompt_date_fix - prompt_derived_term_date - prompt_exhibit_title_match - provider_name_match_check 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Reorder * feat: Add bcbs_promise client pipeline with OFFSET_TERM extraction - Add new bcbs_promise client with HSC-based OFFSET_TERM field extraction - Extract full paragraph text of offset/recoupment provisions from contracts - Derive OFFSET_INDICATOR (Y/N) from OFFSET_TERM presence - Fix reorder_columns to preserve extra columns not in COLUMN_ORDER - Update QC/QA output path to outputs/qc_qa/ * fix: Update dev deps and test assertions for QC/QA output path - Add pytest/pytest-mock to dev dependencies for mypy type checking - Update test assertions to expect outputs/qc_qa instead of qa_qc_output * style: Apply black formatting to prompt_templates.py * Merge main, move scripts * Archive some scripts * update py version * remove .py version file * Remove ASCII characters * Restore testbed code * restore tracking * Update testbed metrics * Enable prompt caching for CODE_LAST_CHECK, FILL_BILL_TYPE, DUAL_LOB_CHECK, and GROUPER_BREAKOUT - Add CODE_LAST_CHECK_INSTRUCTION() for service specificity classification - Add FILL_BILL_TYPE_INSTRUCTION() for bill type code determination - Add DUAL_LOB_CHECK_INSTRUCTION() for Medicare/Medicaid classification - Update code_funcs.py to use caching for CODE_LAST_CHECK, FILL_BILL_TYPE, GROUPER_BREAKOUT - Update postprocessing_funcs.py to use caching for DUAL_LOB_CHECK - Add new instructions to get_cacheable_instructions() for cache warming - Add unit tests for new instruction functions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Fix postprocessing_funcs to remove invalid columns * Merge branch 'main' into feature/lesser-table-caching-refactor-hybrid * Revert prompt caching changes from aed1b73c * update formatting * Update imports Approved-by: Sha Brown Approved-by: Praneel Panchigar
3440 lines
542 KiB
Plaintext
3440 lines
542 KiB
Plaintext
{
|
||
"cells": [
|
||
{
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"This is an adhoc python notebook that mainly does some dups analysis, file movements and debugging. \n",
|
||
"This is not something that is usually repeated and is pushed only for reference. "
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"import pandas as pd\n",
|
||
"import concurrent.futures\n",
|
||
"\n",
|
||
"def process_file_group(group):\n",
|
||
" if group['Page Count'].nunique() == 1:\n",
|
||
" group['New File Name'] = group['File Name']\n",
|
||
" return group.iloc[[0]]\n",
|
||
" group = group.sort_values('Page Count').reset_index(drop=True)\n",
|
||
" # group['File Name Without Extension'] = group['File Name Without Extension'] + '(' + (group.index + 1).astype(str) + ')'\n",
|
||
" def add_suffix(file_name, idx):\n",
|
||
" if file_name.endswith('.Pdf'):\n",
|
||
" return file_name[:-4] + f'({idx + 1}).Pdf'\n",
|
||
" else:\n",
|
||
" return file_name + f'({idx + 1})'\n",
|
||
" group['New File Name'] = [add_suffix(file_name, idx) for idx, file_name in enumerate(group['File Name'])]\n",
|
||
" return group\n",
|
||
"\n",
|
||
"df = pd.read_csv('CNCDuplicateReview_20240830.csv')\n",
|
||
"duplicates_only = df[df.duplicated(subset=['File Name'], keep=False)]\n",
|
||
"grouped = duplicates_only.groupby(['File Name'])\n",
|
||
"\n",
|
||
"with concurrent.futures.ThreadPoolExecutor() as executor:\n",
|
||
" results = executor.map(process_file_group, [group for _, group in grouped])\n",
|
||
"\n",
|
||
"optimized_df = pd.concat(results)\n",
|
||
"optimized_df.to_csv('fidelis_duplicate_files_list.csv', index=False)\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 44,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"import pandas as pd\n",
|
||
"\n",
|
||
"df_dup_cnc = pd.read_csv('duplicate_files_list.csv')\n",
|
||
"df_dup_fidelis = pd.read_csv('C:\\\\Aryan Gupta\\\\DoczyClientWork\\\\Fidelis\\\\PartTime\\\\fidelis_duplicate_files_list.csv')\n",
|
||
"df_dup_fidelis['File Name'] += \".Pdf\"\n",
|
||
"df_dup_fidelis['File Name Without Extension'] = df_dup_fidelis['New File Name']\n",
|
||
"df_dup_fidelis['New File Name'] += \".Pdf\"\n",
|
||
"df_dup = pd.concat([df_dup_cnc, df_dup_fidelis])\n",
|
||
"# df_priority = pd.read_csv('batch_1_priority_files 1.csv')\n",
|
||
"df_priority = pd.read_csv('batch3\\\\Batch 3_091124 1.csv')\n",
|
||
"df_priority['File Name'] += '.Pdf'"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"df_duplicate_priority = pd.DataFrame(columns=df_dup.columns)\n",
|
||
"for file in df_priority['File Name']:\n",
|
||
" relevant_rows = df_dup[df_dup['File Name'] == file]\n",
|
||
" if len(relevant_rows) >= 1: print(relevant_rows)\n",
|
||
" if len(relevant_rows) == 1:\n",
|
||
" df_duplicate_priority = pd.concat([df_duplicate_priority, relevant_rows])\n",
|
||
" elif len(relevant_rows) > 1:\n",
|
||
" max_page_count = max(relevant_rows['Page Count'])\n",
|
||
" flag = False\n",
|
||
" for pgcnt in relevant_rows['Page Count']:\n",
|
||
" if pgcnt != max_page_count and (max_page_count - pgcnt) <= 5:\n",
|
||
" flag = True\n",
|
||
" break\n",
|
||
" if flag:\n",
|
||
" df_duplicate_priority = pd.concat([df_duplicate_priority, relevant_rows])\n",
|
||
" else:\n",
|
||
" df_duplicate_priority = pd.concat([df_duplicate_priority, relevant_rows[relevant_rows['Page Count'] == max_page_count]])\n",
|
||
"\n",
|
||
"df_duplicate_priority = df_duplicate_priority.drop_duplicates()\n",
|
||
"df_duplicate_priority.reset_index(drop=True, inplace=True)\n",
|
||
"df_duplicate_priority.to_csv('new_duplicates_in_batch3.csv')\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 21,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Failed to move processed/36-6006541-County of Cook (“Cook Countyâ€), an Illinois body politic and corporate, through its Cook County Health and Hospitals System dba Cook County Health (“CCHâ€)-ICMProviderAgreement_309992.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/36-3242967-Daniel T. O’Carroll DBA O’Carroll & Associates LLC-ICMProviderAgreement_239507.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied processed/27-1701898-Invitae Corporation-ICMProviderAgreement_94748.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/27-1701898-Invitae Corporation-ICMProviderAgreement_94748.Pdf\n",
|
||
"Failed to move processed/45-5119347-ST MARIE’S-ICMProviderAgreement_190648.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied processed/62-1637129-Inform Diagnostics-ICMProviderAgreement_92173.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/62-1637129-Inform Diagnostics-ICMProviderAgreement_92173.Pdf\n",
|
||
"Failed to move processed/88-0820406-Queen’s University Medical Group-ICMProviderAgreement_138605.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied processed/62-1637129-Inform Diagnostics, Inc-ICMProviderAgreement_94805.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/62-1637129-Inform Diagnostics, Inc-ICMProviderAgreement_94805.Pdf\n",
|
||
"Failed to move processed/88-0820406-Queen’s University Medical Group-ICMProviderAgreementAmendment_153944.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/88-3475837-Bristol Hospice – Chicago, LLC-ICMProviderAgreement_321738.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied processed/54-1882269-Dominion Diagnostics, LLC-ICMProviderAgreement_94528_1.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/54-1882269-Dominion Diagnostics, LLC-ICMProviderAgreement_94528_1.Pdf\n",
|
||
"Copied processed/26-1565558-Millennium Health, LLC-ICMProviderAgreement_92416.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/26-1565558-Millennium Health, LLC-ICMProviderAgreement_92416.Pdf\n",
|
||
"Copied processed/27-1701898-Invitae Corporation-ICMProviderAgreement_91357.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/27-1701898-Invitae Corporation-ICMProviderAgreement_91357.Pdf\n",
|
||
"Copied processed/23-7076080-Crusader Community Health-ICMProviderAgreement_65411(2).Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/23-7076080-Crusader Community Health-ICMProviderAgreement_65411(2).Pdf\n",
|
||
"Copied processed/04-3827137-Milena Jguenti, M.D., S.C.-ICMProviderAgreement_94298_1.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/04-3827137-Milena Jguenti, M.D., S.C.-ICMProviderAgreement_94298_1.Pdf\n",
|
||
"Copied processed/27-1168572-Iram A. Ahmed, MD-ICMProviderAgreement_93521(1).Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/27-1168572-Iram A. Ahmed, MD-ICMProviderAgreement_93521(1).Pdf\n",
|
||
"Copied processed/54-1882269-Dominion Diagnostics-ICMProviderAgreement_91540.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/54-1882269-Dominion Diagnostics-ICMProviderAgreement_91540.Pdf\n",
|
||
"Failed to move processed/37-1183030-BECK’S HOME HEALTH CARE PRODUCTS, INC.-ICMProviderAgreement_162856.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied processed/30-0106345-Key Internal Medicine, SC DBA Dharam Anand, MD-ICMProviderAgreement_71485.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/30-0106345-Key Internal Medicine, SC DBA Dharam Anand, MD-ICMProviderAgreement_71485.Pdf\n",
|
||
"Copied processed/04-3828358-Beloved Community Family Wellness Center-ICMProviderAgreement_103269.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/04-3828358-Beloved Community Family Wellness Center-ICMProviderAgreement_103269.Pdf\n",
|
||
"Failed to move processed/34-2060796-Total Medical Supply, Inc -.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied processed/04-3828358-Beloved Community Family Wellness Center-ICMProviderAgreement_103269.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/04-3828358-Beloved Community Family Wellness Center-ICMProviderAgreement_103269.Pdf\n",
|
||
"Copied processed/20-0793658-Atwood Medical LLC-ICMProviderAgreement_72720.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/20-0793658-Atwood Medical LLC-ICMProviderAgreement_72720.Pdf\n",
|
||
"Copied processed/26-1565558-Millennium Health, LLC-ICMProviderAgreement_94724.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/26-1565558-Millennium Health, LLC-ICMProviderAgreement_94724.Pdf\n",
|
||
"Copied processed/23-7188150-Aunt Martha's Youth Service Center, Inc-ICMProviderAgreementAmendment_31287.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/23-7188150-Aunt Martha's Youth Service Center, Inc-ICMProviderAgreementAmendment_31287.Pdf\n",
|
||
"Copied processed/23-7188150-Aunt Martha's Youth Service Center, Inc-ICMProviderAgreement_93123_2.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/23-7188150-Aunt Martha's Youth Service Center, Inc-ICMProviderAgreement_93123_2.Pdf\n",
|
||
"Copied processed/20-1723289-Howd Medical LLC-ICMProviderAgreement_72939.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/20-1723289-Howd Medical LLC-ICMProviderAgreement_72939.Pdf\n",
|
||
"Copied processed/47-0974458-Crestar Labs LLC-ICMProviderAgreement_38399.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/47-0974458-Crestar Labs LLC-ICMProviderAgreement_38399.Pdf\n",
|
||
"Copied processed/62-1433252-American Institute of Toxicology, Inc. DBA AIT Laboratories-ICMProviderAgreement_94803.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/62-1433252-American Institute of Toxicology, Inc. DBA AIT Laboratories-ICMProviderAgreement_94803.Pdf\n",
|
||
"Failed to move processed/05-0540721-NOVAMED SURGERY CENTER OF CHICAGO – NORTHSHORE, LLC-ICMProviderAgreement_206619.Pdf: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied processed/34-1788398-Heartland Hospice Services, LLC-ICMProviderAgreement_71373.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/34-1788398-Heartland Hospice Services, LLC-ICMProviderAgreement_71373.Pdf\n",
|
||
"Copied processed/46-5181020-Factor One Source Pharmacy, LLC dba InfuCare Rx of MD-.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/46-5181020-Factor One Source Pharmacy, LLC dba InfuCare Rx of MD-.Pdf\n",
|
||
"Copied processed/26-4536151-Rockford Associated Clinical Pathology Ltd-ICMProviderAgreement_75461.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/26-4536151-Rockford Associated Clinical Pathology Ltd-ICMProviderAgreement_75461.Pdf\n",
|
||
"Copied processed/35-2327501-LIFESPAN MEDICAL ASSOCIATES LLC-ICMProviderAgreement_72039.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/35-2327501-LIFESPAN MEDICAL ASSOCIATES LLC-ICMProviderAgreement_72039.Pdf\n",
|
||
"Copied processed/26-2928737-Direct Medical, Inc-ICMProviderAgreement_116312.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/26-2928737-Direct Medical, Inc-ICMProviderAgreement_116312.Pdf\n",
|
||
"Copied processed/37-1170297-SPECIALISTS IN OB GYN LTD-ICMProviderAgreement_71247.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/37-1170297-SPECIALISTS IN OB GYN LTD-ICMProviderAgreement_71247.Pdf\n",
|
||
"Copied processed/47-3492048-Bolevkia, Inc-ICMProviderAgreement_306344.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/47-3492048-Bolevkia, Inc-ICMProviderAgreement_306344.Pdf\n",
|
||
"Copied processed/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreement_42400_7.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreement_42400_7.Pdf\n",
|
||
"Copied processed/32-0098824-CBLPath, Inc.-ICMProviderAgreement_115194.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/32-0098824-CBLPath, Inc.-ICMProviderAgreement_115194.Pdf\n",
|
||
"Copied processed/36-3648026-NorthShore Physician Associates-ICMProviderAgreementAmendment_37749.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/36-3648026-NorthShore Physician Associates-ICMProviderAgreementAmendment_37749.Pdf\n",
|
||
"Copied processed/46-1203849-Elite Diagnostic, LLC-ICMProviderAgreement_40148.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/46-1203849-Elite Diagnostic, LLC-ICMProviderAgreement_40148.Pdf\n",
|
||
"Copied processed/26-4012209-Family Medical Supplies-ICMProviderAgreementAmendment_166832.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/26-4012209-Family Medical Supplies-ICMProviderAgreementAmendment_166832.Pdf\n",
|
||
"Copied processed/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreement_42400_4.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreement_42400_4.Pdf\n",
|
||
"Copied processed/82-5352365-Next Level Counseling-ICMProviderAgreement_77554.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/82-5352365-Next Level Counseling-ICMProviderAgreement_77554.Pdf\n",
|
||
"Copied processed/59-3781202-InnovaMed Internal Medicine Specialists, SC-ICMProviderAgreement_101384.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/59-3781202-InnovaMed Internal Medicine Specialists, SC-ICMProviderAgreement_101384.Pdf\n",
|
||
"Copied processed/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreementAmendment_10257.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreementAmendment_10257.Pdf\n",
|
||
"Copied processed/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreementAmendment_11450_1.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/85-0327237-Lovelace Health System, Inc.-ICMProviderAgreementAmendment_11450_1.Pdf\n",
|
||
"Copied processed/82-2554217-Awaken Grace LLC-ICMProviderAgreement_232506.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/82-2554217-Awaken Grace LLC-ICMProviderAgreement_232506.Pdf\n",
|
||
"Copied processed/86-1457093-UNIFY COUNSELING INC.-ICMProviderAgreementAmendment_137384.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/86-1457093-UNIFY COUNSELING INC.-ICMProviderAgreementAmendment_137384.Pdf\n",
|
||
"Copied processed/87-0862663-CATCHING JOY MIDWIFERY-ICMProviderAgreement_314693.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/87-0862663-CATCHING JOY MIDWIFERY-ICMProviderAgreement_314693.Pdf\n",
|
||
"Copied processed/82-5495697-Premier Health Network LLC dba Premier Urgent Care and OCC-Health Center-ICMProviderAgreement_72384.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/82-5495697-Premier Health Network LLC dba Premier Urgent Care and OCC-Health Center-ICMProviderAgreement_72384.Pdf\n",
|
||
"Copied processed/62-1433252-American Institute of Toxicology, Inc. DBA AIT Laboratories-ICMProviderAgreement_92165.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/62-1433252-American Institute of Toxicology, Inc. DBA AIT Laboratories-ICMProviderAgreement_92165.Pdf\n",
|
||
"Copied processed/37-1206525-Quincy Physicians and Surgeons Clinic, SC dba Medical Group-ICMProviderAgreement_71930.Pdf to batch_1_priority_files/complex_rerun_101324/for_textract/37-1206525-Quincy Physicians and Surgeons Clinic, SC dba Medical Group-ICMProviderAgreement_71930.Pdf\n"
|
||
]
|
||
},
|
||
{
|
||
"ename": "",
|
||
"evalue": "",
|
||
"output_type": "error",
|
||
"traceback": [
|
||
"\u001b[1;31mThe Kernel crashed while executing code in the current cell or a previous cell. \n",
|
||
"\u001b[1;31mPlease review the code in the cell(s) to identify a possible cause of the failure. \n",
|
||
"\u001b[1;31mClick <a href='https://aka.ms/vscodeJupyterKernelCrash'>here</a> for more info. \n",
|
||
"\u001b[1;31mView Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details."
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"import pandas as pd\n",
|
||
"import boto3\n",
|
||
"from concurrent.futures import ThreadPoolExecutor\n",
|
||
"\n",
|
||
"def move_file_s3(index, file_key):\n",
|
||
" try:\n",
|
||
" source_key = f\"{source_folder}/{file_key}\"\n",
|
||
" source_key = f\"{source_folder}/{file_key}\" + \".Pdf\"\n",
|
||
" destination_key = f\"{destination_folder}/{file_key}\" + \".Pdf\"\n",
|
||
"\n",
|
||
" s3_client.copy_object(\n",
|
||
" Bucket=bucket_name,\n",
|
||
" CopySource={'Bucket': bucket_name, 'Key': source_key},\n",
|
||
" Key=destination_key\n",
|
||
" )\n",
|
||
" print(f\"Copied {source_key} to {destination_key}\")\n",
|
||
" flags[index] = 'N'\n",
|
||
"\n",
|
||
" # s3_client.delete_object(Bucket=bucket_name, Key=source_key)\n",
|
||
" # print(f\"Deleted {source_key} from source folder\")\n",
|
||
"\n",
|
||
" except Exception as e:\n",
|
||
" # try:\n",
|
||
" # source_folder = 'processed'\n",
|
||
" # source_key = f\"{source_folder}/{file_key}\"[:-4] + \".Pdf\"\n",
|
||
" # destination_key = f\"{destination_folder}/{file_key}\"\n",
|
||
"\n",
|
||
" # s3_client.copy_object(\n",
|
||
" # Bucket=bucket_name,\n",
|
||
" # CopySource={'Bucket': bucket_name, 'Key': source_key},\n",
|
||
" # Key=destination_key\n",
|
||
" # )\n",
|
||
" # print(f\"Copied {source_key} to {destination_key}\")\n",
|
||
" # flags[index] = 'N'\n",
|
||
"\n",
|
||
" # except Exception as e:\n",
|
||
" flags[index] = 'Y'\n",
|
||
" print(f\"Failed to move {source_key}: {e}\")\n",
|
||
"\n",
|
||
"\n",
|
||
"bucket_name = 'centene-national-contracting-files'\n",
|
||
"source_folder = 'processed'\n",
|
||
"destination_folder = 'batch_1_priority_files/complex_rerun_101324/for_textract'\n",
|
||
"\n",
|
||
"s3_client = boto3.Session(profile_name='temp_cred').client('s3')\n",
|
||
"\n",
|
||
"df = pd.read_csv('batch1\\\\Batch 1_082024 (2).csv')\n",
|
||
"# df = df[df['Table Count'] == 1]\n",
|
||
"df = df[df['Notes'] == 'Should\\'ve been in 1A but did not get output, need to include in 1B']\n",
|
||
"file_names = df['File Name'].tolist()\n",
|
||
"flags = [''] * len(file_names)\n",
|
||
"\n",
|
||
"with ThreadPoolExecutor(max_workers=20) as executor:\n",
|
||
" executor.map(lambda args: move_file_s3(*args), enumerate(file_names))\n",
|
||
"\n",
|
||
"df['Flag'] = flags\n",
|
||
"df.to_csv('batch1\\\\52_files_movement_pdf_2.csv')\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"import pandas as pd\n",
|
||
"import boto3\n",
|
||
"import pandas as pd\n",
|
||
"from concurrent.futures import ThreadPoolExecutor\n",
|
||
"\n",
|
||
"df_batches = pd.read_csv('nc_batch2_dups_869.csv')\n",
|
||
"batch_ids = df_batches['batch_id'].unique()\n",
|
||
"\n",
|
||
"def list_files_in_folder(bucket_name, folder_prefix):\n",
|
||
" files = []\n",
|
||
" try:\n",
|
||
" paginator = s3_client.get_paginator('list_objects_v2')\n",
|
||
" for page in paginator.paginate(Bucket=bucket_name, Prefix=folder_prefix):\n",
|
||
" for obj in page.get('Contents', []):\n",
|
||
" files.append(obj['Key'])\n",
|
||
" except Exception as e:\n",
|
||
" print(f\"Failed to list files in folder {folder_prefix}: {e}\")\n",
|
||
" return files\n",
|
||
"\n",
|
||
"def move_file_s3(source_bucket, source_key, destination_bucket, destination_key):\n",
|
||
" try:\n",
|
||
" s3_client.copy_object(\n",
|
||
" Bucket=destination_bucket,\n",
|
||
" CopySource={'Bucket': source_bucket, 'Key': source_key},\n",
|
||
" Key=destination_key\n",
|
||
" )\n",
|
||
" print(f\"Copied {source_key} to s3://{destination_bucket}/{destination_key}\")\n",
|
||
" # response = s3_client.get_object(Bucket=source_bucket, Key=source_key)\n",
|
||
" # file_content = response['Body'].read()\n",
|
||
" # print(f\"Downloaded {source_key} from s3://{source_bucket}\")\n",
|
||
" # s3_client.put_object(Bucket=destination_bucket, Key=destination_key, Body=file_content)\n",
|
||
" # print(f\"Uploaded {source_key} to s3://{destination_bucket}/{destination_key}\")\n",
|
||
"\n",
|
||
" except Exception as e:\n",
|
||
" print(f\"Failed to move {source_key}: {e}\")\n",
|
||
"\n",
|
||
"def move_files_from_folder(batch_id, source_bucket, destination_bucket, destination_folder):\n",
|
||
" folder = 'contract-text-file/'+batch_id\n",
|
||
" files = list_files_in_folder(source_bucket, folder)\n",
|
||
"\n",
|
||
" for file_key in files:\n",
|
||
" destination_key = destination_folder + file_key.split('/')[-1]\n",
|
||
" move_file_s3(source_bucket, file_key, destination_bucket, destination_key)\n",
|
||
"\n",
|
||
"source_bucket = 'doczyai-use2-u-cn1-s3-textract-processing-001'\n",
|
||
"destination_bucket = 'centene-national-contracting-files'\n",
|
||
"destination_folder = 'batch_6_priority_files/duplicate_files/pdf_files/'\n",
|
||
"\n",
|
||
"s3_client = boto3.Session(profile_name='temp_cred').client('s3')\n",
|
||
"\n",
|
||
"with ThreadPoolExecutor(max_workers=20) as executor:\n",
|
||
" futures = [executor.submit(move_files_from_folder, batch_id, source_bucket, destination_bucket, destination_folder) for batch_id in batch_ids]\n",
|
||
"\n",
|
||
" for future in futures:\n",
|
||
" future.result()\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"import csv\n",
|
||
"\n",
|
||
"def read_csv_column(file_path, column_name):\n",
|
||
" \"\"\"Read a specific column from a CSV file and return it as a set of file names.\"\"\"\n",
|
||
" file_names = set()\n",
|
||
" with open(file_path, newline='', encoding='utf-8') as csvfile:\n",
|
||
" reader = csv.DictReader(csvfile)\n",
|
||
" for row in reader:\n",
|
||
" file_names.add(row[column_name].strip()) # Trim whitespace\n",
|
||
" return file_names\n",
|
||
"\n",
|
||
"def read_csv_with_batch_ids(file_path, file_name_column, batch_id_column):\n",
|
||
" \"\"\"Read file names and their corresponding batch IDs from a CSV file.\"\"\"\n",
|
||
" file_batch_map = {}\n",
|
||
" with open(file_path, newline='', encoding='utf-8') as csvfile:\n",
|
||
" reader = csv.DictReader(csvfile)\n",
|
||
" for row in reader:\n",
|
||
" file_name = row[file_name_column].strip() # Trim whitespace\n",
|
||
" batch_id = row[batch_id_column].strip() # Trim whitespace\n",
|
||
" file_batch_map[file_name] = batch_id\n",
|
||
" return file_batch_map\n",
|
||
"\n",
|
||
"def construct_file_paths(file_names, file_batch_map):\n",
|
||
" file_paths = []\n",
|
||
" for file_name in file_names:\n",
|
||
" if file_name in file_batch_map:\n",
|
||
" batch_id = file_batch_map[file_name]\n",
|
||
" file_path = f\"{batch_id}/{file_name}.pdf\"\n",
|
||
" file_paths.append(file_path)\n",
|
||
" else: print(file_name)\n",
|
||
" return file_paths\n",
|
||
"\n",
|
||
"csv_with_file_names = 's3_comparison_output.csv'\n",
|
||
"csv_with_batches = 'batch_2_filtered_batches.csv'\n",
|
||
"\n",
|
||
"file_name_column_1 = 'Only in File List'\n",
|
||
"file_name_column_2 = 'File Name'\n",
|
||
"batch_id_column = 'batch_id'\n",
|
||
"\n",
|
||
"file_names = read_csv_column(csv_with_file_names, file_name_column_1)\n",
|
||
"print(len(file_names))\n",
|
||
"file_batch_map = read_csv_with_batch_ids(csv_with_batches, file_name_column_2, batch_id_column)\n",
|
||
"file_paths = construct_file_paths(file_names, file_batch_map)"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"import pandas as pd\n",
|
||
"import boto3\n",
|
||
"import pandas as pd\n",
|
||
"from concurrent.futures import ThreadPoolExecutor\n",
|
||
"\n",
|
||
"def move_file_s3(source_bucket, source_key, destination_bucket, destination_key):\n",
|
||
" try:\n",
|
||
" # s3_client.copy_object(\n",
|
||
" # Bucket=destination_bucket,\n",
|
||
" # CopySource={'Bucket': source_bucket, 'Key': source_key},\n",
|
||
" # Key=destination_key\n",
|
||
" # )\n",
|
||
" # print(f\"Copied {source_key} to s3://{destination_bucket}/{destination_key}\")\n",
|
||
" response = s3_client.get_object(Bucket=source_bucket, Key=source_key)\n",
|
||
" file_content = response['Body'].read()\n",
|
||
" print(f\"Downloaded {source_key} from s3://{source_bucket}\")\n",
|
||
" s3_client.put_object(Bucket=destination_bucket, Key=destination_key, Body=file_content)\n",
|
||
" print(f\"Uploaded {source_key} to s3://{destination_bucket}/{destination_key}\")\n",
|
||
"\n",
|
||
" except Exception as e:\n",
|
||
" print(f\"Failed to move {source_key}: {e}\")\n",
|
||
"\n",
|
||
"def move_files_from_folder(file_path, source_bucket, destination_bucket, destination_folder):\n",
|
||
" file_key = 'textract-sender-staging-pdfs/'+file_path\n",
|
||
" destination_key = destination_folder + file_key.split('/')[-1]\n",
|
||
" move_file_s3(source_bucket, file_key, destination_bucket, destination_key)\n",
|
||
"\n",
|
||
"source_bucket = 'doczyai-use2-u-cn1-s3-textract-processing-001'\n",
|
||
"destination_bucket = 'centene-national-contracting-files'\n",
|
||
"destination_folder = 'for-textract/'\n",
|
||
"\n",
|
||
"s3_client = boto3.Session(profile_name='temp_cred').client('s3')\n",
|
||
"\n",
|
||
"with ThreadPoolExecutor(max_workers=20) as executor:\n",
|
||
" futures = [executor.submit(move_files_from_folder, file_path, source_bucket, destination_bucket, destination_folder) for file_path in file_paths]\n",
|
||
"\n",
|
||
" for future in futures:\n",
|
||
" future.result()\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 50,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Loaded 386 file names from CSV.\n",
|
||
"Found 24688 files in S3 source folder 'batch_3_priority_files/pdf_files'.\n",
|
||
"Copied: 13-4220581-Oklahoma Orthopaedic Oncology PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 26-3778626-Mind Spa LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 26-4307328-Riverwalk Surgical Services Pllc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-0216707-Second Chance and Reentry Services-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-0263521-Compassion Home Care, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-0763030-LISA CORSTVET MD PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-2910393-Alliance Mental Health, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-3384827-Francois J. Du Toit dba Francois J. Du Toit, M.D. LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-3679671-Amer B Nouh MD PLLC dba Neuro Pain Care-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-3710926-Brite and Shiny Counseling, LLC dba A Caring Alternative-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 26-2933572-Straightline Medical Consultants dba Texas Kidney Consultants-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 26-3016948-Neurolinks of Tulsa LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-2901605-UHS of Oklahoma City, LLC d0b0a Cedar Ridge Hospital-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-4611696-CHARLES BOGIE III MD PHD INC PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 14-1881558-Excel Therapy Specialists LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-1988154-Claremore Podiatry Pc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-4516938-Healthcare One Associates PLLC dba Healthcare One Urgent Care and Famiy Practice-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-4185901-Draper Anesthesia Services PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 26-0693102-Amanda Paul dba Therapies United LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 26-3430100-Tulsa Pediatric Urgent Care PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 23-1727133-Resources for Human Development DBA Family Practice & Counseling Network (FPCN)-ICMProviderAgreement_76756_2(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-4605254-Shepherd Home Health and Hospice LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-2018148-Adonis S. Albotros dba Albotros, PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 35-2509671-SUMMIT MEDICAL CENTER PHYSICIANS LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-8548814-Collaborative Therapy Services, Inc. DBA Tulsa Sunshine Center-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-0156956-Fifth Avenue Physician Services, LLC dba Primoris-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 30-0747169-PHC Health LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-3790437-Kidney Care Associates LLP-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-4780253-Richard D Orgill MD PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 30-1046954-Hometown Urgent Care LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 38-2376906-Charles R. Mettry, D.O.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 26-3320918-Advanced Therapy Associates LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 35-2530009-CBH of Norman Operating, LLC dba Red River Youth Academy-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 20-8552413-FIRSTCARE MEDICAL SERVICES PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 41-2211672-WHEELCHAIR & SEATING CLINIC OF OKLAHOMA LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 38-3983999-Oklahoma Cancer Specialists and Research Institute, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-4750191-Stanbro Healthcare Group-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 37-1863887-HPC Holdings LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 43-6809082-Pediatric Associates of Southwest Missouri, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 27-5208075-J'Dene Rogers dba Integrity Pathways Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 45-1170260-Christopher W. Orendorff MD PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 45-2661348-GEMINI J. BOGIE MD PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 45-3123088-Oklahoma Surgical Group PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-1500095-Daniel H Pham, MD, PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 23-1727133-Resources for Human Development DBA Family Practice & Counseling Network (FPCN)-ICMProviderAgreement_76756_1(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 38-2376906-Charles R. Mettry, D.O.-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 45-4879728-Daniel M Ulberg II dba Healthy Boundaries Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 37-1848588-NeuLine Health Managment LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-2483971-PTMS 3.0 LLC dba Physical Therapy Central-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 41-2095265-Donna J. Price, D.O. PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 45-4434208-Lynch Family Services LLC dba LFS Counseling-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 45-4221372-Bixby Pediatrics PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-1600437-Family Hope House, Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-1139478-Cutting Edge Physical Therapy PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-2014326-Recovery Achievements LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-3584220-Alpha HealthCare Services Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-5047047-BDC Medical, PLLC dba Oklahoma Pain Treatment Centers-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-3413381-VENKATRAM RAJARAM dba RAJARAM MD PLLC-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-2529302-THE GROUP LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-0676912-Kendra Speight APRN-CNP-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 56-2625651-ALPHA HOME HEALTH CARE INC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 48-0777041-Kansas Pathology Consultants PA-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-2343176-URGENT CARE OF MUSKOGEE PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-3413381-VENKATRAM RAJARAM dba RAJARAM MD PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-5536079-Anchored in Hope LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 71-0788742-Highlands Oncology Group, PA-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 56-2465223-Mashovin Home Health Care, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-3824380-Arkansas Liver and Gastroenterology, PA, Corp dba The Liver Care Clinics-ICMProviderAgreement_198310(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 51-0564945-Peters Agency Advantage Services, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 48-1220870-Bryan M Sheehan D.P.M. dba Ankle & Foot Center of Mid-America-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-0963088-Meherrin River Counseling d0b0a Emma L Short-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 52-2201615-Premier Medical Inc. dba M&M Mobility and Medical-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-2059580-Fairview Regional Medical Center-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 61-1906834-The Oklahoma Proton Center LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-4897030-WILLIAMS MEDICAL GROUP PRACTICE, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 72-1545605-Sooner Anesthesia Services LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 47-2332479-CorAspire Mental Health and Wellness Center, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 46-5641382-Premiere Pediatrics PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 48-0684878-Southwest Medical Center-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0700090-Saint Francis Health System-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0590119-Sunbeam Family Services, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0725208-MEMORIAL HOSPITAL OF TEXAS COUNTY AUTHORITY-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0780641-MULTI COUNTY YOUTH & FAMILY SERVICES, INC.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0745473-Lindsay Municipal Hospital-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1317217-GREEN COUNTRY MEDICAL, INC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0775105-Tulsa X-Ray Laboratory, Inc DBA Tulsa Diagnostic & Interventional Radiology-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 72-1545605-Sooner Anesthesia Services LLC-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1049655-Beggs Pharmacy, Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1098634-Hope Community Services, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0761054-ROGER MILLS COUNTY HOSPITAL AUTHORITY DBA Roger Mills Memorial Hospital-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0975224-Oklahoma United Methodist Circle of Care-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0940217-Pivot, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1209599-Muskogee Organization for Narcotic and Alcohol Referral Couns. dba MONARCH, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1333173-Russell-Murray Hospice Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1084521-Green Country Behavioral Health Services, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1261669-Southern Oklahoma Physicians Association-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1356349-Home Integration Inc dba Ultimate One Home Health Care-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1308028-Northwest Physical Therapy Clinic, Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1336461-ERICK DEROCHER, D.O., INC DBA Family Medical Clinic of Western Oklahoma-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1323739-Joseph R Knapik dba Northwest Neurology PLLC- to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-0579285-Mercy Health Oklahoma Communities, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1374867-Specialized Home Nursing, INC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1433994-CARDIOVASCULAR SURGICAL SPECIALISTS CORP-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 62-1600425-McGee Eye Surgery Center LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1373396-Women's Health Group Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1336461-ERICK DEROCHER, D.O., INC DBA Family Medical Clinic of Western Oklahoma-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1512971-Loving Care In-Home Health Services, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1471506-Oklahoma Families First Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1448170-K Anthony Shanbour MD Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1393322-Ricardo Miranda MD dba Dr. Ricardo Miranda INC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1433994-CARDIOVASCULAR SURGICAL SPECIALISTS CORP-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1474926-T L Carey, MD & Associates, INC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1622427-Union Pines Surgery Center, LLC-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1551429-Tulsa Bone & Joint Associates, PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1477756-MUSKOGEE DIGESTIVE CENTER INC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1471919-Physical Rehabilitation Services of Bartlesville, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1520332-THERAFUN LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1550582-MILLENNIUM MEDICAL SERVICES, L.L.C.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1575702-Jimmy Keith Ogden dba OakDen Family Medical-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1528494-Anesthesia Scheduling Services, PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 58-1716970-Youth Villages, Inc.-ICMProviderAgreement_199667(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 74-3133257-Caldwell Medical Group PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1622427-Union Pines Surgery Center, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1551429-Tulsa Bone & Joint Associates, PC-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-6264482-Atoka County Healthcare Authority DBA Atoka County Medical Center-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1488111-The Physicians Group LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-1526844-OK4 Eastgate OPCO LLC d0b0a Eastgate Village Retirement Center-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1562950-Southeastern Oklahoma Family Services Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1591743-Tulsa Hospitalists, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-4005973-Redbud Physical Therapy, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-6017987-State of Oklahoma DBA Oklahoma Department of Mental Health and Substance Abuse Services-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 77-0633896-AHS Hillcrest Healthcare System, LLC.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-6017987-State of Oklahoma dba Oklahoma State Department of Health-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-1575187-Oklahoma Heart Hospital, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 75-2830836-Mark D Vaughn MD-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 77-0700929-Roberta Snow dba Family Transitions-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-1505136-Ok4 McAlester OpCo, LLC d0b0a Walnut Grove Living Center-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-3975565-Neuropathy Treatment Clinic of Oklahoma LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-2742066-DENNIS E. SANDLER MD PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-3249663-Advanced Orthopedics of Oklahoma-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-5019733-ROYCE L. BARGAS DO LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-2269786-Landmark of Midwest City Specialty Hospital LLC, dba Inspire Specialty Hospital-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-5303754-Carrus Care Physicians Group, Inc.-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 80-0728257-Prophylaxis Healthcare LLC dba Axis Healthcare-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-1525984-MEDICAL CENTER PAIN CLINIC LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 75-1860747-Jim B. Spears Inc. dba Vital Care of Vernon-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-2568978-First Care Family Medicine-Mena, PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-3827208-A&M HEALTHCARE CLINIC, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-1520725-OK4 Broadway OpCo, LLC d0b0a Broadway Manor Nursing Home-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-2465485-Blue Sprig Pediatrics, Inc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 81-1526844-OK4 Eastgate OPCO LLC d0b0a Eastgate Village Retirement Center-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 84-4868965-Upper Extremity Orthopedic Specialists PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-5303754-Carrus Care Physicians Group, Inc.-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-2856533-FM Orthopedics Llc-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-1525984-MEDICAL CENTER PAIN CLINIC LLC-(1) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 80-0288042-WOODWARD COUNTY EMERGENCY-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-1080954-Cura Telehealth & Wellness PA-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-2142941-Prime Physician Staffing 2, PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-2354380-Brian J. Wright dba Wright Counseling Solutions, PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 86-1499345-OPCO Coweta OK LLC d0b0a Coweta Manor Nursing Home-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-1527635-Graham Tomball LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 85-1779519-Equality Health Group LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 85-1008658-CenterWell Senior Primary Care (LA), PC d0b0a CenterWell Senior Primary Care-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 82-1632183-OPCO MM Mcalester, OK, LLC d0b0a Mitchell Manor-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 88-4022593-Family Health Clinic - Clinical De Salud Familiar-(2) to batch_3_priority_files/re_run_files\n",
|
||
"File not found: 1. Termed CDPAS - Chinese American Planning Council Home Attendant Program(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: 1. Termed CDPAS - Chinese American Planning Council Home Attendant Program(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: 26. Lawrence Community Health Services_Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 86-3571506-Jones Family Practice Clinic PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 01. See One Brooklyn Health System Inc Agreement Eff 8.1.19 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 31. Montefiore - Nyack Hospital Home Health_Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-4248190-Free Your Mind Counseling LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 88-1369628-BLACK HAWK LABS LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 86-1471248-OPCO Cleveland OK LLC d0b0a Cleveland Manor Nursing Home-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 83-1359570-Resolved Behavioral Health Services, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 33. Oswego County Department of Health_Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 56. Winthrop University Hospital Home Health Agency_Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 85-2202567-HOMETOWN FAMILY HEALTHCARE, Cynthia McNitt, APRN-CNP, PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: A & J Home Care Inc - Rescinding Non Renewal Letter to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 85-1301413-Autism Learning Collaborative LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 86-2934663-URGENT CARE OF SEMINOLE APRN-CNP LLC dba SYNERGY URGENT CARE-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 87-4829433-Montera Health Texas LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: A & J Home Care Inc - Amendment Provider Signed 1.1.17 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: A&J Home Care Inc - 028705982 - (REVISED) PIC 5.8.15 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 88-3344356-Elite Peds OK LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 86-2190998-Premier Breast Health Institute of Oklahoma, LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: A & J Home Care Inc - Amendment 1.1.17 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing & Rehabilitation at Salamanca LLC - AmendmentProvider Signed 12.19.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 84-4856469-Balance Psychiatry & Wellness PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 88-3034095-National Family Medical Associates, LLC dba VIPcare-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Dunkirk LLC - Amendment Provider Signed 12.19.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Dunkirk, LLC- Amendment 12.19.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Eden LLC - Amendment Provider Signed 12.19.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 918 James Receiver, LLC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 90-1152279-Julie Sullivan SP Pediatrics PLC dba South Pointe Pediatrics PC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Eden, LLC - Amendment 12.19.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 90-0654217-Spring Child and Adult Psychiatry PLLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Salamanca, LLC - Amendment 12.19.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 918 James Receiver LLC - AMD Prov Signed (MLTC) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Ace Ambulette Service Corp - 454472650 Notice 10.19.2020 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 93-1772976-Quality of Life Counseling LLC-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Advanced Clinical Laboratory Solutions Inc - Amendment 3.1.16 to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Advanced Medical Care PLLC - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Dunkirk, LLC - Amendment 9.1.11 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: A & J Home Care Inc - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Dunkirk, LLC - Amendment Provider Signed 9.1.11 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Salamanca, LLC - Amendment 9.1.11 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Ahmed Bayoumi to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Salamanca, LLC - Amendment Provider signed 9.1.11 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Advanced Clinical Laboratory Solutions Inc - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: A & J Home Care Inc - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Abdul Malik MD PC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Advanced Clinical Laboratory Solutions Inc - Amendment Provider Signed 3.1.16 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Salamanca, LLC- Agreement 6.29.09 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitition at Eden, LLC- Agreement 6.29.09 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Absolut Center for Nursing and Rehabilitation at Dunkirk, LLC- Agreement 6.29.09 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Affinity Skilled Living & Rahabilitation Center - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alice Hyde Medical Center - Letter 10.15.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Albany Regional Eye Surgery Center LLC - Amendment 8.8.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: AC Center Inc dba Trillium Health - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: AC Center Inc dba Trillium Health - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: All Metro Aids Inc dba All Metro Health - Memorandum to batch_3_priority_files/re_run_files\n",
|
||
"File not found: AMS Primary Medical Care House Calls PC - Agreement(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: AMS Primary Medical Care House Calls PC - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Ace Ambulette Service Corp - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Ace Ambulette Service Corp - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alan J Katz MD - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Advanced Clinical Laboratory Solutions Inc - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anatoly Spevitor dba J & A Health Services LLC - Amendment 1.1.18 (PCA) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anatoly Spevitor dba J & A Health Services LLC - Amendment 1.1.17 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anatoly Spevitor dba J & A Health Services LLC - Amendment Provider Signed 1.1.18 (PCA) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anatoly Spevitor dba J&A Health Services LLC - Amendment 1.1.18 (CDPAS) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anatoly Spevitor dba J&A Health Services LLC - Amendment Provider Signed 1.1.18 (CDPAS) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alley Valley LLC - Amendment Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anatoly Spevitor dba J&A Health Services LLC - Amendment Provider Signed 1.1.17 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Apria Healthcare LLC - Agreement 1.1.14 (Bifurcation) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alice Hyde Medical Center - Amendment Provider Signed 1.13.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Agnes Bethelmie Transportation - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Agnes Bethelmie Transportation - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 23-1727133-Resources for Human Development DBA Family Practice & Counseling Network (FPCN)-ICMProviderAgreement_76756(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anna Leskiv MD - Agreement Provider Signedt to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alice Hyde Medical Center - Amendment 1.13.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alan J Katz MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Aurelia Osborn Fox Memorial Hospital - Amend Prov Signed(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Aurelia Osborn Fox Memorial Hospital - Amend Prov Signed(2) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Aurelia Osborn Fox Memorial Hospital - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Aurelia Osborn Fox Memorial Hospital - Amendment(2) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Autumn View Health Care Facility LLC - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: B Stern Physical Therapy - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: ASM Shah Alam Chowdhury, MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Arkadiusz Jachimowicz DPM - Amendment 6.6.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alice Kolasa, DO - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alan Ditchek DBA Alan Ditchek MD PC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: All Metro Aids Orginal Agreement 2007 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Batavia Ophthalmology PLLC - Amendment 4.1.14 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alan J Katz MD PLLC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Bedford Medical Family Health Center Inc - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Behavioral Health Services North Inc - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Behavioral Health Services North Inc - Agreement Provider Signed(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Arkadiusz Jachimowicz DPM - Amendment Provider Signed 6.6.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Batavia Ophthalmology PLLC - Amendment Provider Signed 4.1.14 to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Bharathi Reddy MD PC - Agreement(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Bharathi Reddy MD PC - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Aleksandr ILyayev MD PC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anna Leskiv MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Blossom View Nursing Home Inc - Amendment 11.22.13 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Blossom View Nursing Home Inc - Amendment Provider Signed 11.22.13 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: BNM Group, Inc 454759772 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Anjali Shah, M.D.- Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx - Lebanon Hospital Center - Amendment 1.1.2002 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bradford Recovery Center Response to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Aryeh L. Schulman DPM - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Highbridge Woodycrest Center - Standard Clause Letter to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Alan Ditchek DBA Alan Ditchek MD PC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Aleksandr ILyayev MD PC - Agreement 9.21.17 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Apria Healthcare Inc - '08 Contract to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx - Lebanon Hospital Center - Health Home Amendment 4.20.16 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Archna Sinha MD - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Amendment 9.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Aryeh L Schulman DPM - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Arkadiusz Jachimowicz DPM - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Amendment Provider Signed 9.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Administrative Health Home Services Agreement Provider Signed 9.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Archna Sinha MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Business Associate Agreement Provider Signed 9.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Brookhaven Health Care Facility LLC - Agreement(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Brookhaven Health Care Facility LLC - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Business Associate Agreement 9.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Brooklyn Family Medical Care - Agreement - Sig_Pg to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Brooklyn Family Medical Care - Agreement - 1st_Pg to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bo Chao, MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Amendment 4.20.16 (State Lang Prov) to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Buffalo Transportation Inc - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Buffalo Transportation Inc - Amendment(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Buffalo Geriatric & Rehabilitation Medicine, LLP - Notice - 03.04.2022 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Agreement Provider Signed 4.20.16 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Checklist 9.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Batavia Ophthalmology PLLC - Agreement Provider Signed to batch_3_priority_files/re_run_filesCopied: Beacon Center - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"\n",
|
||
"Copied: Bronx- Lebanon Hospital Center - Agreement 6.6.1996 to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Carillon Nursing and Rehabilitation Center LLC - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Carlos J Rivera MD PC - Agreement provider signed(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Carlos J Rivera MD PC - Agreement provider signed(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: CareMount Medical PC - Extension agreement through 09-30-21 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Amendment Provider Signed 4.20.16 (State Lang Prov) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bangaruraju Kolanuvada MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Batavia Ophthalmology PLLC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Catholic Charities Community Services of Orange County - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bentley L Patterson MD PLLC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Catholic Charities Community Services of Orange County - Amendment 12.26.16 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: CareMount Medical PC - Delegated Cred Agreement 4.9.20 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: CareMount Medical PC - Deledated Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bangaruraju Kolanuvada MD - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bentley L Patterson MD PLLC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Catholic Charities Community Services of Orange County - Amendment Provider SIgned 12.26.16 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Delegated Cred Agreement Provider Signed 10.7.16 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Central New York Health Home Network LLC - Business Associate Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Highbridge Woodycrest Center - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Hospital Center - Delegated Cred Agreement 10.7.16 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Champlain Valley Physicians Hospital Medical Center - Amendment 1.1.13 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Champlain Valley Physicians' Medical Center - Amendment 1.1.07 to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Chautauqua Hospice and Palliative Care - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"Copied: Cap Medical Group PLLC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Chiropractic Health Services PC - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Central New York Health Home Network LLC - Administrative Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Choices Counseling Services - Amendment (Elec. Language) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Cayuga County Nursing Home - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Champlain Valley Physicians Hospital Medical Center - Amendment 10.1.11 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: CAREMOUNT MEDICAL PC - Amendment Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Casa Promesa - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Champlain Valley Physicians Hospital Medical Center - Amendment Provider Signed 10.1.11 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Choice Medical Transportation - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: CAREMOUNT MEDICAL PC - Amendment to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Claxton Hepburn Medical Center - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Cedric K Olivera MD PLLC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Casa Promesa - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Cayuga County Nursing Home - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Community Hearing Services Ltd - Amendment 10.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"File not found: CoreHealth Medical Care PLLC - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Cedric K Olivera MD PLLC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Community Hearing Services Ltd. Amendment Provider Signed 10.1.12 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Chenango Audiology Services - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Center for Nursing and Rehabilitation Inc - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Buffalo Geriatric and Rehabilitation Medicine LLP - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Buffalo Geriatric and Rehabilitation Medicine LLP - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Council on Alcoholism and Substance Abuse of Livingston County - Effect Date Ltr 5.5.17 to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Crouse Radiology Associates LLP - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Christopher Enu, M.D.- Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: County Cabs LLC - 821084506 Notice 10.12.2020 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Center for Nursing and Rehabilitation Inc - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Christian L Holcomb MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Community Hearing Services, Ltd.- Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Christian L Holcomb MD PC dba Holcomb Family Medicine - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"File not found: David Soltanpour, MD - Agreement(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: David Soltanpour, MD - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Delphi Healthcare PLLC - Agreement Provider Signed(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Delphi Healthcare PLLC - Agreement Provider Signed(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Champlain Valley Physicians Hospital Medical Center - Amendment Provider Signed 1.1.13 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Christian L Holcomb MD - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Cornell University on behalf of its Weill Cornell Physician Org- Delegated Agreement Pro Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Christian L Holcomb MD PC dba Holcomb Family Medicine - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"File not found: Diane Ambulette LLC - Amendment(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: Diane Ambulette LLC - Amendment(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Corey I Bickoff, MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Divine Love Medical Services PC - Standard Clause Letter to batch_3_priority_files/re_run_files\n",
|
||
"File not found: DOJ Operations Associates LLC - Agreement(1) in batch_3_priority_files/pdf_files\n",
|
||
"File not found: DOJ Operations Associates LLC - Agreement(2) in batch_3_priority_files/pdf_files\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Error copying file: cannot access local variable 'rerun' where it is not associated with a value\n",
|
||
"Copied: Comprehensive Medical Diagnostic, PC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: 73-6061037-Comanche County Hospital Authority dba Comanche County Memorial Hospital-(2) to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Daughter of Jacob Nursing Home Company, Inc. - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Cortlandt Healthcare LLC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Christopher Sinclair MD - Agreement 6.8.17 to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Christopher Sinclair MD - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Cornell University on behalf of its Weill Cornell Physician Organization - Agree Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Crown Nursing and Rehabilitation Center - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Cortlandt Healthcare LLC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Daniel Branovan MD - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Daniel Branovan MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Devi Nampiaparampil DBA Metropolis Pain Medicine PLLC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: David Gordon DPM - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Dennis Zoda MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: David Engelbrecht, MD - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Dennis Zoda MD - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Devi Nampiaparampil DBA Metropolis Pain Medicine PLLC - Agreement to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Divine Love Medical Services PC - Agreement Provider Signed to batch_3_priority_files/re_run_files\n",
|
||
"Copied: Bronx Lebanon Highbridge Woodycrest Center - Agreement Provider Signed to batch_3_priority_files/re_run_files\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"import boto3\n",
|
||
"import pandas as pd\n",
|
||
"from concurrent.futures import ThreadPoolExecutor, as_completed\n",
|
||
"\n",
|
||
"s3_client = boto3.Session(profile_name='temp_cred').client('s3')\n",
|
||
"\n",
|
||
"def get_filenames_from_s3(bucket, prefix):\n",
|
||
" paginator = s3_client.get_paginator('list_objects_v2')\n",
|
||
" page_iterator = paginator.paginate(Bucket=bucket, Prefix=prefix)\n",
|
||
"\n",
|
||
" filenames = set()\n",
|
||
" for page in page_iterator:\n",
|
||
" if 'Contents' in page:\n",
|
||
" for obj in page['Contents']:\n",
|
||
" filenames.add((obj['Key'].split('/')[-1])[:-4])\n",
|
||
"\n",
|
||
" return filenames\n",
|
||
"\n",
|
||
"def copy_file_if_exists(file_name, source_bucket, source_prefix, destination_bucket, destination_prefix, existing_files):\n",
|
||
" if file_name in existing_files:\n",
|
||
" source_key = f\"{source_prefix}/{file_name}\".strip('/') + \".pdf\"\n",
|
||
" destination_key = f\"{destination_prefix}/{file_name}\".strip('/') + \".pdf\"\n",
|
||
"\n",
|
||
" # s3_client.copy_object(\n",
|
||
" # CopySource={'Bucket': source_bucket, 'Key': source_key},\n",
|
||
" # Bucket=destination_bucket,\n",
|
||
" # Key=destination_key\n",
|
||
" # )\n",
|
||
"\n",
|
||
" response = s3_client.get_object(Bucket=source_bucket, Key=source_key)\n",
|
||
" file_content = response['Body'].read()\n",
|
||
" # print(f\"Downloaded {source_key} from s3://{source_bucket}\")\n",
|
||
" s3_client.put_object(Bucket=destination_bucket, Key=destination_key, Body=file_content)\n",
|
||
" print(f\"Copied: {file_name} to {destination_prefix}\")\n",
|
||
" else:\n",
|
||
" print(f\"File not found: {file_name} in {source_prefix}\")\n",
|
||
" rerun = pd.concat([rerun, df[df['File name Without Extension'] == file_name]])\n",
|
||
"\n",
|
||
"def copy_files_multithreaded(file_list, source_bucket, source_prefix, destination_bucket, destination_prefix, existing_files, max_workers=20):\n",
|
||
" with ThreadPoolExecutor(max_workers=max_workers) as executor:\n",
|
||
" futures = [\n",
|
||
" executor.submit(copy_file_if_exists, file_name, source_bucket, source_prefix, destination_bucket, destination_prefix, existing_files)\n",
|
||
" for file_name in file_list\n",
|
||
" ]\n",
|
||
"\n",
|
||
" for future in as_completed(futures):\n",
|
||
" try:\n",
|
||
" future.result()\n",
|
||
" except Exception as e:\n",
|
||
" print(f\"Error copying file: {e}\")\n",
|
||
"\n",
|
||
"csv_path = 'new_duplicates_in_batch3.csv'\n",
|
||
"file_name_column = 'File Name Without Extension'\n",
|
||
"source_bucket = 'centene-national-contracting-files'\n",
|
||
"search_prefix = 'batch_3_priority_files/txt_files'\n",
|
||
"source_prefix = 'batch_3_priority_files/pdf_files'\n",
|
||
"destination_bucket = 'centene-national-contracting-files'\n",
|
||
"destination_prefix = 'batch_3_priority_files/re_run_files'\n",
|
||
"\n",
|
||
"df = pd.read_csv(csv_path)\n",
|
||
"rerun = pd.DataFrame(columns=df.columns)\n",
|
||
"file_names = df[file_name_column].dropna().tolist()\n",
|
||
"print(f\"Loaded {len(file_names)} file names from CSV.\")\n",
|
||
"existing_files = get_filenames_from_s3(source_bucket, search_prefix)\n",
|
||
"print(f\"Found {len(existing_files)} files in S3 source folder '{source_prefix}'.\")\n",
|
||
"copy_files_multithreaded(file_names, source_bucket, source_prefix, destination_bucket, destination_prefix, existing_files)\n",
|
||
"rerun.reset_index(drop=True, inplace=True)\n",
|
||
"rerun.to_csv('batch3_rerun.csv')\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 82,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Copied: processed/Northeast Parent and Child Society, Inc.- Agreement_Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health dba Medina Memorial Hospital - Amendment Provider Signed (PCA) 1.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. MLTC TRIM LETTER due to 2018 NYS Mandated Trim - Allegiant Home Care, LLC 11.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 1.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment 1.25.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Island Musculoskeletal Care MD PC - Amendment Provider Signed 6.8.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Farkad Balaya, MD, PLLC - Agreement 9.1.09.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment 1.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yertle Operations LLC dba Fishkill Center for Rehabilitation and Nursing - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Greenpoint Cardiac and Medical Services PC - Amendment 12.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Madison County Office for the Aging - Agreement 5.23.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/John M Wolfgang PsyD - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services -12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment (REVISED) void.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Madhumati R. Kalavar, MD, PC - Medicare FS Notice Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health and Medina Memorial Hospital - Amendment Provider Signed 11.21.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - NonStandard.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Kidney & Hypertension, PLLC- Amendment (Electronic Language).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Louis A Carrera MD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Standard Clause Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services - Amendment 8.21.2013.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment 2.18.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society, Inc.- Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc - Amendment 7.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 7.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Delegated Agreement Provider Signed 4.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sharon Yee MD - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Farkad Balaya, MD, PLLC - Amendment 9.26.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospital Inc - Nonstandard 4.22.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/73 North of Granville Inc dba Holbrook Adult Home - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brooklyn Center For Psychotherapy Inc - Amendment (Electronic Language).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital AMD repl page 5.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment (Revised).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson Family Medicine PC - Amendment Provider Signed 6.5.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health and Medina Memorial Hospital - Amendment 11.21.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - NonStandard 1.25.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 5.20.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kourosh Ashourzadeh DO PC dba Caring Pediatric Associates - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 5.21.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 2.2.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Robin Bromberg DC - Amendment 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Gulbahar P Donn MD - Amendment 10.26.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hospice of Orleans Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Federation of Organizations for the NYS Mentally Disabled Inc. - HCBS Program Agreement - March 26, 2019.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ralex Services Inc dba Glen Island Center for Nursing and Rehabilitation - Amendment 1.16.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ladies First Krysten Schmidt Nurse Practitioner in Family Health - Appendix C.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford, LLP - Agreement - 1st_Pg.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/VNA of Schenectady and Saratoga Counties Inc - Amendment Provider Signed 11.14.13 (PERS).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment Provider Signed 11.16.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parkville Medical PC - Amendment Provider Signed 2.23.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment Provider Signed.9.28.12.pdf from centene-fidelis-files to for-processedCopied: processed/Neonatal Associates of Central New York PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.14 (2) HBX Ext.pdf from centene-fidelis-files to for-processed\n",
|
||
"\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment Provider Signed 7.1.18 (SBHC).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Zafar K. Mirza Gastroenterology PLLC - Amendment Provider Signed 12.27.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Garnet Health Medical Center Catskills - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society Inc - Schedule5.2C Revised.06.06.2012.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc DBA Cornerstone of Medical Arts - Non-Standard.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Baron Hospital Medical Supply Inc - Amendment 10.4.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Agreement Provider Signed 4.20.16 (HH).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Non Standard Memo.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Amendment Provider Signed 2.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. Non-Renewal Parker Jewish Institute for Health Care and Rehabilitation 11.15.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Long Island FQHC, Inc dba Family Health Centers - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 12.1.06.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Baron Hospital Medical Supply Inc - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Baron Hospital Medical Supply Inc - Amendment Provider Signed 10.4.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sullivan Emergency Services PC - Medicare FS Notice Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Spine & Joint Medical Care PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Raj Sleep & Pulmonary Medicine PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of the North Country New York Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Notice of Amendment 6.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Hospice Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center Inc - Wakefield Ambulatory Care Center - Amendment 9.8.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 4.24.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Chelsea Diagnostic Radology - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health dba Medina Memorial Hospital - Amendment (PCA) 1.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BriovaRx Infusion Services 100 Inc and 101 Inc - Agreement 10.12.18 (VOID).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.16 (HBX).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Failed to copy processed/Quest Diagnostics Incorporated - Amendment Provider Signed(1).pdf from centene-fidelis-files: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - (REVISED) Amendment 1.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BriovaRX Infusion Services 100 Inc and 101 Inc - Amendment Provider Signed 8.24.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Plastic and Reconstructive Surgery PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dutchess Ambulatory Surgical Center LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc DBA Cornerstone of Medical Arts - Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 4.1.17 (HBX EXT).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Gelsomino and Davis Speech Occupational and PT Services PLLC - Agreement.pdf from centene-fidelis-files to for-processedCopied: processed/Hospice of Orleans Inc - Amendment Provider Signed 2.9.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"\n",
|
||
"Copied: processed/Paramount Pulmonary Services, L.L.C. - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment Provider Signed 11.26.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ralex Services Inc dba Glen Island Center for Nursing - NonStandard 1.16.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Laboratory Alliance of CNY - 161536202 Notice 09.28.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford, LLP - Agreement - Sig_Pg.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 10.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc Amend Notice.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment Provider Signed 8.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 11.1.11 (MLTC).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 7.1.18 (SBHC).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ralex Services Inc dba Glen Island Center for Nursing and Rehabilitation - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc. - Non Standard 11.23.08.pdf from centene-fidelis-files to for-processedCopied: processed/New York-Presbyterian-Brooklyn Methodist Hospital - Signed Rate sheets 7.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"\n",
|
||
"Copied: processed/Calvary Hospital Inc - Amendment 1.21.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment Provider Signed 1.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment 8.2.2013.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 9.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Physical Therapy PLLC - Standard Clause Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 4.10.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Michael Kreymer DO - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York City Ophthalmology PC - Amendment 4.24.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care, P.C.- Amendment 3.31.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Island Musculoskeletal Care MD PC - Amerndment 8.15.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Irene Safir Audiology PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York Inc - Amendment 6.3.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Long Island FQHC, Inc dba Family Health Centers - Notice of Rate Change - 7.23.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prithwijit Basu MD PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Physical Therapy PLLC - Amendment 11.29.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/NYSARC Inc Herkimer County Chapter dba Herkimer Area Resource Center - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 6.28.19 (observation).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Delegated Cred Agreement 6.16.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Greenpoint Cardiac and Medical Services PC - Amendment Provider Signed 12.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services - Amendment Provider Signed 7.2.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care PC - Amendment Provider Signed 8.9.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc- Notice of Amendment (PCA)10.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment 12.19.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Bluebird F.I. LLC dba Bluebird Self Home Care - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - Amendment 9.2.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Zinaida Polishchuk LMHC DBA Mental Health Counseling PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC - SHS Agreement Provider Signed 1.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment Provider Signed 7.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Louis A Carrera MD - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Amendment Provider Signed 7.1.18 (Consent).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Hospice Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Cente - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment 7.1.18 (SBHC).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Premier Anesthesia of New York, PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Gynecologic Oncology PC - 030460176 Notice 08.24.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kelberman Center Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/University Radiology at Buffalo Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ramapo Ophthalmology Associates LLP - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/OBGYN Associates of Erie PC - 251653555 Notice 09.28.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hospice of Orleans Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment 5.13.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Long Island FQHC, Inc dba Family Health Centers - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - MCR Amendment 1.1.06.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.16 (HBX Ext).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/123 Medical Group PC - Amendment 11.02.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KidsPeace National Centers of North America Inc - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DBA Mt Sinai Elmhurst Faculty Practice - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 1.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/John M Wolfgang PsyD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Family Practice Associates of Cattaraugus LLP - Amendment 4.11.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment 9.6.19 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/2. Pioneer Home Care Agency Inc. - LTC Trim letter&reciepts 10.1.19 REQ6307168.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sovereign Transportation Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Monroe Wheelchair Inc - Non Standard Memo 9.9.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Imagetech Communication dba Doug Uhlig Psych Associates - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society Inc - Amendment 6.22.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment Provider Signed 1.5.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society, Inc.- Non standard.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc DBA Cornerstone Medical Arts - Amendment 9.18.15 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Bennington - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/123 Medical Group PC - Amendment Provider Signed 11.2.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 12.12.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Poughkeepsie.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment 3.24.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 10.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KCI USA Inc - Amendment 8.15.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dart Medical Laboratory Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin rate sheets 1.1.15 to 12.31.15 and 1.1.16 through 12.31.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/NYC Podiatric Medicine and Surgery PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amed Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services -Notice of Amendment 10.1.22 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Plastic and Reconstructive Surgery PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brenda K Rodriguez LMFT - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment Provider Signed 11.11.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc - NonStandard.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc - Non Standard Memo.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. Non-Renewal New Franklin Center for Rehabilitation and Nursing 11.15.16 (2).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Hemophilia Amendment 7.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc - Amendment Provider Signed 7.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood Hudson Peconic Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Anesthesiology Associates of Boro Park LLP - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BriovaRx Infusion Services 100 Inc and 101 Inc - Agreement Provider Signed 10.12.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/NYSARC Inc Herkimer County Chapter dba Herkimer Area Resource Center - Agree Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hosptial - Notice - 03.04.2022.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. MLTC TRIM LETTER due to 2018 NYS Mandated Trim - Concept Care, Inc. 11.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc - Amendment Provider Signed 6.3.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 6.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Gynecologic Oncology PC - Amendment 11.30.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Greenpoint Cardiac and Medical Services PC - Amendment 12.19.19.pdf.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 10.21.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Richard J Gelman PsyD - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/OBGYN Associates of Erie PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Elmway Pharmacy Inc - Amendment Provider Signed 7.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 5.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Nonstandard 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Hospice Inc - Amendment Provider Signed 7.4.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center- Amendment Provider signed 5.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Federation of Organizations forthe NYS Mentally Disabled Inc - APS.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Federation of Organizations for the NYS Mentally Disabled Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment Provider Signed 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yertle Operations LLC dba Fishkill Home Care - Agreement Provider Signed 11.9.18 (CHHA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Ambulette Service Inc - Amendment Provider Signed 1.1.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Physical Therapy PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sleep Disorders Lab of Central New York, LLC Amendment 12.22.19.pdf.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Diabetes and Thyroid PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Long Island FQHC Inc dba Family Health Centers - Amd Prov Signed 7.1.18 (SBHC) (Revised).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Gynecologic Oncology PC - Amendment Provider Signed 11.30.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/3 Visions Ophthalmology PC - Amendment 1.19.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BryLin Hospital Inc - Amendment provider signed 1.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dermedx Dermatology, PC dba Dermatique - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Administrative Home Service Agreement 12.23.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc DBA Cornerstone Medical Arts - NonStandard 2.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Island Musculoskeletal Care MD PC - Amendment Provider Signed 8.15.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BryLin Hospital Inc - Non Standard 1.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ladies First Krysten Schmidt Nurse Practitioner in Family Health - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sleep Insights Medical Associates, PLLC Amendment 12.27.19.pdf.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 5.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Eastern Comprehensive Medical Services PC - (Revised) Amendment 2.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment 1.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rapid Access Medical Diagnostics PLLC- Notice of Rate Change - 05072021.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York, Inc - Amendment 8.8.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Peter Y Chang MD FACG LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saratoga Schenectady Gastroenterology Associates PC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Interborough Anesthesia PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Optimum Heart Associates PLLC - Amendment 7.3.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Chelsea Diagnostic Radology - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/2. Schofield Home Health Care Services Inc - Rescind Notice 7.22.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saratoga Schenectady Gastroenterology Associates PC.pdf_AD signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 1.1.14 (contract extension).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Cente - Amendment 5.20.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Third Avenue Open MRI - Amendment Provider Signed 10.15.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Amendment Provider Signed 7.15.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - NonStandard 9.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Delegated Agreement 4.1.17.pdf from centene-fidelis-files to for-processedCopied: processed/Medical Arts Sanitarium Inc - (REVISD) Amendment 6.3.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BryLin Hospital Inc - Nonstandard 6.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 2.2.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 8.1.09.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Robin Bromberg DC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Attica Family Medicine PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services -Notice of Amendment 6.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vermont Managed Care Inc - Delegated Agreement Provider Signed (Delegated) 12.22.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 8.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 1.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - revised Amendment Provider Signed 11.11.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Agreement_Provider signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Agreement Provider Signed (Delegated) 5.20.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A & J Home Care Inc - Amendment 12.12.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Steven L Grainer DO - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Laboratory Alliance of CNY - Amendment 1.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment Provider Signed 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - Amendment 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Amendment Provider Signed 8.4.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc_Revised - Notice of Amendment (PCA)6.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Kidney & Hypertension PLLC - 203661621 Notice 09.28.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment 1.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc - Amendment Provider Signed 1.21.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Musculoskeletal Pain Management PC - Amendment 6.13.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hana Gastroenterology PC - Agreement Provider Signed 5.6.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Peaceful Home Associate Licensed Mental Health Counseling PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Noor Medical Care - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Amendment 12.20.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amend Prov Signed (PCA) 10.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba Buffalo Centre for the Treatment of Eating Disorders - AMD Provider Signed 7.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care, P.C.- Amendment 9.19.19.(REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Retina Associates of New York PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Suffolk Primary Health LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rapid Access Medical Diagnostics PLLC - Amendment 5.12.2018.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - Non Standard Memo.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ramapo Ophthalmology Associates LLP - 061536408 Notice 08.24.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of the Southern Finger Lakes Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - NonStandard 7.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Monroe Wheelchair Inc - Amendment 7.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc DBA Cornerstone of Medical Arts - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Amendment Provider Signed 7.27.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Neurology PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment Provider Signed 9.6.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jacob Perlow Hospice Corporation DBA MJHS Hospice and Palliative Care - Amendment Provider Signed 10.1.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Robin Bromberg DC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York, Inc - Fax Re Claims 1.28.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment Provider Signed 12.9.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dart Medical Laboratory Inc - Amendment 3.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Farkad Balaya, MD, PLLC - Amendment Provider Signed 9.26.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jacob Perlow Hospice Corporation DBA MJHS Hospice and Palliative Care - Amendment 10.1.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Agreement (Delegated) 5.20.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BryLin Hospital Inc - Amendment 6.18.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Zinaida Polishchuk LMHC DBA Mental Health Counseling PC - Standard Clause Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Evergreen Ear Nose and Throat Surgery PC - FIDA Form (480 E Bay Dr).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sharon Yee MD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health (formerly Medina Memorial) -160755799 7.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Izak Herschitz MD PC - Amendment 6.11.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc - Amendment 5.6.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment 1.1.19 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Federation of Organizations for the NYS Mentally Disabled Inc - Amendment 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment 8.29.2013.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.18 (HBX Ext).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.14 (HBX Ext).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Neonatal Associates of Central New York PC - Agreement 6.16.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center- Amendment 5.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saratoga Schenectady Gastroenterology Associates PC - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parkville Medical PC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Peaceful Home Associate Licensed Mental Health Counseling PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 7.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - Agreement Provider Signed .pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Emergency Medical Associates PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Steven L Grainer DO - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York Inc - Amendment Provider Signed 8.8.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sleep Disorders Lab of Central New York LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - 112981029 Notice 8.31.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment 4.1.01.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ralex Services Inc dba Glen Island Center for Nursing - Amendment Provider Signed 1.16.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Monroe Wheelchair Inc - Amendment Provider Signed 7.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/YB Radiology PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 8.15.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care PC - Amendment Provider Signed 12.19.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Nutrition PLLC - Revised - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Business Associate Agreement Prov Signed 12.23.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 9.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dutchess Ambulatory Surgical Center LLC - 141803011.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hana Gastroenterology PC - Agreement 5.6.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Agreement Provider Signed 7.15.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Evergreen Ear Nose and Throat Surgery PC - Internal Memo.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pulmonary Critical Care and Sleep Medicine PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/YB Radiology PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DBA Mt Sinai Elmhurst Faculty Practice - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Ambulette Service Inc - Amendment 12.12.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vermont Managed Care Inc - Delegated Agreement Provider Signed 12.22.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment Provider Signed 6.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment Provider Signed 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Zafar K. Mirza Gastroenterology PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kelberman Center Inc - Amendment 10.22.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc - Agreement 9.12.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment 11.26.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Baron Hospital Medical Supply Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care, P.C.- Amendment 8.9.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - NonStandard 6.18.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/3 Visions Ophthalmology PC - Amendment Provider Signed 1.19.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Musculoskeletal Pain Management PC - Amendment Provider Signed 6.13.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center Inc - Wakefield Ambulatory Care Center - AMD Provider Signed 9.8.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saratoga Schenectady Gastroenterology Associates PC - Amendment 3.20.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lisa M Loomis LCSW - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans community Health - amendment 2014.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Lab_RECON_AD signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Imagetech Communication dba Doug Uhlig Psych Associates - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 1.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Malissa Larson - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospital Inc - Amendment Provider Signed 4.10.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment Provider Signed 5.13.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Hospice Inc - Amendment Provider Signed 2.5.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment Provider Signed 1.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Peter Y Chang MD FACG LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment Provider Signed 2.18.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Evergreen Ear Nose and Throat Surgery PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ladies First Krysten Schmidt Nurse Practitioner in Family Health - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson County Public Health Service - Revised - Amendment 1.25.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospital.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yertle Operations LLC dba Fishkill Home Care - Agreement 11.9.18 (CHHA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pelham Bay Medical Care for Women PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment Provider Signed 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital, Inc. - Amendment 11.23.08.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment Inpt Psych 1.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pulmonary Critical Care and Sleep Medicine PLLC - ( Revised) Agreement .pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment Provider Signed 7.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BryLin Hospital Inc - Amendment 1.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC (Teladoc Health Inc) - Agreement (Standard Health Services).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Delegated Agreement Provider Signed 10.27.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/NYC Podiatric Medicine and Surgery PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A & J Home Care Inc - Aministrative Amendment 1.1.15 (CDPAS).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society Inc - Amendment Provider Signed 5.30.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc - Agreement Provider Signed 9.12.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc. - NonStandard 9.12.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson Family Medicine PC - Amendment 6.5.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rajen Maniar Cardiology PC - Amendment 10.15.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/73 North of Granville Inc dba Holbrook Adult Home - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jacob Perlow Hospice Corporation DBA MJHS Hospice and Palliative Care - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood Hudson Peconic Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KCI USA Inc - Amendment Provider Signed 8.15.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Bernard K Crawford MD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/OBGYN Associates of Erie PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of Central and Western NY Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Cardiovascular Medical Imaging PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - Amendment Provider Signed 6.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York-Presbyterian Queens.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Kidney Physicians PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/VNA of Schenectady and Saratoga Counties Inc - Amendment Provider Signed 11.14.13 (MLTC).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment Provider Signed 1.25.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Nutrition PLLC - Standard Clause Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yertle Operations LLC dba Fishkill Home Care - Agreement (CHHA) 6.11.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KidsPeace National Centers of North America Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services -Notice of AMD 1.1.23 (PCA) (ROS) Revised RITM04707589.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc - Amendment 11.10.05 (MCR).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of Central and Western NY Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Amendment Provider Signed 9.2.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Third Avenue Open MRI - Amendment 10.15.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Zinaida Polishchuk LMHC DBA Mental Health Counseling PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Diabetes and Thyroid PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc. - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York City Ophthalmology-agreement-7.13.08.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family HealthCare - Amendment 1.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A & J Home Care Inc - Amendment 12.12.13 (CDPAS).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of the North Country New York Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Paramount Pulmonary Services, L.L.C. - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Garnet Health Medical Center Catskills - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yertle Operations LLC dba Fishkill Home Care - Agreement Provider Signed (CHHA) 6.11.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain OBGYN - Amendment Provider Signed 12.20.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Gelsomino and Davis Speech Occupational and PT Services PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc - Agreement Provider Signed 6.11.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - Amendment Provider Signed 9.2.13 (Replacement).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC 8.11.2023.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 10.10.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dutchess Ambulatory Surgical Center LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kourosh Ashourzadeh DO PC dba Caring Pediatric Associates - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 7.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Retina Associates of New York PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Gynecologic Oncology_Rescind Letter_3.29.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Business Associate Agreement 12.23.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Amendment Provider Signed 12.20.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jacob Perlow Hospice Corporation DBA MJHS Hospice and Palliative Care - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment Provider Signed 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vermont Managed Care Inc - Agreement (Delegated Cred).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sullivan Emergency Services PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kelberman Center Inc - Amendment Provider Signed 10.22.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford LLP - Amendment 12.15.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rebekah Park Jamison - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Universal Open MRI & Diagnostic Center of Bronx - Amendment Provider Signed 5.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - NonStandard 12.20.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment Provider Signed 10.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Universal Open MRI & Diagnostic Center of Bronx - Amendment 5.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Spine & Joint Medical Care PC - Amendment 12.9.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc. 5.2.2024.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Noor Kazi LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dermedx Dermatology, PC dba Dermatique - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Administrative Agreement Prov Signed 12.23.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Amendment Provider Signed 2.24.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Brooklyn LLP - Amendment Provider Signed 10.30.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Diabetes and Thyroid PLLC - 262849798 Notice 08.24.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KidsPeace National Centers of North America Inc - Amendment Provider Signed 7.1.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Farmingdale Adult Day Care - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kelberman Center Inc - Amendment Provider Signed 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/3 Visions Ophthamology PC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment 3.25.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Monroe Wheelchair Inc - NonStandard 9.9.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant Inc dba All Season Home Attendant - Amendment 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson Family Medicine PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Amendment Provider Signed 10.11.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services - Amendment Provider Signed 10.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc. - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba City Health Urgent Care - Agmt Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital - NonStandard.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hospice of Orleans Inc - Amendment 6.10.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 3.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Noor Medical Care - 272589926 Notice 08.24.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Garnet Health Medical Center - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of New York City - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Bernard K Crawford MD - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KCI USA Inc - Amendment 9.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospitals Inc - Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Laboratory Alliance of CNY - Amendment 3.16.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vijay B Gopal Physician PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Amendment Provider Signed 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba Expert Medical Services LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Michael Kreymer DO - Agmt Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Agreement 2.17.00.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/NYSARC Inc Herkimer County Chapter dba Herkimer Area Resource Center - Amendment 4.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York Inc - Amendment Provider Signed 11.20.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Izak Herschitz MD PC - Amendment 9.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Amendment Provider Signed 1.1.18 (Min Wage).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Emergency Medical Associates PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment Provider Signed 8.15.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Ambulette Service Inc - Amendment 1.1.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment (PCA) Revised 10.1.2022.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 6.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson Family Medicine PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba Buffalo Centre for the Treatment of Eating Disorders - Amendment 7.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 1.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment Provider Signed 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prithwijit Basu MD PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 3.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 3.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Non Standard 1.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Agreement 6.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment Provider Signed 10.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Amendment 10.11.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Hospice Inc - Amendment 7.4.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Interborough Anesthesia PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pulmonary Critical Care and Sleep Medicine PLLC - Notice of Rate Change - 7.23.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 11.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Amendment 9.2.13 (2).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A.S.Neurology PC- Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care PC - Amendment Provider Signed 3.31.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Monroe Wheelchair Inc - Amendment Provider Signed 9.9.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Baron Hospital Medical Supply Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - Amendment Provider Signed 11.11.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Agreement 8.1.06.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hemophilia Center of WNY Inc - Agreement 6.11.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Noor Medical Care - Amendment (Electronic Language).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Ambulette Service Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dermedx Dermatology PC_112432011.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Garnet Health Medical Center - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment Provider Signed 7.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Baron Hospital Medical Supply Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 7.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Revised - Amendment 4.25.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford LLP - Amendment 7.19.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health - Amd Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vitality Physicians Group Practice PC - Amendment Provider Signed 12.9.19 (VOID).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of the Mid Hudson Valley Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Amendment 8.30.2013.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of Greater New York - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant Inc dba All Season Home Attendant - Amendment Provider Signed 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Bluebird F.I. LLC dba Bluebird Self Home Care - Amendment (Increase Notice) 1.1.22 (CDPAS).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/David Khasidy MD - Amendment 2.17.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment 9.28.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rajen Maniar Cardiology PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sovereign Transportation Inc - Amendment 3.23.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Hospice Inc - Amendment 2.5.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rapid Access Medical Diagnostics PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 1.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Kidney & Hypertension, PLLC- Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 12.12.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York City Ophthalmology PC - Agreement 9.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Federation of Organizations forthe NYS Mentally Disabled Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain OBGYN - Amendment 10.6.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Amendment 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - Amendment Provider Signed 11.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 1.1.09.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ladies First Krysten Schmidt Nurse Practitioner in Family Health - 460884256 Notice 09.08.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment 1.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center- Amendment 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sullivan Emergency Services PC - Agreement Provider SIgned.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital, Inc - Agreement with a MCR Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment Provider Signed 1.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Optimum Heart Associates PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Agreement Provider Signed 8.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Third Avenue Open MRI - Amendment Provider Signed 10.31.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 5.12.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family HealthCare - Amendment Provider Signed 1.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rapid Access Medical Diagnostics PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 1.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant 134027190 S-G Code Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment Provider Signed 8.2.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford, LLP - Agreement 6.1.08.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Schenectady Urological Associates PC - Agreement 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospital Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/2. Priority Home Care Services - Rescind Notice.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Farmingdale Adult Day Care - TERMINATION Eff. 7-1-2015.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospital Inc - Delegated Agreement 10.1.04.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teledoc Amendment - Counter Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Evergreen Ear Nose and Throat Surgery PC - W9.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. Non-Renewal Providence Rest Inc. 11.15.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospital Inc - Agreement Provider Signed 4.22.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. MLTC TRIM LETTER due to 2018 NYS Mandated Trim - Aliah Home Care Agency, Inc 11.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagra County Inc - Amendment 1.1.18 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dart Medical Laboratory Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC (Teladoc Health Inc) - Business Associate Agreement 1.9.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Third Avenue Open MRI agrement 4.9.08.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Centene - Executed CON Davita HC - 11-1-2021.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood Mohawk Hudson Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Third Avenue Open MRI - Amendment Provider Signed 6.29.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Delegated Cred Agreement Provider Signed 6.16.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care, P.C.- Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/YB Radiology PC DBA Bronx Radiology Center - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 11.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/3 Visions Ophthamology PC - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - Amendment Provider Signed 6.18.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health - Amendment Provider Signed 6.18.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 10.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment 7.1.16 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba Buffalo Centre for the Treatment of Eating Disorders - Amendment Provider Signed 2.25.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Delegated Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment 4.1.05.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sleep Disorders Lab of Central New York, LLC - Medicare FS Notice Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - NonStandard 6.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson County Public Health Service - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Noor Kazi LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories-Agreement.12.15.06.pdf.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services -Notice of Amendment 1.1.23 (PCA) (ROS) VOID.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BriovaRx Infusion Services 100 & 101 Inc - Amendment 8.24.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Amendment 7.1.18 (Consent).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health dba Medina Memorial Hospital - Amendment 10.8.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Malissa Larson - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northern Respiratory Specialist, P.C.- Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Premier Anesthesia Services PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Volunteer Transportation Center Inc - Amendment- Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba Buffalo Centre for the Treatment of Eating Disorders - Amendment 2.25.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/GC Oncology Services PC - Agreement Provider Signed 7.29.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saratoga Schenectady Gastroenterology Associates PC - Amendment Provider Signed 3.20.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vijay Battu, MD, PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pelham Bay Medical Care for Women PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Interborough Anesthesia - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KidsPeace National Centers of North America Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vermont Managed Care Inc - Agreement (Delegated).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Greenpoint Cardiac and Medical Services PC - Amendment Provider Signed 12.19.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of the Southern Finger Lakes Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc - Non-Std_jp signed 6.22.20_signed (005).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hosptial - Amendment Provider Signed 10.24.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/123 Medical Group PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc DBA Cornerstone Medical Arts - Amendment Provider Signed 2.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Izak Herschitz MD PC - Amendment Provider Signed 6.11.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc - Non-Std_CG Reviewed 03.15.21-Executed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teledoc Physicians PC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of the Mid Hudson Valley Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 11.11.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 3.21.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Universal Open MRI & Diagnostic Center of the Bronx - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kelberman Center Inc - Amendment 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare- Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brooklyn Center For Psychotherapy Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment 2.27.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center- Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Tri County Ear, Nose, & Throat - Medicare FS Notice Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 1.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc - Amendment Provider Signed 5.6.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pelham Bay Medical Care for Woman, PC_473763112.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/YB Radiology PC DBA Bronx Radiology Center - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 6.28.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/John M Wolfgang PsyD - Amendment 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sovereign Transportation Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Patricia R Griffin PHD - Agreement Provider SIgned.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Elmway Pharmacy Inc - Amendment 7.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment Provider Signed 3.25.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Spine & Joint Medical Care PC Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Physical Therapy PLLC - Amendment Provider Signed 11.29.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - NonStandard 3.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - Amendment Provider Signed 9.2.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC (Teladoc Health Inc) - Delegated Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dart Medical Laboratory, Inc. - Notice of Rate Change - 20210322.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment Provider Signed 7.2.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Brooklyn LLP - Amendment 10.30.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Amendment Provider Signed 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba Expert Medical Services LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of Greater New York - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. MLTC TRIM LETTER due to 2018 NYS Mandated - dba All Season Home Attendant 11.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson County Public Health Service.S-G Letter.1.3.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Amendment 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society - Amendment - REVISED.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Irene Safir Audiology PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health - Amendment 6.18.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Zafar K Mirza Gastroenterology PLLC - Amendment 12.27.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Amendment 8.4.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Vascular Group PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 10.1.15 (HARP & EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment 7.2.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York Inc - Amendment Provider Signed 6.3.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Anesthesiology Associates of Boro Park LLP - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/David Khasidy MD - Amendment Provider Signed 2.17.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Bennington - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/BriovaRx Infusion Services 100 & 101 Inc - Agreement 10.12.18 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment 10.24.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/John M Wolfgang PsyD - Amendment Provider Signed 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Warning of Non-Renewal Letter 6.5.2015.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Ambulette Service Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Long Island FQHC, Inc dba Family Health Centers - Amendment 7.1.18(SBHC).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Wahid Medical Care PC - Amendment Provider Signed 11.23.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Patricia R Griffin PHD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center- Amendment Provider Signed 10.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KidsPeace National Centers of North America Inc - Amendment 7.1.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain OBGYN - Non Standard Approval 12.20.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Zafar K Mirza Gastroenterology PLLC - 264178455 Notice 09.08.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rachael Schneider Licensed Behavior Analyst PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Laboratory Alliance of Central New York LLC - Amendment Provider Signed 3.16.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain Physical Therapy PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Spine & Joint Medical Care PC - Amendment Provider Signed 12.9.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Vascular Group PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - Amendment Provider Signed 6.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health dba Medina Memorial Hospital - Amendment Prov Signed 7.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain OBGYN - Amendment 12.20.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 4.1.17 (HBX EXT).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 10.10.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ramapo Internal Medicine, P.C.- Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Revised - Amendment 4.24.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson County Public Health Service - Amendment Provider Signed 1.25.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - Amendment 6.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society - Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Optimum Heart Associates PLLC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rajen Maniar Cardiology PC - Amendment Provider Signed 10.15.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Tri County Ear, Nose, & Throat - Amendment 11.9.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Neonatal Associates of Central New York PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of Nassau County - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment Provider Signed 8.29.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment 10.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pulmonary Critical Care and Sleep Medicine PLLC - 455503080 Notice 09.28.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rachael Schneider Licensed Behavior Analyst PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amend Provider Signed 7.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment (PCA) Revised 10.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Amendment 7.15.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Izak Herschitz MD PC - Amendment Provider Signed 9.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Revised - Amendment 10.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Wahid Medical Care PC - Amendment 11.23.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Amendment 1.1.18 (Min Wage).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Tri County Ear, Nose, & Throat - Amendment Provider Signed. 11.9.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 3.21.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Greenpoint Cardiac & Medical Service.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Kelberman Center Inc - Agreement 8.4.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Evergreen Ear Nose and Throat Surgery PC - Effective Date Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Brooklyn LLP - Amendment 2.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Agreement 4.20.16 (HH).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - NonStandard 1.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 7.8.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Harmonia Psychiatric Care PC - Agreement 1.30.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Third Avenue Open MRI - Amendment 10.31.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services-11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/GC Oncology Services PC - Agreement 7.29.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - Amendment Provider Signed 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment Provider Signed 2.27.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 1.1.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services -IT Request 10.4.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford LLP - Amendment Provider Signed 8.15.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rachael Schneider Licensed Behavior Analyst PLLC - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment Provider Signed (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 2.5.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Agreement_Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Retina Associates of New York PC.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Maximum Mobility LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York Inc - NonStandard 11.20.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brooklyn Center for Psychotherapy Inc dba New Directions - Amendment Provider Signed 10.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC_Fidelis 7th AMD_provider signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant Inc dba All Season Home Attendant - Amendment Provider Signed 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment Provider Signed 2.26.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Retina Associates of New York PC - Amendment Provider Signed 2.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Amendment Provider Signed 9.2.13 (Replacement).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ocean Ambulette Service Inc - Amendment Provider Signed 12.12.13.pdf from centene-fidelis-files to for-processedCopied: processed/Harmonia Psychiatric Care PC - Agreement Provider Signed 1.30.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"\n",
|
||
"Copied: processed/Vijay B Gopal Physician PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Calvary Hospital Inc - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 11.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pulmonary Critical Care & Sleep Medicine of Nassau, PC 271875922 Notice 10.12.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/C & Y Medical, PC - Medicare FS Notice Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/University Radiology at Buffalo Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of Nassau County - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Federation of Organizations for the NYS Mentally Disabled Inc - Amendment Provider Signed 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 7.1.18 (SBHC).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Presbyterian Home for Central New York, Inc - Amendment 11.20.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - Amendment 6.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Agreement Provider Signed 6.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 7.8.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment 7.24.08.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - HARP Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford LLP - Amendment 8.15.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Jefferson County Public Health Service - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Optimum Heart Associates PLLC - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Retina Associates of New York PC - Amendment 2.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 5.21.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Madison County Office for the Aging - Amendment 9.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC_Fidelis 7th Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - Amendment 9.2.13 (Replacement).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brooklyn Center for Psychotherapy Inc dba New Directions - Amendment 10.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Non Standard Fully Executed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital Inc - Nonstandard 11.26.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment Provider Signed 2.5.21.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Vijay H Lapsia MD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment Provider Signed 10.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Optimum Heart Associates PLLC - Amendment Provider Signed 7.3.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Harmon Pediatrics PC - Agreement 6.20.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yorkville Endoscopy LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Amendment 2.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/NYSARC Inc Herkimer County Chapter dba Herkimer Area Resource Center - Amendment Provider Signed 4.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The_Center_for_Rheumatology - 141647576 Notice Edited 02.02.2021.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Empire Womancare and Midwifery PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health dba Medina Memorial Hospital - Amendment 7.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Prestige Home Attendant dba All Season Home Attendant - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/River Hospital CAH 2017 Medicare Rates.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Maximum Mobility LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yertle Operations LLC dba Fishkill Center for Rehabilitation and Nursing - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment Provider Signed 4.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care, P.C.- Amendment 9.21.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Shift Your Journey Mental Health Counseling PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Nutrition PLLC - Agreement Provider Signed.pdf.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc. 5.21.2024.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC (Teladoc Health Inc) - Service Agreement 1.9.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Yertle Operations LLC dba Fishkill Home Care.S-G Letter.1.3.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 9.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 8.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Mount Sinai Hospital - Amendment Provider Signed 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Amendment Provider Signed 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Schenectady Urological Associates PC - Agreement Provider Signed 1.1.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Premier Anesthesia Services PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment Provider Signed 1.1.14 (Contract Extension).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/KCI USA Inc - Amendment Provider Signed 9.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ramapo Medical Assoc, PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Dart Medical Laboratory Inc - Amendment Provider Signed 3.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Notice of Amendment 10.1.22.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Madison County Office for the Aging - Replacement Agreement 10.12.18 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teledoc Physicians PC - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Rapid Access Medical Diagnostics PLLC - Amendment Provider Signed 5.12.2018.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Fort Hudson Home Care Inc - Amendment Provider Signed 5.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Agreement 7.15.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ramapo Medical Assoc PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Island Musculoskeletal Care MD PC - Amendment 6.8.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC - Delegated -Amendement Provider Signed 1.1.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society Inc - Amendment 12.9.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment Provider Signed 4.20.16 (State Lang Prov).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - NonStandard.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/East End Neurology PLLC - Agreement Provideer Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Evergreen Ear Nose and Throat Surgery PC - Coversheet.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Amendment Provider Signed 4.25.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Laboratory Alliance of CNY - Amendment Provider Signed 1.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York City Ophthalmology PC - Amendment Provider Signed 4.24.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Bluebird F.I. LLC dba Bluebird Self Home Care - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brenda K Rodriguez LMFT - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospitals Inc - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Pulmonary Critical Care and Sleep Medicine of Nassau PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment Provider Signed 10.21.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Reliable Community Care Inc - Amendment 8.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Failed to copy processed/Quest Diagnostics Incorporated - Amendment Provider Signed(3).pdf from centene-fidelis-files: An error occurred (NoSuchKey) when calling the CopyObject operation: The specified key does not exist.\n",
|
||
"Copied: processed/New York City Ophthalmology PC - Agreement Provider Signed 9.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment 6.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/John M Wolfgang PsyD - Standard Clause Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Optimum Heart Associates PLLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent & Child Society - Amendment Proivder Signed 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Brooklyn LLP - Amendment Provider Signed 2.1.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Raj Sleep & Pulmonary Medicine PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Madison County Office for the Aging - NonStandard 10.12.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A.S. Neurology PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Richard J Gelman PsyD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 5.12.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospital Inc - Agreement 4.22.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/The Stella Orton Home Care Agency Inc - Amendment 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Interborough Anesthesia - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment Provider Signed 12.19.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Monroe Wheelchair Inc - Amendment 9.9.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/New York Kidney Physicians PLLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Robin Bromberg DC - Amendment Provider Signed 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Ridgewood Bushwick Senior Citizen Homecare Council Inc - Amendment 11.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Laboratory Alliance of CNY - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent & Child Society - Amendment 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services - 146002576 S-G Code Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories Inc - Amendment Provider Signed 3.24.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A+ Automotive Transportation LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/dba City Health Urgent Care - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Cornerstone Family Healthcare - Amendment 11.16.20 (REVISED).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hospice of Orleans Inc - Amendment 2.9.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/David Khasidy, MD - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Carthage Area Hospital Inc - Amendment 1.5.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Madison County Office for the Aging - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans Community Health dba Medina Memorial Hospital - Amendment Provider Signed 10.8.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment 4.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Hospice of Orleans Inc - Amendment Provider Signed 6.10.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Madison County Office for the Aging - Agreement Provider Signed 5.23.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/DrugScan Inc - Amendment 7.27.20.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Amendment Provider Signed 8.30.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Northeast Parent and Child Society Inc - Amendment Provider Signed 12.10.10 .pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Farmingdale Adult Day Care - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Urgent One Medical Care PC - Amendment Provider Signed 9.21.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood Mohawk Hudson Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 9.2.2013.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Acupath Laboratories Inc - Amendment 2.24.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A & J Home Care Inc - Aministrative Amendment 1.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Brylin Hospital Inc - Rate sheets 1.1.17-12.31.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment 12.9.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Orleans community Health - amendment 1 2015.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services - Amendment 7.2.12.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of Brooklyn LLp-agreement-5.2.08.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Empire Womancare and Midwifery PC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Endoscopy ASC LLC - Amendment 9.2.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services - Amendment Provider Signed 8.21.13.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Delegated Agreement 10.27.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Amendment 1.1.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford LLP - Amendment Provider Signed 12.15.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Health Association of Niagara County Inc - Agreement 8.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Lake Champlain OBGYN - Amendment Provider Signed 10.6.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/A+ Automotive Transportation LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Harmon Pediatrics PC - Agreement Provider Signed 6.20.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Island Muskuloskeletal Care - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sunrise Medical Laboratories, Inc. Settlement Agreement 8.8.2022.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Family Practice Associates of Cattaraugus LLP - Amendment Provider Signed 4.11.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sleep Disorders Lab of Central New York LLC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment 1.1.17 (HBX Ext).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Neonatal Associates of Central New York PC - Agreement Provider Signed 6.16.17.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Accent Health Care Services Inc - Amendment 1.1.18 (PCA).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Montefiore Medical Center - Amendment 1.1.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 3.1.14.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Medical Arts Sanitarium Inc DBA Cornerstone Medical Arts - Amendment 2.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment Provider Signed 1.1.16 (EPP).pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc - Amend Prov Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Warren County Health Services - Amendment 10.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Queens Emergency Medical Associates PLLC - Medicare FS Notice Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Premier Anesthesia of New York, PC - Medicare FS Notice Letter.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/United Health Services Hospitals Inc - Delegated Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sikder Medical Care PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Oswego Hospital - Amendment Provider Signed 1.1.10.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Evergreen Ear Nose and Throat Surgery PC - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/1. MLTC TRIM LETTER due to 2018 NYS Mandated Trim - Bushwich Stuyvesant Heights Home Attendants, Inc. 11.1.18.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Federation of Organizations for the NYS Mentally Disabled Inc - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Radiology Associates of New Hartford LLP - Amendment Provider Signed 7.19.16.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Planned Parenthood of New York City - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/St Elizabeth Medical Center - Amendment provider signed 1.1.11.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sovereign Transportation Inc - Amendment Provider Signed 3.23.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Teladoc Physicians PC - Amendment Provider Signed 4.1.2020.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/University Radiology Associates Better Health - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Quinlans Pharmacy Inc - Agreement.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Suffolk Primary Health LLC - Agreement Provider Signed.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Flushing Hospital Medical Center - Amendment 1.1.15.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Sleep Disorders Lab of Central New York LLC - Amendment Provider Signed 12.22.19.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Saint Vincent Health Center - Amendment.pdf from centene-fidelis-files to for-processed\n",
|
||
"Copied: processed/Parsons Child and Family Center - Amendment 2.26.19 (REVISED).pdf from centene-fidelis-files to for-processed\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"import boto3\n",
|
||
"import pandas as pd\n",
|
||
"from urllib.parse import urlparse\n",
|
||
"from concurrent.futures import ThreadPoolExecutor, as_completed\n",
|
||
"\n",
|
||
"s3_client = boto3.Session(profile_name='temp_cred').client('s3')\n",
|
||
"\n",
|
||
"\n",
|
||
"def copy_s3_file(source_bucket, source_key, destination_bucket, destination_prefix):\n",
|
||
" \"\"\"\n",
|
||
" Copy a file from a source S3 bucket to a destination S3 bucket with the specified prefix.\n",
|
||
" \n",
|
||
" Args:\n",
|
||
" - source_bucket (str): The bucket where the source file is located.\n",
|
||
" - source_key (str): The key (path) of the source file in the S3 bucket.\n",
|
||
" - destination_bucket (str): The destination S3 bucket name.\n",
|
||
" - destination_prefix (str): The prefix (folder) in the destination bucket.\n",
|
||
" \"\"\"\n",
|
||
" # df = pd.read_csv(csv_path)\n",
|
||
" # df = df[df['Missed?'] == 1]\n",
|
||
" # # print(sum(df['File Name'] == ((source_key.split('/')[-1][:-4] + \".Pdf\"))))\n",
|
||
" # file_name = df[df['File Location'] == source_key]['New File Name'].values[0]\n",
|
||
" file_name = \"processed/\" + str(source_key) + \".pdf\"\n",
|
||
" destination_key = f\"{destination_prefix}/{source_key}\".strip('/') + \".pdf\"\n",
|
||
" # print(file_name)\n",
|
||
" \n",
|
||
" try:\n",
|
||
" # Copy the file\n",
|
||
" s3_client.copy_object(\n",
|
||
" CopySource={'Bucket': source_bucket, 'Key': file_name},\n",
|
||
" Bucket=destination_bucket,\n",
|
||
" Key=destination_key\n",
|
||
" )\n",
|
||
" print(f\"Copied: {file_name} from {source_bucket} to {destination_prefix}\")\n",
|
||
" except Exception as e:\n",
|
||
" print(f\"Failed to copy {file_name} from {source_bucket}: {e}\")\n",
|
||
"\n",
|
||
"def copy_files_from_paths(csv_path, file_path_column, destination_bucket, destination_prefix, bucket1, bucket2, max_workers=10):\n",
|
||
" \"\"\"\n",
|
||
" Copy files listed in a CSV from one of two possible source S3 buckets to a destination S3 folder.\n",
|
||
" \n",
|
||
" Args:\n",
|
||
" - csv_path (str): Path to the CSV file.\n",
|
||
" - file_path_column (str): The column name in the CSV that contains the S3 file paths.\n",
|
||
" - destination_bucket (str): The destination S3 bucket where the files will be copied.\n",
|
||
" - destination_prefix (str): The prefix (folder) in the destination S3 bucket.\n",
|
||
" - bucket1 (str): The first source S3 bucket to check.\n",
|
||
" - bucket2 (str): The second source S3 bucket to check.\n",
|
||
" - max_workers (int): Maximum number of threads for multithreading.\n",
|
||
" \"\"\"\n",
|
||
" # Load file paths from CSV\n",
|
||
" df = pd.read_csv(csv_path)\n",
|
||
" # df = df[df['Missed?'] == 1]\n",
|
||
" file_paths = df['Only in Processed'].dropna().to_list()\n",
|
||
"\n",
|
||
" def process_file(file_path):\n",
|
||
" # Parse the S3 path\n",
|
||
" # parsed_url = urlparse(file_path)\n",
|
||
" # source_key = parsed_url.path.lstrip('/')\n",
|
||
" copy_s3_file(bucket1, file_path, destination_bucket, destination_prefix)\n",
|
||
" # # First check in bucket1\n",
|
||
" # try:\n",
|
||
" # # Try to get the object metadata to check if it exists\n",
|
||
" # s3_client.head_object(Bucket=bucket1, Key=source_key)\n",
|
||
" # copy_s3_file(bucket1, source_key, destination_bucket, destination_prefix)\n",
|
||
" # except Exception:\n",
|
||
" # # If not found in bucket1, check in bucket2\n",
|
||
" # try:\n",
|
||
" # s3_client.head_object(Bucket=bucket2, Key=source_key)\n",
|
||
" # copy_s3_file(bucket2, source_key, destination_bucket, destination_prefix)\n",
|
||
" # except Exception as e:\n",
|
||
" # print(f\"File not found in either bucket: {file_path} - {e}\")\n",
|
||
" \n",
|
||
" # Multithreaded processing\n",
|
||
" with ThreadPoolExecutor(max_workers=max_workers) as executor:\n",
|
||
" futures = [executor.submit(process_file, file_path) for file_path in file_paths]\n",
|
||
"\n",
|
||
" for future in as_completed(futures):\n",
|
||
" future.result() # Raise exception if any error occurred\n",
|
||
"\n",
|
||
"csv_path = 'batch6_16_output_file.csv' # Path to your CSV file\n",
|
||
"file_path_column = 'File Location' # Column in the CSV containing S3 file paths\n",
|
||
"destination_bucket = 'centene-fidelis-files'\n",
|
||
"destination_prefix = 'for-processed'\n",
|
||
"bucket1 = 'centene-fidelis-files'\n",
|
||
"bucket2 = 'centene-fidelis-files'\n",
|
||
"# bucket2 = 'centene-national-contracting-files'\n",
|
||
"\n",
|
||
" # Call the function to copy files\n",
|
||
"copy_files_from_paths(csv_path, file_path_column, destination_bucket, destination_prefix, bucket1, bucket2, max_workers=10)\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 13,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Failed to move processed/PutnamValleyPediatrics_ad_12.03.09.Pdf to batch_4_diff_staging/pdf_files/PutnamValleyPediatrics_ad_12.03.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreementAmendment_68108_1.Pdf to batch_4_diff_staging/pdf_files/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreementAmendment_68108_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula ObGyn-ICMProviderAgreement_156211.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula ObGyn-ICMProviderAgreement_156211.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Suzanne Hackert - Agreement Provider Signed .Pdf to batch_4_diff_staging/pdf_files/Suzanne Hackert - Agreement Provider Signed .Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Rockland Medical Group, P.C._ec_2009.8.21.Pdf to batch_4_diff_staging/pdf_files/Rockland Medical Group, P.C._ec_2009.8.21.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/St. Joseph's Physician Health, PC -amendment & agreement.Pdf to batch_4_diff_staging/pdf_files/St. Joseph's Physician Health, PC -amendment & agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alliance Foot & Ankle Clinic-ICMProviderAgreement_155307.Pdf to batch_4_diff_staging/pdf_files/-Alliance Foot & Ankle Clinic-ICMProviderAgreement_155307.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract.Pdf to batch_4_diff_staging/pdf_files/Contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Heartpath Cardiovascular Services, PLLC - Agreement Provider Signed 12.28.12.Pdf to batch_4_diff_staging/pdf_files/Heartpath Cardiovascular Services, PLLC - Agreement Provider Signed 12.28.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Kathleen De Jong - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Kathleen De Jong - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alexian Brothers Medical Group-ICMProviderAgreementAmendment_65575_1.Pdf to batch_4_diff_staging/pdf_files/-Alexian Brothers Medical Group-ICMProviderAgreementAmendment_65575_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia Associates of Wooster-ICMProviderAgreement_155803.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia Associates of Wooster-ICMProviderAgreement_155803.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Martin A Boscarino MD - Amendment Provider Signed 8.1.14.Pdf to batch_4_diff_staging/pdf_files/Martin A Boscarino MD - Amendment Provider Signed 8.1.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehab at Salamanca LLC..Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehab at Salamanca LLC..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Orthopedics-ICMProviderAgreement_155774.Pdf to batch_4_diff_staging/pdf_files/-American Orthopedics-ICMProviderAgreement_155774.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Quinlans Pharmacy Incx.Pdf to batch_4_diff_staging/pdf_files/Quinlans Pharmacy Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/BlackRiverValleyHealthPlanLLC_FINAL.11.23.09.Pdf to batch_4_diff_staging/pdf_files/BlackRiverValleyHealthPlanLLC_FINAL.11.23.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aimee LeCours-ICMProviderAgreement_213818.Pdf to batch_4_diff_staging/pdf_files/-Aimee LeCours-ICMProviderAgreement_213818.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/The Center for Rheumatology LLP - Amendment - Shortcut.Pdf to batch_4_diff_staging/pdf_files/The Center for Rheumatology LLP - Amendment - Shortcut.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allegheny Health Network-ICMProviderAgreement_102296_3.Pdf to batch_4_diff_staging/pdf_files/-Allegheny Health Network-ICMProviderAgreement_102296_3.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Sikder Medical Care PC - Agreement.Pdf to batch_4_diff_staging/pdf_files/Sikder Medical Care PC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Medical Imaging-ICMProviderAgreement_154816_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Medical Imaging-ICMProviderAgreement_154816_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Home Medical Inc-ICMProviderAgreement_154619_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Home Medical Inc-ICMProviderAgreement_154619_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bernadette Richards dba Sophie’s Health Care Services Inc - Agreement Provider Signed 11.1.12 (CDPAS).Pdf to batch_4_diff_staging/pdf_files/Bernadette Richards dba Sophie’s Health Care Services Inc - Agreement Provider Signed 11.1.12 (CDPAS).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/All Island Allergy Care.ec.05.20.2009.Pdf to batch_4_diff_staging/pdf_files/All Island Allergy Care.ec.05.20.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ajayaghosh Krishnan-ICMProviderAgreement_155056.Pdf to batch_4_diff_staging/pdf_files/-Ajayaghosh Krishnan-ICMProviderAgreement_155056.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-BeachwoodII LLC dba University Hospitals Rehabilitation Hospital-ICMProviderAgreement_154400.Pdf to batch_4_diff_staging/pdf_files/-BeachwoodII LLC dba University Hospitals Rehabilitation Hospital-ICMProviderAgreement_154400.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Gelbard contract.Pdf to batch_4_diff_staging/pdf_files/Gelbard contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Global.RevisedSchedule5.2.du.06.18.2010.Pdf to batch_4_diff_staging/pdf_files/Global.RevisedSchedule5.2.du.06.18.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Amandeep Pal Roster.Pdf to batch_4_diff_staging/pdf_files/Amandeep Pal Roster.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement SocialWorker - Upstate.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement SocialWorker - Upstate.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arthritis & Rheumatism Center, Inc.-ICMProviderAgreement_156044.Pdf to batch_4_diff_staging/pdf_files/-Arthritis & Rheumatism Center, Inc.-ICMProviderAgreement_156044.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anderson Physician Alliance-ICMProviderAgreementAmendment_41709.Pdf to batch_4_diff_staging/pdf_files/-Anderson Physician Alliance-ICMProviderAgreementAmendment_41709.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Andrew Cusher, DPM-ICMProviderAgreement_155794.Pdf to batch_4_diff_staging/pdf_files/-Andrew Cusher, DPM-ICMProviderAgreement_155794.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Link Home Therapy Services NY – PT OT SLP PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Link Home Therapy Services NY – PT OT SLP PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Re Fidelis Agreement Typo.Pdf to batch_4_diff_staging/pdf_files/Re Fidelis Agreement Typo.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/IT Request Attentive Care Inc - 112436421 01.30.15 approved.Pdf to batch_4_diff_staging/pdf_files/IT Request Attentive Care Inc - 112436421 01.30.15 approved.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Digestive Disease & Nutrition Center of Westchester LLP - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Digestive Disease & Nutrition Center of Westchester LLP - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CoverLetter.GlobalAdministrativeServicesLLC.du.06.23.2010.Pdf to batch_4_diff_staging/pdf_files/CoverLetter.GlobalAdministrativeServicesLLC.du.06.23.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Syracuse Orthopedic Specialists, PC - Agreement_5.11.09.Pdf to batch_4_diff_staging/pdf_files/Syracuse Orthopedic Specialists, PC - Agreement_5.11.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AdvancedPainCareLLC.cc.05.11.09.Pdf to batch_4_diff_staging/pdf_files/AdvancedPainCareLLC.cc.05.11.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/provider was noticed for EPP but record of this could not be foundx.Pdf to batch_4_diff_staging/pdf_files/provider was noticed for EPP but record of this could not be foundx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Lisa M Loomis LCSW - Agreement.Pdf to batch_4_diff_staging/pdf_files/Lisa M Loomis LCSW - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Diamond Denials - Contract Inquiry.Pdf to batch_4_diff_staging/pdf_files/RE Diamond Denials - Contract Inquiry.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852_3.Pdf to batch_4_diff_staging/pdf_files/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852_3.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Re Amendment NYNm.Pdf to batch_4_diff_staging/pdf_files/Re Amendment NYNm.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abner Cordero-ICMProviderAgreement_154355_1.Pdf to batch_4_diff_staging/pdf_files/-Abner Cordero-ICMProviderAgreement_154355_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/JonesMedical~SyracusePeds_km_2009.08.18.Pdf to batch_4_diff_staging/pdf_files/JonesMedical~SyracusePeds_km_2009.08.18.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bay OBGYN PC - Amendment Provider Signed 8.1.14.Pdf to batch_4_diff_staging/pdf_files/Bay OBGYN PC - Amendment Provider Signed 8.1.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Advanced Allergy & Asthma Assessment & Diagnostic, P.C..Pdf to batch_4_diff_staging/pdf_files/Advanced Allergy & Asthma Assessment & Diagnostic, P.C..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Tots To Teens Pediatrics,P.C.ec.GHI.04.21.2010.Pdf to batch_4_diff_staging/pdf_files/Tots To Teens Pediatrics,P.C.ec.GHI.04.21.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Valentini contract 010610.Pdf to batch_4_diff_staging/pdf_files/Valentini contract 010610.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Health Department-ICMProviderAgreement_155063.Pdf to batch_4_diff_staging/pdf_files/-Akron Health Department-ICMProviderAgreement_155063.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bedford Physical Therapy-ICMProviderAgreementAmendment_68137.Pdf to batch_4_diff_staging/pdf_files/-Bedford Physical Therapy-ICMProviderAgreementAmendment_68137.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Renee Baskin Creel - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Renee Baskin Creel - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bayfront HMA Convenient Care LLC-ICMProviderAgreement_195418.Pdf to batch_4_diff_staging/pdf_files/-Bayfront HMA Convenient Care LLC-ICMProviderAgreement_195418.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alere Wellbeing-ICMProviderAgreement_96512.Pdf to batch_4_diff_staging/pdf_files/-Alere Wellbeing-ICMProviderAgreement_96512.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Ancillary All LOB (12.2008).Pdf to batch_4_diff_staging/pdf_files/Standard Ancillary All LOB (12.2008).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Ancillary All LOB.Pdf to batch_4_diff_staging/pdf_files/Standard Ancillary All LOB.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Andrew Wherley, MD-ICMProviderAgreementAmendment_71478.Pdf to batch_4_diff_staging/pdf_files/-Andrew Wherley, MD-ICMProviderAgreementAmendment_71478.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alternate Solutions Home Care-ICMProviderAgreement_155540.Pdf to batch_4_diff_staging/pdf_files/-Alternate Solutions Home Care-ICMProviderAgreement_155540.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Amerita of New York LLC 5-2-22x.Pdf to batch_4_diff_staging/pdf_files/Amerita of New York LLC 5-2-22x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amanda M Body-ICMProviderAgreement_198427_2.Pdf to batch_4_diff_staging/pdf_files/-Amanda M Body-ICMProviderAgreement_198427_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Foot and Ankle Center LLC-ICMProviderAgreement_107154.Pdf to batch_4_diff_staging/pdf_files/-Advanced Foot and Ankle Center LLC-ICMProviderAgreement_107154.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bronx Eye Institute.ec.08.12.2009.Pdf to batch_4_diff_staging/pdf_files/Bronx Eye Institute.ec.08.12.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.J.EinwhonerPhD.du.3.20.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.J.EinwhonerPhD.du.3.20.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NYOH Stem Cell Transplant Finalx.Pdf to batch_4_diff_staging/pdf_files/NYOH Stem Cell Transplant Finalx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/St.RegisMohawkHealthServices.cc.04.02.09.Pdf to batch_4_diff_staging/pdf_files/St.RegisMohawkHealthServices.cc.04.02.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adams & Brown Counties Child & Family Health Clinic-ICMProviderAgreementAmendment_68624.Pdf to batch_4_diff_staging/pdf_files/-Adams & Brown Counties Child & Family Health Clinic-ICMProviderAgreementAmendment_68624.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Wyoming Rexall Drug Inc..Pdf to batch_4_diff_staging/pdf_files/Wyoming Rexall Drug Inc..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barberton Eye Center-ICMProviderAgreementAmendment_67640.Pdf to batch_4_diff_staging/pdf_files/-Barberton Eye Center-ICMProviderAgreementAmendment_67640.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Daisy Healthcare Products_nn_05.01.09.Pdf to batch_4_diff_staging/pdf_files/Daisy Healthcare Products_nn_05.01.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ablecare Medical Inc.-ICMProviderAgreementAmendment_68097_2.Pdf to batch_4_diff_staging/pdf_files/-Ablecare Medical Inc.-ICMProviderAgreementAmendment_68097_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accucare Home Medical Equipment Inc.-ICMProviderAgreement_154381_1.Pdf to batch_4_diff_staging/pdf_files/-Accucare Home Medical Equipment Inc.-ICMProviderAgreement_154381_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Amandeep Pal Provider Address List 120720.Pdf to batch_4_diff_staging/pdf_files/Amandeep Pal Provider Address List 120720.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RSRNC LLC dba Riverside Center for Rehabilitation and Nursing - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/RSRNC LLC dba Riverside Center for Rehabilitation and Nursing - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Oncology Partners, PA-ICMProviderAgreement_67502.Pdf to batch_4_diff_staging/pdf_files/-American Oncology Partners, PA-ICMProviderAgreement_67502.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AuburnPediatricsPLLC_km_2009.03.26.Pdf to batch_4_diff_staging/pdf_files/AuburnPediatricsPLLC_km_2009.03.26.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreement_154098_1.Pdf to batch_4_diff_staging/pdf_files/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreement_154098_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/GSMeharPhysicianPC.ca.04.22.10.Pdf to batch_4_diff_staging/pdf_files/GSMeharPhysicianPC.ca.04.22.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/Surinder S Bath MD - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Surinder S Bath MD - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Banner Health-ICMProviderAgreement_114627.Pdf to batch_4_diff_staging/pdf_files/-Banner Health-ICMProviderAgreement_114627.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Advanced Cardiac Care, PLLC.ec.04.29.2009.Pdf to batch_4_diff_staging/pdf_files/Advanced Cardiac Care, PLLC.ec.04.29.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Achievement Centers for Children-ICMProviderAgreementAmendment_68610.Pdf to batch_4_diff_staging/pdf_files/-Achievement Centers for Children-ICMProviderAgreementAmendment_68610.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-Adriel School, Inc-ICMProviderAgreement_154599.Pdf to batch_4_diff_staging/pdf_files/-Adriel School, Inc-ICMProviderAgreement_154599.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bailey Family Practice-ICMProviderAgreementAmendment_98946.Pdf to batch_4_diff_staging/pdf_files/-Bailey Family Practice-ICMProviderAgreementAmendment_98946.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Lake Shore Behavioral Health Inc - Administrative Agreement Provider Signed (Health Home) 1.1.15.Pdf to batch_4_diff_staging/pdf_files/Lake Shore Behavioral Health Inc - Administrative Agreement Provider Signed (Health Home) 1.1.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/David Joseph DPM - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/David Joseph DPM - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Franziska Racker Centers, Inc - Agreement.Pdf to batch_4_diff_staging/pdf_files/Franziska Racker Centers, Inc - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Haben Practjice for Voice & Laryn Las Surg. jt 02.05.2010.Pdf to batch_4_diff_staging/pdf_files/Haben Practjice for Voice & Laryn Las Surg. jt 02.05.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.M.ShifMD.du.3.9.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.M.ShifMD.du.3.9.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia Associates of MS, PLLC-ICMProviderAgreementAmendment_41711_1.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia Associates of MS, PLLC-ICMProviderAgreementAmendment_41711_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TwilightMedical,PC.hsa.baw.04.13.2009.Pdf to batch_4_diff_staging/pdf_files/TwilightMedical,PC.hsa.baw.04.13.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Champlain Valley Open MRI - Agreement.Pdf to batch_4_diff_staging/pdf_files/Champlain Valley Open MRI - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/New York Hospital Medical Center of Queens - Rate change 3.15.13 - 12.31.13.Pdf to batch_4_diff_staging/pdf_files/New York Hospital Medical Center of Queens - Rate change 3.15.13 - 12.31.13.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/The Children’s Home of Jefferson County - Amendment.Pdf to batch_4_diff_staging/pdf_files/The Children’s Home of Jefferson County - Amendment.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ManhattanInterventionalRadiology,LLP.baw.04.12.2010.Pdf to batch_4_diff_staging/pdf_files/ManhattanInterventionalRadiology,LLP.baw.04.12.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barrett Pain Associates-ICMProviderAgreement_154188.Pdf to batch_4_diff_staging/pdf_files/-Barrett Pain Associates-ICMProviderAgreement_154188.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aquatic Rehabilitation Center, Inc.-ICMProviderAgreement_156030.Pdf to batch_4_diff_staging/pdf_files/-Aquatic Rehabilitation Center, Inc.-ICMProviderAgreement_156030.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Auglaize Audiology, Inc.-ICMProviderAgreement_153878.Pdf to batch_4_diff_staging/pdf_files/-Auglaize Audiology, Inc.-ICMProviderAgreement_153878.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/East Post Road Physician Services PC – Agreement.Pdf to batch_4_diff_staging/pdf_files/East Post Road Physician Services PC – Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Acadiana Family Medical Center-ICMProviderAgreement_109879.Pdf to batch_4_diff_staging/pdf_files/-Acadiana Family Medical Center-ICMProviderAgreement_109879.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ChamplainPainReliefandNeurologyPLLC.cc.12.07.09.Pdf to batch_4_diff_staging/pdf_files/ChamplainPainReliefandNeurologyPLLC.cc.12.07.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Badger Acquisition of Ohio, LLC-ICMProviderAgreement_154174_1.Pdf to batch_4_diff_staging/pdf_files/-Badger Acquisition of Ohio, LLC-ICMProviderAgreement_154174_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Orthopedics-ICMProviderAgreementAmendment_70999.Pdf to batch_4_diff_staging/pdf_files/-American Orthopedics-ICMProviderAgreementAmendment_70999.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Stein Health Services Contract.Pdf to batch_4_diff_staging/pdf_files/Stein Health Services Contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis_Ophelia Notice of Intent to Terminate_1.4.24x.Pdf to batch_4_diff_staging/pdf_files/Fidelis_Ophelia Notice of Intent to Terminate_1.4.24x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arthur L Hughes MD LLC-ICMProviderAgreement_156187.Pdf to batch_4_diff_staging/pdf_files/-Arthur L Hughes MD LLC-ICMProviderAgreement_156187.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_4.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_4.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/OtisvilleChiropractic.ca.04.08.10.Pdf to batch_4_diff_staging/pdf_files/OtisvilleChiropractic.ca.04.08.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amy Metschke-ICMProviderAgreement_67096.Pdf to batch_4_diff_staging/pdf_files/-Amy Metschke-ICMProviderAgreement_67096.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Galano agreement.Pdf to batch_4_diff_staging/pdf_files/Galano agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/dba Sophie’s Health Care Services Inc - Notice of Amendment 1.1.23 (PCA) (ROS).Pdf to batch_4_diff_staging/pdf_files/dba Sophie’s Health Care Services Inc - Notice of Amendment 1.1.23 (PCA) (ROS).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adventist Midwest Health-ICMProviderAgreement_103308.Pdf to batch_4_diff_staging/pdf_files/-Adventist Midwest Health-ICMProviderAgreement_103308.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/José Balseca dba Attune Chiropractic PLLC - Agreement.Pdf to batch_4_diff_staging/pdf_files/José Balseca dba Attune Chiropractic PLLC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.CatholicCharitiesChenangoCounty.du.01.19.2010.Pdf to batch_4_diff_staging/pdf_files/SBH.CatholicCharitiesChenangoCounty.du.01.19.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Aurora Adult Day Care Center dba Aurora Adult Day Services - Marketing Sign Off.Pdf to batch_4_diff_staging/pdf_files/Aurora Adult Day Care Center dba Aurora Adult Day Services - Marketing Sign Off.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/GHI Recruit Urgent Care.Pdf to batch_4_diff_staging/pdf_files/GHI Recruit Urgent Care.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Xinru Qian MD PC - Agreement.Pdf to batch_4_diff_staging/pdf_files/Xinru Qian MD PC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Pediatric Neurology, Inc.-ICMProviderAgreementAmendment_70027.Pdf to batch_4_diff_staging/pdf_files/-Akron Pediatric Neurology, Inc.-ICMProviderAgreementAmendment_70027.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Psychiatric Services-ICMProviderAgreement_216551.Pdf to batch_4_diff_staging/pdf_files/-Advanced Psychiatric Services-ICMProviderAgreement_216551.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bellevue Professional Services, Inc.-ICMProviderAgreement_154418_1.Pdf to batch_4_diff_staging/pdf_files/-Bellevue Professional Services, Inc.-ICMProviderAgreement_154418_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Apple Lane Ambulance Service-ICMProviderAgreement_156029.Pdf to batch_4_diff_staging/pdf_files/-Apple Lane Ambulance Service-ICMProviderAgreement_156029.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anodyne Counseling LLC-ICMProviderAgreement_213067.Pdf to batch_4_diff_staging/pdf_files/-Anodyne Counseling LLC-ICMProviderAgreement_213067.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barrett Pain Associates-ICMProviderAgreementAmendment_68116.Pdf to batch_4_diff_staging/pdf_files/-Barrett Pain Associates-ICMProviderAgreementAmendment_68116.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Comprehensive Blood & Cancer Medical Care, P.C..Pdf to batch_4_diff_staging/pdf_files/Comprehensive Blood & Cancer Medical Care, P.C..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Back in Motion Chiropractic-ICMProviderAgreementAmendment_41887_1.Pdf to batch_4_diff_staging/pdf_files/-Back in Motion Chiropractic-ICMProviderAgreementAmendment_41887_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/DME Consulting Agency LLCx.Pdf to batch_4_diff_staging/pdf_files/DME Consulting Agency LLCx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/N.Go contract.Pdf to batch_4_diff_staging/pdf_files/N.Go contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Medical Supply-ICMProviderAgreement_154817.Pdf to batch_4_diff_staging/pdf_files/-Advanced Medical Supply-ICMProviderAgreement_154817.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Action Rehab & Supply, Inc.-ICMProviderAgreement_109889.Pdf to batch_4_diff_staging/pdf_files/-Action Rehab & Supply, Inc.-ICMProviderAgreement_109889.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Gulbahar P Donn MD - Amendment 10.26.19.Pdf to batch_4_diff_staging/pdf_files/Gulbahar P Donn MD - Amendment 10.26.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adams, Bradley-ICMProviderAgreement_154589.Pdf to batch_4_diff_staging/pdf_files/-Adams, Bradley-ICMProviderAgreement_154589.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH SageCounseling.du.3.24.09.Pdf to batch_4_diff_staging/pdf_files/SBH SageCounseling.du.3.24.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Fidelis Care - Amendment Legal Question Request .Pdf to batch_4_diff_staging/pdf_files/RE Fidelis Care - Amendment Legal Question Request .Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ambrose S Perduk Jr, Dc-ICMProviderAgreement_155556_1.Pdf to batch_4_diff_staging/pdf_files/-Ambrose S Perduk Jr, Dc-ICMProviderAgreement_155556_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Buffalo Respiratory Therapy LLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Buffalo Respiratory Therapy LLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amerimed Inc-ICMProviderAgreement_155561.Pdf to batch_4_diff_staging/pdf_files/-Amerimed Inc-ICMProviderAgreement_155561.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aurangzeb Nagy, MD LTD dba Nevada Brain and Spine Care-ICMProviderAgreement_67544.Pdf to batch_4_diff_staging/pdf_files/-Aurangzeb Nagy, MD LTD dba Nevada Brain and Spine Care-ICMProviderAgreement_67544.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adriel School, Inc-ICMProviderAgreement_154599_1.Pdf to batch_4_diff_staging/pdf_files/-Adriel School, Inc-ICMProviderAgreement_154599_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Victor Health Associates_nn_03.02.09.Pdf to batch_4_diff_staging/pdf_files/Victor Health Associates_nn_03.02.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Kristie L. Scott-Lein, LCSW_agreement_5.13.09.Pdf to batch_4_diff_staging/pdf_files/Kristie L. Scott-Lein, LCSW_agreement_5.13.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bellefaire JCB-ICMProviderAgreement_154413_2.Pdf to batch_4_diff_staging/pdf_files/-Bellefaire JCB-ICMProviderAgreement_154413_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract KR 080508.Pdf to batch_4_diff_staging/pdf_files/Contract KR 080508.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amenity Consulting LLC-ICMProviderAgreement_96525.Pdf to batch_4_diff_staging/pdf_files/-Amenity Consulting LLC-ICMProviderAgreement_96525.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehab at Gasport LLC.Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehab at Gasport LLC.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amanda Merchant, PHD-ICMProviderAgreement_220427.Pdf to batch_4_diff_staging/pdf_files/-Amanda Merchant, PHD-ICMProviderAgreement_220427.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Sullivan SBH Agreement.Pdf to batch_4_diff_staging/pdf_files/Sullivan SBH Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68604.Pdf to batch_4_diff_staging/pdf_files/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68604.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A & E Inc. dba Dura Med-ICMProviderAgreementAmendment_43621_1.Pdf to batch_4_diff_staging/pdf_files/-A & E Inc. dba Dura Med-ICMProviderAgreementAmendment_43621_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barberton Eye Center-ICMProviderAgreement_154181.Pdf to batch_4_diff_staging/pdf_files/-Barberton Eye Center-ICMProviderAgreement_154181.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A. William Bloedel-ICMProviderAgreement_114740.Pdf to batch_4_diff_staging/pdf_files/-A. William Bloedel-ICMProviderAgreement_114740.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.YuanxiaZhangPhD.du.8.5.09.Pdf to batch_4_diff_staging/pdf_files/SBH.YuanxiaZhangPhD.du.8.5.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Scheer contract.Pdf to batch_4_diff_staging/pdf_files/Scheer contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fink contract.Pdf to batch_4_diff_staging/pdf_files/Fink contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/IT Request Rate Adjustment - Community Medical and Dental Care Inc .Pdf to batch_4_diff_staging/pdf_files/IT Request Rate Adjustment - Community Medical and Dental Care Inc .Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Fidelis Rate Amendment 2023 .Pdf to batch_4_diff_staging/pdf_files/RE Fidelis Rate Amendment 2023 .Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Platinum Home Health CDPAS Letter.Pdf to batch_4_diff_staging/pdf_files/Platinum Home Health CDPAS Letter.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Atrium Centers, LLC-ICMProviderAgreement_153871.Pdf to batch_4_diff_staging/pdf_files/-Atrium Centers, LLC-ICMProviderAgreement_153871.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/TMO Medical, PC.cc.06.03.09.Pdf to batch_4_diff_staging/pdf_files/TMO Medical, PC.cc.06.03.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/O’Connor Hospital - Amendment Provider Signed 1.1.15.Pdf to batch_4_diff_staging/pdf_files/O’Connor Hospital - Amendment Provider Signed 1.1.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Antony Labady-ICMProviderAgreement_96317.Pdf to batch_4_diff_staging/pdf_files/-Antony Labady-ICMProviderAgreement_96317.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-American Home Health Care, Inc.-ICMProviderAgreementAmendment_70994.Pdf to batch_4_diff_staging/pdf_files/-American Home Health Care, Inc.-ICMProviderAgreementAmendment_70994.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Achievement Centers for Children-ICMProviderAgreement_154386_1.Pdf to batch_4_diff_staging/pdf_files/-Achievement Centers for Children-ICMProviderAgreement_154386_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula County Medical Center-ICMProviderAgreement_156209_1.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula County Medical Center-ICMProviderAgreement_156209_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Centene - Executed CON Davita HC - 11-1-2021.Pdf to batch_4_diff_staging/pdf_files/Centene - Executed CON Davita HC - 11-1-2021.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allegheny Health Network-ICMProviderAgreement_102296.Pdf to batch_4_diff_staging/pdf_files/-Allegheny Health Network-ICMProviderAgreement_102296.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852.Pdf to batch_4_diff_staging/pdf_files/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.copeland.ave.counseling.du.1.8.09.Pdf to batch_4_diff_staging/pdf_files/SBH.copeland.ave.counseling.du.1.8.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Applied Health Services Dept. of Speech & Hearing-ICMProviderAgreementAmendment_41715_1.Pdf to batch_4_diff_staging/pdf_files/-Applied Health Services Dept. of Speech & Hearing-ICMProviderAgreementAmendment_41715_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-ADP Payroll-ICMProviderAgreement_103790.Pdf to batch_4_diff_staging/pdf_files/-ADP Payroll-ICMProviderAgreement_103790.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Agreement LCSW.Pdf to batch_4_diff_staging/pdf_files/Agreement LCSW.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Neuro Health, P.C.ec.03.29.2010.Pdf to batch_4_diff_staging/pdf_files/Neuro Health, P.C.ec.03.29.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Children’s Center Inc - Agreement Provider Signed 6.8.15.Pdf to batch_4_diff_staging/pdf_files/Hillside Children’s Center Inc - Agreement Provider Signed 6.8.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Sleep Insights Medical Associates, PLLC Amendment 12.27.19.Pdf to batch_4_diff_staging/pdf_files/Sleep Insights Medical Associates, PLLC Amendment 12.27.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/OBGYNAssociatesOfSouthernTier_km_2010.03.30.Pdf to batch_4_diff_staging/pdf_files/OBGYNAssociatesOfSouthernTier_km_2010.03.30.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allergy, Asthma & Respiratory Center-ICMProviderAgreementAmendment_70498.Pdf to batch_4_diff_staging/pdf_files/-Allergy, Asthma & Respiratory Center-ICMProviderAgreementAmendment_70498.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/New York - Amandeep Pal, MD - Draft.Pdf to batch_4_diff_staging/pdf_files/New York - Amandeep Pal, MD - Draft.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bellefaire JCB-ICMProviderAgreement_154413_1.Pdf to batch_4_diff_staging/pdf_files/-Bellefaire JCB-ICMProviderAgreement_154413_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Transportation Provider.KiddinAroundTownInc.du.02.25.2010.Pdf to batch_4_diff_staging/pdf_files/Fidelis Transportation Provider.KiddinAroundTownInc.du.02.25.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CortlandENTPC_km_2009.04.01.Pdf to batch_4_diff_staging/pdf_files/CortlandENTPC_km_2009.04.01.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/2009 contract.Pdf to batch_4_diff_staging/pdf_files/2009 contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accident and Injury Pain Center-ICMProviderAgreementAmendment_68592.Pdf to batch_4_diff_staging/pdf_files/-Accident and Injury Pain Center-ICMProviderAgreementAmendment_68592.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barberton Eye Center-ICMProviderAgreement_154181_1.Pdf to batch_4_diff_staging/pdf_files/-Barberton Eye Center-ICMProviderAgreement_154181_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Audiology Service Associates, PC jt 03.23.2009.Pdf to batch_4_diff_staging/pdf_files/Audiology Service Associates, PC jt 03.23.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Agreement.Pdf to batch_4_diff_staging/pdf_files/Standard Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Agnes Ward-ICMProviderAgreement_114746.Pdf to batch_4_diff_staging/pdf_files/-Agnes Ward-ICMProviderAgreement_114746.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A New Beginning Counseling Services-ICMProviderAgreement_153837_1.Pdf to batch_4_diff_staging/pdf_files/-A New Beginning Counseling Services-ICMProviderAgreement_153837_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-ASAP Home Care, Inc.-ICMProviderAgreementAmendment_72857_1.Pdf to batch_4_diff_staging/pdf_files/-ASAP Home Care, Inc.-ICMProviderAgreementAmendment_72857_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aeratech Home Medical-ICMProviderAgreement_154846_1.Pdf to batch_4_diff_staging/pdf_files/-Aeratech Home Medical-ICMProviderAgreement_154846_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TERM contract.Pdf to batch_4_diff_staging/pdf_files/TERM contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/WNY Counseling and Stress Management Center - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/WNY Counseling and Stress Management Center - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Abul K Azad MD - Amendment Provider Signed (Revised) 2.28.14.Pdf to batch_4_diff_staging/pdf_files/Abul K Azad MD - Amendment Provider Signed (Revised) 2.28.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.AnnEHuntPhD.du.2.25.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.AnnEHuntPhD.du.2.25.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Canandaigua Anesthesiology Associates_jt_10.12.09.Pdf to batch_4_diff_staging/pdf_files/Canandaigua Anesthesiology Associates_jt_10.12.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/nyphs_cause_to_contract_tins_-_09.11.15.Pdf to batch_4_diff_staging/pdf_files/nyphs_cause_to_contract_tins_-_09.11.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia and Pain CONSULTANTS, PC-ICMProviderAgreement_140201_1.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia and Pain CONSULTANTS, PC-ICMProviderAgreement_140201_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SouthernTierHearingServices_km_2010.01.07.Pdf to batch_4_diff_staging/pdf_files/SouthernTierHearingServices_km_2010.01.07.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Shyla Primavera dba Simple Soul, LLC - Agreement - Shortcut.Pdf to batch_4_diff_staging/pdf_files/Shyla Primavera dba Simple Soul, LLC - Agreement - Shortcut.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Phyllis A Komroy - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Phyllis A Komroy - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anthony DeRiso-ICMProviderAgreement_156018.Pdf to batch_4_diff_staging/pdf_files/-Anthony DeRiso-ICMProviderAgreement_156018.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Beachwood RH, LLC dba University Hospitals Rehabilitation Hospital-ICMProviderAgreement_154399.Pdf to batch_4_diff_staging/pdf_files/-Beachwood RH, LLC dba University Hospitals Rehabilitation Hospital-ICMProviderAgreement_154399.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Medical Imaging-ICMProviderAgreementAmendment_69093.Pdf to batch_4_diff_staging/pdf_files/-Advanced Medical Imaging-ICMProviderAgreementAmendment_69093.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Liviu Schapira, MD, PC_agreement_5.14.09.Pdf to batch_4_diff_staging/pdf_files/Liviu Schapira, MD, PC_agreement_5.14.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alan Wittenberg, DPM-ICMProviderAgreement_155075.Pdf to batch_4_diff_staging/pdf_files/-Alan Wittenberg, DPM-ICMProviderAgreement_155075.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Health Acquisition Corp -112311754 IT REQUEST.Pdf to batch_4_diff_staging/pdf_files/Health Acquisition Corp -112311754 IT REQUEST.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bedford Physical Therapy-ICMProviderAgreement_154407.Pdf to batch_4_diff_staging/pdf_files/-Bedford Physical Therapy-ICMProviderAgreement_154407.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreement_154098.Pdf to batch_4_diff_staging/pdf_files/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreement_154098.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement LMFT - Upstate.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement LMFT - Upstate.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/KHK Rehab,Corp.ec.11.18.2009.Pdf to batch_4_diff_staging/pdf_files/KHK Rehab,Corp.ec.11.18.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard PT.Pdf to batch_4_diff_staging/pdf_files/Standard PT.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services All LOB.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services All LOB.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Beau G. Bortel, DPM-ICMProviderAgreement_154402.Pdf to batch_4_diff_staging/pdf_files/-Beau G. Bortel, DPM-ICMProviderAgreement_154402.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Reliant Pharmacy Corpx.Pdf to batch_4_diff_staging/pdf_files/Reliant Pharmacy Corpx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bayou State Therapy, LLC-ICMProviderAgreement_108229.Pdf to batch_4_diff_staging/pdf_files/-Bayou State Therapy, LLC-ICMProviderAgreement_108229.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/XavierMedical_KM_2009.4.13.Pdf to batch_4_diff_staging/pdf_files/XavierMedical_KM_2009.4.13.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services 4.13.10.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services 4.13.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associates in Foot & Ankle Care-ICMProviderAgreement_156225_1.Pdf to batch_4_diff_staging/pdf_files/-Associates in Foot & Ankle Care-ICMProviderAgreement_156225_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anne Grady Day Program-ICMProviderAgreementAmendment_71929.Pdf to batch_4_diff_staging/pdf_files/-Anne Grady Day Program-ICMProviderAgreementAmendment_71929.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/People Care Inc – Amendment 9.14.18 (REVISED).Pdf to batch_4_diff_staging/pdf_files/People Care Inc – Amendment 9.14.18 (REVISED).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Champlain Valley Vascular PLLC - Amendment Provider Signed 8.21.14.Pdf to batch_4_diff_staging/pdf_files/Champlain Valley Vascular PLLC - Amendment Provider Signed 8.21.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-All Better Pediatric Group Inc-ICMProviderAgreement_265093_1.Pdf to batch_4_diff_staging/pdf_files/-All Better Pediatric Group Inc-ICMProviderAgreement_265093_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract 080508.Pdf to batch_4_diff_staging/pdf_files/Contract 080508.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CNY Asthma and Allergy Consultants, PC - 160995031 Notice 08.24.2020.Pdf to batch_4_diff_staging/pdf_files/CNY Asthma and Allergy Consultants, PC - 160995031 Notice 08.24.2020.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Emptoris Contract.Pdf to batch_4_diff_staging/pdf_files/Emptoris Contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/Transportation.memoDT.MediTrans.Pdf to batch_4_diff_staging/pdf_files/Transportation.memoDT.MediTrans.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accupath Laboratory Services, Inc-ICMProviderAgreement_154382_1.Pdf to batch_4_diff_staging/pdf_files/-Accupath Laboratory Services, Inc-ICMProviderAgreement_154382_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-Affordable Urgent Medical Care-ICMProviderAgreementAmendment_41694.Pdf to batch_4_diff_staging/pdf_files/-Affordable Urgent Medical Care-ICMProviderAgreementAmendment_41694.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Aaron Quamina - Agreement.Pdf to batch_4_diff_staging/pdf_files/Aaron Quamina - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TheBrightOutlook.cc.01.15.10.Pdf to batch_4_diff_staging/pdf_files/TheBrightOutlook.cc.01.15.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anthony DeRiso-ICMProviderAgreement_156018_1.Pdf to batch_4_diff_staging/pdf_files/-Anthony DeRiso-ICMProviderAgreement_156018_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Childrens Center Inc - Amendment Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Hillside Childrens Center Inc - Amendment Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bethany Medical Clinic of New York PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Bethany Medical Clinic of New York PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ausborn Behavioral Care Center-ICMProviderAgreement_217246.Pdf to batch_4_diff_staging/pdf_files/-Ausborn Behavioral Care Center-ICMProviderAgreement_217246.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Joseph Cama MD dba Caribou Medical - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Joseph Cama MD dba Caribou Medical - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accucare Home Medical Equipment Inc.-ICMProviderAgreement_154381_2.Pdf to batch_4_diff_staging/pdf_files/-Accucare Home Medical Equipment Inc.-ICMProviderAgreement_154381_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adventist Midwest Health-ICMProviderAgreement_117253_1.Pdf to batch_4_diff_staging/pdf_files/-Adventist Midwest Health-ICMProviderAgreement_117253_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Health Services FFS read only 2.26.10.Pdf to batch_4_diff_staging/pdf_files/Health Services FFS read only 2.26.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Esterina D'Alessio-Baez - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Esterina D'Alessio-Baez - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Non-Renew Community Care of Western New York dba Home Care & Hospice.Pdf to batch_4_diff_staging/pdf_files/1.Non-Renew Community Care of Western New York dba Home Care & Hospice.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Home Medical Inc-ICMProviderAgreement_154619_2.Pdf to batch_4_diff_staging/pdf_files/-Advanced Home Medical Inc-ICMProviderAgreement_154619_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services FFS (12.2008).Pdf to batch_4_diff_staging/pdf_files/Standard Health Services FFS (12.2008).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1. Termed CDPAS - Chinese American Planning Council Home Attendant Program(1).Pdf to batch_4_diff_staging/pdf_files/1. Termed CDPAS - Chinese American Planning Council Home Attendant Program(1).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baze Pharmacy-ICMProviderAgreementAmendment_41896_1.Pdf to batch_4_diff_staging/pdf_files/-Baze Pharmacy-ICMProviderAgreementAmendment_41896_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AccentCareofNewYorkdbaComprehensiveHomeCare_mt_7.22.2011.Pdf to batch_4_diff_staging/pdf_files/AccentCareofNewYorkdbaComprehensiveHomeCare_mt_7.22.2011.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SoundHealthMedicalPC.ec.2010.01.15.Pdf to batch_4_diff_staging/pdf_files/SoundHealthMedicalPC.ec.2010.01.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bairanje Navak OD-ICMProviderAgreementAmendment_67637.Pdf to batch_4_diff_staging/pdf_files/-Bairanje Navak OD-ICMProviderAgreementAmendment_67637.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services.InternalMedicineIDAsso.non.CIPAProviders.du.11.02.09.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services.InternalMedicineIDAsso.non.CIPAProviders.du.11.02.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services final 3.19.10.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services final 3.19.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ahmad Mirza, MD-ICMProviderAgreement_155051.Pdf to batch_4_diff_staging/pdf_files/-Ahmad Mirza, MD-ICMProviderAgreement_155051.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_135502_1.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_135502_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amanda Schneweis, LCMFT, LLC-ICMProviderAgreement_216229.Pdf to batch_4_diff_staging/pdf_files/-Amanda Schneweis, LCMFT, LLC-ICMProviderAgreement_216229.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amy S Keller dba The Next Right Thing-ICMProviderAgreement_155784.Pdf to batch_4_diff_staging/pdf_files/-Amy S Keller dba The Next Right Thing-ICMProviderAgreement_155784.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Newport Medical, PLLC . jt. 10.08.2009.Pdf to batch_4_diff_staging/pdf_files/Newport Medical, PLLC . jt. 10.08.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ablecare Medical Inc.-ICMProviderAgreementAmendment_68097_1.Pdf to batch_4_diff_staging/pdf_files/-Ablecare Medical Inc.-ICMProviderAgreementAmendment_68097_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ablecare Medical Inc.-ICMProviderAgreement_154353_2.Pdf to batch_4_diff_staging/pdf_files/-Ablecare Medical Inc.-ICMProviderAgreement_154353_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Transportation.GlobalAdministrativeServices.du.05.19.10.Pdf to batch_4_diff_staging/pdf_files/Fidelis Transportation.GlobalAdministrativeServices.du.05.19.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allegheny Health Network-ICMProviderAgreement_102296_4.Pdf to batch_4_diff_staging/pdf_files/-Allegheny Health Network-ICMProviderAgreement_102296_4.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alan Wittenberg, DPM-ICMProviderAgreement_155075_1.Pdf to batch_4_diff_staging/pdf_files/-Alan Wittenberg, DPM-ICMProviderAgreement_155075_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Managment Health Partners Tennessee-ICMProviderAgreement_114656.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Managment Health Partners Tennessee-ICMProviderAgreement_114656.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bedford Physical Therapy-ICMProviderAgreement_154407_1.Pdf to batch_4_diff_staging/pdf_files/-Bedford Physical Therapy-ICMProviderAgreement_154407_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Attentive Care Inc - 112436421 IT Request.Pdf to batch_4_diff_staging/pdf_files/Attentive Care Inc - 112436421 IT Request.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Badger Acquisition of Ohio, LLC-ICMProviderAgreement_154174.Pdf to batch_4_diff_staging/pdf_files/-Badger Acquisition of Ohio, LLC-ICMProviderAgreement_154174.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Harry Weingarten LCSW - Amendment Provider Signed 8.28.14.Pdf to batch_4_diff_staging/pdf_files/Harry Weingarten LCSW - Amendment Provider Signed 8.28.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Vitality Physicians Group Practice PC - Amendment Provider Signed 12.9.19 (VOID).Pdf to batch_4_diff_staging/pdf_files/Vitality Physicians Group Practice PC - Amendment Provider Signed 12.9.19 (VOID).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-ACR Community Services LLC-ICMProviderAgreement_213362.Pdf to batch_4_diff_staging/pdf_files/-ACR Community Services LLC-ICMProviderAgreement_213362.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AMG Transportation Inc - Amendment 12.19.19.Pdf to batch_4_diff_staging/pdf_files/AMG Transportation Inc - Amendment 12.19.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Professional Office Anesthesia, P.C.-ec.04.01.2010.Pdf to batch_4_diff_staging/pdf_files/Professional Office Anesthesia, P.C.-ec.04.01.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Ridgewood Med–Peds LLP DBA Ridgewood Med–Peds - Mid Level Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Ridgewood Med–Peds LLP DBA Ridgewood Med–Peds - Mid Level Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barrett Pain Associates-ICMProviderAgreement_154190_1.Pdf to batch_4_diff_staging/pdf_files/-Barrett Pain Associates-ICMProviderAgreement_154190_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/MercyofNorthernNY_km_2009.11.23.Pdf to batch_4_diff_staging/pdf_files/MercyofNorthernNY_km_2009.11.23.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arch Diagnostic Imaging-ICMProviderAgreement_156033.Pdf to batch_4_diff_staging/pdf_files/-Arch Diagnostic Imaging-ICMProviderAgreement_156033.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Podiatry Center, Inc.-ICMProviderAgreement_154831.Pdf to batch_4_diff_staging/pdf_files/-Advanced Podiatry Center, Inc.-ICMProviderAgreement_154831.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Agnes Ward-ICMProviderAgreement_114746_1.Pdf to batch_4_diff_staging/pdf_files/-Agnes Ward-ICMProviderAgreement_114746_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Rogosin Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis Rogosin Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Westside Podiatry LLC..Pdf to batch_4_diff_staging/pdf_files/Westside Podiatry LLC..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Auglaize Audiology, Inc.-ICMProviderAgreementAmendment_67606.Pdf to batch_4_diff_staging/pdf_files/-Auglaize Audiology, Inc.-ICMProviderAgreementAmendment_67606.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract 051109.Pdf to batch_4_diff_staging/pdf_files/Contract 051109.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehabilitation at Houghton LLC..Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehabilitation at Houghton LLC..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Avera Health-ICMProviderAgreement_67416_2.Pdf to batch_4_diff_staging/pdf_files/-Avera Health-ICMProviderAgreement_67416_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/New York Cardiovascular Medical Imaging PC - Agreement.Pdf to batch_4_diff_staging/pdf_files/New York Cardiovascular Medical Imaging PC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE_ Contracts for approval 9_19_22 Cred Needed.Pdf to batch_4_diff_staging/pdf_files/RE_ Contracts for approval 9_19_22 Cred Needed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.GoldCounseling.du.12.28.09.Pdf to batch_4_diff_staging/pdf_files/SBH.GoldCounseling.du.12.28.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services All LOB FFS.upstate.ec.11.25.2009.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services All LOB FFS.upstate.ec.11.25.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CAF.Contract All LOB.Pdf to batch_4_diff_staging/pdf_files/CAF.Contract All LOB.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associates in Foot & Ankle Care-ICMProviderAgreement_156225.Pdf to batch_4_diff_staging/pdf_files/-Associates in Foot & Ankle Care-ICMProviderAgreement_156225.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/WNY Counseling and Stress Management Center - Agreement Provider Signedgned.Pdf to batch_4_diff_staging/pdf_files/WNY Counseling and Stress Management Center - Agreement Provider Signedgned.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Rehabilitation and Health Specialists, Inc.-ICMProviderAgreement_154832.Pdf to batch_4_diff_staging/pdf_files/-Advanced Rehabilitation and Health Specialists, Inc.-ICMProviderAgreement_154832.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amy S Keller dba The Next Right Thing-ICMProviderAgreement_155784_1.Pdf to batch_4_diff_staging/pdf_files/-Amy S Keller dba The Next Right Thing-ICMProviderAgreement_155784_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/River Valley Endocrinology, P.C.ec.03.22.2010.Pdf to batch_4_diff_staging/pdf_files/River Valley Endocrinology, P.C.ec.03.22.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/St Elizabeth Medical Center - Amendment Provider Signed 9.2.13.Pdf to batch_4_diff_staging/pdf_files/St Elizabeth Medical Center - Amendment Provider Signed 9.2.13.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accupath Laboratory Services, Inc-ICMProviderAgreementAmendment_68606.Pdf to batch_4_diff_staging/pdf_files/-Accupath Laboratory Services, Inc-ICMProviderAgreementAmendment_68606.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Home Towne Pharmacy, Inc.-ICMProviderAgreement_156199_1.Pdf to batch_4_diff_staging/pdf_files/-Ashland Home Towne Pharmacy, Inc.-ICMProviderAgreement_156199_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Autism Education and Research Institute Inc dba AERI Behavorial Health-ICMProviderAgreement_153884_1.Pdf to batch_4_diff_staging/pdf_files/-Autism Education and Research Institute Inc dba AERI Behavorial Health-ICMProviderAgreement_153884_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/See GPDCC LLC for 07.01.18 AMDx.Pdf to batch_4_diff_staging/pdf_files/See GPDCC LLC for 07.01.18 AMDx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_1.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/C & Y Medical, PC - Medicare FS Notice Letter.Pdf to batch_4_diff_staging/pdf_files/C & Y Medical, PC - Medicare FS Notice Letter.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Westside Surgical Associates, LLP_jt_02.19.2010.Pdf to batch_4_diff_staging/pdf_files/Westside Surgical Associates, LLP_jt_02.19.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/HudsonCarePhysicalTherapyPLLC.ca.03.23.10.Pdf to batch_4_diff_staging/pdf_files/HudsonCarePhysicalTherapyPLLC.ca.03.23.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Esoterix Genetic Laboratories LLC Notice 11.17.14x.Pdf to batch_4_diff_staging/pdf_files/Esoterix Genetic Laboratories LLC Notice 11.17.14x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/American Medical Diagnostics PLLC Wellcare Medicare Agreement.Pdf to batch_4_diff_staging/pdf_files/American Medical Diagnostics PLLC Wellcare Medicare Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Samaritan Village Inc - Agreement Provider Signedgned.Pdf to batch_4_diff_staging/pdf_files/Samaritan Village Inc - Agreement Provider Signedgned.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AMIKids Baton Rouge-ICMProviderAgreement_216703.Pdf to batch_4_diff_staging/pdf_files/-AMIKids Baton Rouge-ICMProviderAgreement_216703.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852_4.Pdf to batch_4_diff_staging/pdf_files/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852_4.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SaratogaSpeechPathologyPCdbaSaratogaSpeechCenter.cc.06.23.09.Pdf to batch_4_diff_staging/pdf_files/SaratogaSpeechPathologyPCdbaSaratogaSpeechCenter.cc.06.23.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Service Agreement.Pdf to batch_4_diff_staging/pdf_files/Standard Health Service Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehab at Eden LLC..Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehab at Eden LLC..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Active Infusion-ICMProviderAgreement_154581_1.Pdf to batch_4_diff_staging/pdf_files/-Active Infusion-ICMProviderAgreement_154581_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehab at Endicott LLC.Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehab at Endicott LLC.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Minsheng Pain Management & Anesthesia,PLLC.ec.03.26.2009.Pdf to batch_4_diff_staging/pdf_files/Minsheng Pain Management & Anesthesia,PLLC.ec.03.26.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amerimed Inc-ICMProviderAgreement_155561_1.Pdf to batch_4_diff_staging/pdf_files/-Amerimed Inc-ICMProviderAgreement_155561_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Walgreen.Pdf to batch_4_diff_staging/pdf_files/Walgreen.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/A&D Transport Services, Inc..Pdf to batch_4_diff_staging/pdf_files/A&D Transport Services, Inc..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-ASAP Home Care, Inc.-ICMProviderAgreementAmendment_72857.Pdf to batch_4_diff_staging/pdf_files/-ASAP Home Care, Inc.-ICMProviderAgreementAmendment_72857.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/UPSTATE UNIV MED ASSOC SYRACUSE INC rad & path AMD 07.16.18x.Pdf to batch_4_diff_staging/pdf_files/UPSTATE UNIV MED ASSOC SYRACUSE INC rad & path AMD 07.16.18x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NY Kidney Hypertension PLLC.ec.01.212010.Pdf to batch_4_diff_staging/pdf_files/NY Kidney Hypertension PLLC.ec.01.212010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CrownPointCabCompany.TukkSimpson.2.25.2010.Pdf to batch_4_diff_staging/pdf_files/CrownPointCabCompany.TukkSimpson.2.25.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Augusta Primary Care Services, LLC-ICMProviderAgreement_95876.Pdf to batch_4_diff_staging/pdf_files/-Augusta Primary Care Services, LLC-ICMProviderAgreement_95876.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehab Dunkirk LLC.Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehab Dunkirk LLC.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Podiatry Services of Ithaca_km_2009.6.3.Pdf to batch_4_diff_staging/pdf_files/Podiatry Services of Ithaca_km_2009.6.3.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bellevue Home Medical-ICMProviderAgreement_154415.Pdf to batch_4_diff_staging/pdf_files/-Bellevue Home Medical-ICMProviderAgreement_154415.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Kings Pulmonary Associates,P.C.ec.03.30.2009.Pdf to batch_4_diff_staging/pdf_files/Kings Pulmonary Associates,P.C.ec.03.30.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Non-Standard agreement.Pdf to batch_4_diff_staging/pdf_files/Non-Standard agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation.memoDT.Emas.du.08.05.2010.Pdf to batch_4_diff_staging/pdf_files/Transportation.memoDT.Emas.du.08.05.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Summit Pediatrics - amendment.Pdf to batch_4_diff_staging/pdf_files/Summit Pediatrics - amendment.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852_2.Pdf to batch_4_diff_staging/pdf_files/-Arizona Medical Transport, LLC-ICMProviderAgreement_217852_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia Associates of Wooster-ICMProviderAgreementAmendment_71911.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia Associates of Wooster-ICMProviderAgreementAmendment_71911.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PerformancePhysicalTherapy_km_2009.4.9.Pdf to batch_4_diff_staging/pdf_files/PerformancePhysicalTherapy_km_2009.4.9.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Boston Children's Health Phys LLP and Boston Children’s Health Phys of New Jersey LLC - Amend Prov Signed 10.1.17.Pdf to batch_4_diff_staging/pdf_files/Boston Children's Health Phys LLP and Boston Children’s Health Phys of New Jersey LLC - Amend Prov Signed 10.1.17.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hong Jia Medical, P.C.ec.06.05.2009.Pdf to batch_4_diff_staging/pdf_files/Hong Jia Medical, P.C.ec.06.05.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PSA Healthcare jt 03.27.2009.Pdf to batch_4_diff_staging/pdf_files/PSA Healthcare jt 03.27.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-All American Medical Supplies, LLC-ICMProviderAgreement_155095.Pdf to batch_4_diff_staging/pdf_files/-All American Medical Supplies, LLC-ICMProviderAgreement_155095.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CompassionateOfficeGynecologyPC.ca.04.22.10.Pdf to batch_4_diff_staging/pdf_files/CompassionateOfficeGynecologyPC.ca.04.22.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Downloaded processed/Quest Diagnostics Incorporated - Amendment Provider Signed(1).Pdf from s3://centene-fidelis-files\n",
|
||
"Failed to move processed/-BayCare Health System-ICMProviderAgreement_214685.Pdf to batch_4_diff_staging/pdf_files/-BayCare Health System-ICMProviderAgreement_214685.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bayshore Couseling Services, Inc.-ICMProviderAgreement_154396_1.Pdf to batch_4_diff_staging/pdf_files/-Bayshore Couseling Services, Inc.-ICMProviderAgreement_154396_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AccentCareofNewYork,Inc.dbaComprehensiveHomeCare_amend_9.6.11.Pdf to batch_4_diff_staging/pdf_files/AccentCareofNewYork,Inc.dbaComprehensiveHomeCare_amend_9.6.11.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Provider Contracts S - Z - Shortcut.Pdf to batch_4_diff_staging/pdf_files/Provider Contracts S - Z - Shortcut.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Angie Lynn, LSCSW, LLC-ICMProviderAgreement_216603.Pdf to batch_4_diff_staging/pdf_files/-Angie Lynn, LSCSW, LLC-ICMProviderAgreement_216603.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/nyphs_cause_to_contract_tins_-_06.30.15.Pdf to batch_4_diff_staging/pdf_files/nyphs_cause_to_contract_tins_-_06.30.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bain & Spine Center . jt . 3.12.2009.Pdf to batch_4_diff_staging/pdf_files/Bain & Spine Center . jt . 3.12.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alsco Janitorial Supply-ICMProviderAgreement_96527.Pdf to batch_4_diff_staging/pdf_files/-Alsco Janitorial Supply-ICMProviderAgreement_96527.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adams County Cancer Center-ICMProviderAgreement_154587.Pdf to batch_4_diff_staging/pdf_files/-Adams County Cancer Center-ICMProviderAgreement_154587.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/FinalNorthernPhysicalTherapy.cc.11.19.09doc.Pdf to batch_4_diff_staging/pdf_files/FinalNorthernPhysicalTherapy.cc.11.19.09doc.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_99172.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_99172.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/USA Pain, PLLC.ec.06.10.2009.Pdf to batch_4_diff_staging/pdf_files/USA Pain, PLLC.ec.06.10.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Livingston Co BH contract - open since July.Pdf to batch_4_diff_staging/pdf_files/RE Livingston Co BH contract - open since July.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Buffalo Ultrasound Inc - Agreement Provider Signed 5.1.15.Pdf to batch_4_diff_staging/pdf_files/Buffalo Ultrasound Inc - Agreement Provider Signed 5.1.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract 102708.Pdf to batch_4_diff_staging/pdf_files/Contract 102708.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Addiction Services Council-ICMProviderAgreement_154590.Pdf to batch_4_diff_staging/pdf_files/-Addiction Services Council-ICMProviderAgreement_154590.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Cardiocare Imaging PC - Amendment 12.23.19.Pdf to batch_4_diff_staging/pdf_files/Cardiocare Imaging PC - Amendment 12.23.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners Evansville, LLC-ICMProviderAgreement_114648.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners Evansville, LLC-ICMProviderAgreement_114648.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Amerita of New York, LLC 4-28-22x.Pdf to batch_4_diff_staging/pdf_files/Amerita of New York, LLC 4-28-22x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Michael Alexandrov, M.D.- Agreement_5.13.09.Pdf to batch_4_diff_staging/pdf_files/Michael Alexandrov, M.D.- Agreement_5.13.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Medical Imaging-ICMProviderAgreement_154816.Pdf to batch_4_diff_staging/pdf_files/-Advanced Medical Imaging-ICMProviderAgreement_154816.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Neurology & EMG, LLC.-ICMProviderAgreement_154822_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Neurology & EMG, LLC.-ICMProviderAgreement_154822_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alliance City Health Department-ICMProviderAgreementAmendment_70495.Pdf to batch_4_diff_staging/pdf_files/-Alliance City Health Department-ICMProviderAgreementAmendment_70495.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehabilitation @ Westfield LLC 3.10.09.Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehabilitation @ Westfield LLC 3.10.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Scottsville Family Medicine LLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Scottsville Family Medicine LLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ABK Audiology PLLC_km_2009.08.27.Pdf to batch_4_diff_staging/pdf_files/ABK Audiology PLLC_km_2009.08.27.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-BayCare Health System-ICMProviderAgreement_214685_2.Pdf to batch_4_diff_staging/pdf_files/-BayCare Health System-ICMProviderAgreement_214685_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associated Pathologists, LLC-ICMProviderAgreementAmendment_41718_1.Pdf to batch_4_diff_staging/pdf_files/-Associated Pathologists, LLC-ICMProviderAgreementAmendment_41718_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amethyst Whitley-ICMProviderAgreementAmendment_41710_1.Pdf to batch_4_diff_staging/pdf_files/-Amethyst Whitley-ICMProviderAgreementAmendment_41710_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Atrium Medical Group, Inc-ICMProviderAgreementAmendment_67598.Pdf to batch_4_diff_staging/pdf_files/-Atrium Medical Group, Inc-ICMProviderAgreementAmendment_67598.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Termed Wage Parity Health Association of Niagara County Inc.Pdf to batch_4_diff_staging/pdf_files/1.Termed Wage Parity Health Association of Niagara County Inc.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arti Gupta-ICMProviderAgreement_114752.Pdf to batch_4_diff_staging/pdf_files/-Arti Gupta-ICMProviderAgreement_114752.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Batesville HMA Medical Group-ICMProviderAgreement_223023_2.Pdf to batch_4_diff_staging/pdf_files/-Batesville HMA Medical Group-ICMProviderAgreement_223023_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-B & K Home Medical Services, Inc.-ICMProviderAgreement_153904.Pdf to batch_4_diff_staging/pdf_files/-B & K Home Medical Services, Inc.-ICMProviderAgreement_153904.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/Hillside Childrens Center Inc - Amendment Provider Signed 7.1.21.Pdf to batch_4_diff_staging/pdf_files/Hillside Childrens Center Inc - Amendment Provider Signed 7.1.21.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-Absolute Freedom Transport Services, LLC.-ICMProviderAgreement_154358.Pdf to batch_4_diff_staging/pdf_files/-Absolute Freedom Transport Services, LLC.-ICMProviderAgreement_154358.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Medical Supply-ICMProviderAgreementAmendment_69094.Pdf to batch_4_diff_staging/pdf_files/-Advanced Medical Supply-ICMProviderAgreementAmendment_69094.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ajayaghosh Krishnan-ICMProviderAgreementAmendment_70009.Pdf to batch_4_diff_staging/pdf_files/-Ajayaghosh Krishnan-ICMProviderAgreementAmendment_70009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Everything Medical Equipment and Supplies Incx.Pdf to batch_4_diff_staging/pdf_files/Everything Medical Equipment and Supplies Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adebowale A. Adedipe, MD, Inc.-ICMProviderAgreement_154594.Pdf to batch_4_diff_staging/pdf_files/-Adebowale A. Adedipe, MD, Inc.-ICMProviderAgreement_154594.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aina Medical Inc.-ICMProviderAgreement_155052.Pdf to batch_4_diff_staging/pdf_files/-Aina Medical Inc.-ICMProviderAgreement_155052.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Interscience Diagnostic Noticex.Pdf to batch_4_diff_staging/pdf_files/Interscience Diagnostic Noticex.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advantage in-Home Services, LLC-ICMProviderAgreement_103296.Pdf to batch_4_diff_staging/pdf_files/-Advantage in-Home Services, LLC-ICMProviderAgreement_103296.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bronx Physical Therapy, LLP.ec.08.26.2009.Pdf to batch_4_diff_staging/pdf_files/Bronx Physical Therapy, LLP.ec.08.26.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Brent A. Williams, MD, FASN - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Brent A. Williams, MD, FASN - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/StdSNF All LOBs.FFS with Parameters (8.2008).Pdf to batch_4_diff_staging/pdf_files/StdSNF All LOBs.FFS with Parameters (8.2008).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_135502.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_135502.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amber Mattke-ICMProviderAgreement_114750.Pdf to batch_4_diff_staging/pdf_files/-Amber Mattke-ICMProviderAgreement_114750.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allergy, Asthma & Respiratory Center-ICMProviderAgreement_155306_1.Pdf to batch_4_diff_staging/pdf_files/-Allergy, Asthma & Respiratory Center-ICMProviderAgreement_155306_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ara Kallibjian DPM-ICMProviderAgreement_156031.Pdf to batch_4_diff_staging/pdf_files/-Ara Kallibjian DPM-ICMProviderAgreement_156031.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Daniel J. Rosen.MD PC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Daniel J. Rosen.MD PC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Acclaim Home Health Services, Inc.-ICMProviderAgreementAmendment_68591.Pdf to batch_4_diff_staging/pdf_files/-Acclaim Home Health Services, Inc.-ICMProviderAgreementAmendment_68591.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Albuquerque Westside, LLC., Bio-Medical Applications of New Mexico, Inc.-ICMProviderAgreement_67446_2.Pdf to batch_4_diff_staging/pdf_files/-Albuquerque Westside, LLC., Bio-Medical Applications of New Mexico, Inc.-ICMProviderAgreement_67446_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alternate Solutions Home Care-ICMProviderAgreementAmendment_70954.Pdf to batch_4_diff_staging/pdf_files/-Alternate Solutions Home Care-ICMProviderAgreementAmendment_70954.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Practice Primary Care LLC-ICMProviderAgreement_67511.Pdf to batch_4_diff_staging/pdf_files/-Advanced Practice Primary Care LLC-ICMProviderAgreement_67511.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Lucy Frasca - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Lucy Frasca - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Excel Medical, P.C.ec - Agreement Template.Pdf to batch_4_diff_staging/pdf_files/Excel Medical, P.C.ec - Agreement Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NeuroSurg Contract.Pdf to batch_4_diff_staging/pdf_files/NeuroSurg Contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anthony DeRiso-ICMProviderAgreementAmendment_71933.Pdf to batch_4_diff_staging/pdf_files/-Anthony DeRiso-ICMProviderAgreementAmendment_71933.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Neurology & EMG, LLC.-ICMProviderAgreementAmendment_69528.Pdf to batch_4_diff_staging/pdf_files/-Advanced Neurology & EMG, LLC.-ICMProviderAgreementAmendment_69528.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/EfficientMedicalCarePC.ca.04.21.10.Pdf to batch_4_diff_staging/pdf_files/EfficientMedicalCarePC.ca.04.21.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-B & K Home Medical Services, Inc.-ICMProviderAgreementAmendment_67625_1.Pdf to batch_4_diff_staging/pdf_files/-B & K Home Medical Services, Inc.-ICMProviderAgreementAmendment_67625_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/David Szuster Psychiatry PC - Amendment June 2017x.Pdf to batch_4_diff_staging/pdf_files/David Szuster Psychiatry PC - Amendment June 2017x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anthony Adams dba Diversified Behavioral Health Services Inc.-ICMProviderAgreement_214274.Pdf to batch_4_diff_staging/pdf_files/-Anthony Adams dba Diversified Behavioral Health Services Inc.-ICMProviderAgreement_214274.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aplo Health and Aesthetics LLC-ICMProviderAgreement_67503.Pdf to batch_4_diff_staging/pdf_files/-Aplo Health and Aesthetics LLC-ICMProviderAgreement_67503.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Attica Family Medicine PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Attica Family Medicine PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/UPSTATE_Standard Health Services All LOB FFS (12.2008).Pdf to batch_4_diff_staging/pdf_files/UPSTATE_Standard Health Services All LOB FFS (12.2008).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accurate Medical Supply, Inc.-ICMProviderAgreement_154379.Pdf to batch_4_diff_staging/pdf_files/-Accurate Medical Supply, Inc.-ICMProviderAgreement_154379.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Compreh.Healthcare&MedicalServ.PLLC.04.21.2009.Pdf to batch_4_diff_staging/pdf_files/Compreh.Healthcare&MedicalServ.PLLC.04.21.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/VictoryObstetricsandGynecologyPC.ca.04.13.10.Pdf to batch_4_diff_staging/pdf_files/VictoryObstetricsandGynecologyPC.ca.04.13.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arthritis & Rheumatism Center, Inc.-ICMProviderAgreement_156044_1.Pdf to batch_4_diff_staging/pdf_files/-Arthritis & Rheumatism Center, Inc.-ICMProviderAgreement_156044_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Excellent Care Medical NY, P.C..ec.01.20.2010.Pdf to batch_4_diff_staging/pdf_files/Excellent Care Medical NY, P.C..ec.01.20.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Ann Finch, LCSW dba Rural Life Center - Agreement(1).Pdf to batch_4_diff_staging/pdf_files/Ann Finch, LCSW dba Rural Life Center - Agreement(1).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bellefaire JCB-ICMProviderAgreement_154413.Pdf to batch_4_diff_staging/pdf_files/-Bellefaire JCB-ICMProviderAgreement_154413.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ball Medical Clinic, Inc.-ICMProviderAgreementAmendment_67639.Pdf to batch_4_diff_staging/pdf_files/-Ball Medical Clinic, Inc.-ICMProviderAgreementAmendment_67639.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_114649_1.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_114649_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Philip E McDowell, LCSW - Agreement(1).Pdf to batch_4_diff_staging/pdf_files/Philip E McDowell, LCSW - Agreement(1).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adebowale A. Adedipe, MD, Inc.-ICMProviderAgreement_154594_1.Pdf to batch_4_diff_staging/pdf_files/-Adebowale A. Adedipe, MD, Inc.-ICMProviderAgreement_154594_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula ObGyn-ICMProviderAgreementAmendment_72871.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula ObGyn-ICMProviderAgreementAmendment_72871.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Jennifer K Wilcox NP in Family Health PC - Agreement.Pdf to batch_4_diff_staging/pdf_files/Jennifer K Wilcox NP in Family Health PC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Autism Education and Research Institute Inc dba AERI Behavorial Health-ICMProviderAgreement_153884.Pdf to batch_4_diff_staging/pdf_files/-Autism Education and Research Institute Inc dba AERI Behavorial Health-ICMProviderAgreement_153884.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bellevue Professional Services, Inc.-ICMProviderAgreementAmendment_68147.Pdf to batch_4_diff_staging/pdf_files/-Bellevue Professional Services, Inc.-ICMProviderAgreementAmendment_68147.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associcates in Orthopedics, Inc-ICMProviderAgreement_156232.Pdf to batch_4_diff_staging/pdf_files/-Associcates in Orthopedics, Inc-ICMProviderAgreement_156232.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/LewistonCardiology.ca.03.23.10.Pdf to batch_4_diff_staging/pdf_files/LewistonCardiology.ca.03.23.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Home Aid Medical Equipment & Supplies Incx.Pdf to batch_4_diff_staging/pdf_files/Home Aid Medical Equipment & Supplies Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Children’s Center Inc - Agreement 6.8.15.Pdf to batch_4_diff_staging/pdf_files/Hillside Children’s Center Inc - Agreement 6.8.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amite Family Clinic-ICMProviderAgreement_107678.Pdf to batch_4_diff_staging/pdf_files/-Amite Family Clinic-ICMProviderAgreement_107678.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis WNUC Notice of Change in Ownershipx.Pdf to batch_4_diff_staging/pdf_files/Fidelis WNUC Notice of Change in Ownershipx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/United Orthopaedic Appliance Company Incx.Pdf to batch_4_diff_staging/pdf_files/United Orthopaedic Appliance Company Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Tien Cardiology Associates, PC_Agreement.Pdf to batch_4_diff_staging/pdf_files/Tien Cardiology Associates, PC_Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/General Agreement, All BH are under own tin.Pdf to batch_4_diff_staging/pdf_files/General Agreement, All BH are under own tin.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ParkLenoxPediatric,PC.baw.12.22.09.Pdf to batch_4_diff_staging/pdf_files/ParkLenoxPediatric,PC.baw.12.22.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TriCountyCabInc - Letter of Understanding 3.11.2010.Pdf to batch_4_diff_staging/pdf_files/TriCountyCabInc - Letter of Understanding 3.11.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A New Direction for Counseling LLC-ICMProviderAgreement_220069.Pdf to batch_4_diff_staging/pdf_files/-A New Direction for Counseling LLC-ICMProviderAgreement_220069.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Apex Medical Center-ICMProviderAgreementAmendment_11591.Pdf to batch_4_diff_staging/pdf_files/-Apex Medical Center-ICMProviderAgreementAmendment_11591.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Childrens Center Inc - Amendment 7.1.21.Pdf to batch_4_diff_staging/pdf_files/Hillside Childrens Center Inc - Amendment 7.1.21.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Ancillary.Pdf to batch_4_diff_staging/pdf_files/Standard Ancillary.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Boston Children’s Health Physicians LLP - Amendment 6.1.22.Pdf to batch_4_diff_staging/pdf_files/Boston Children’s Health Physicians LLP - Amendment 6.1.22.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Regional Pet Scan-ICMProviderAgreement_155070_1.Pdf to batch_4_diff_staging/pdf_files/-Akron Regional Pet Scan-ICMProviderAgreement_155070_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AGM Physical Therapy-ICMProviderAgreementAmendment_69567.Pdf to batch_4_diff_staging/pdf_files/-AGM Physical Therapy-ICMProviderAgreementAmendment_69567.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services All LOB FFS .ec.01.20.2010.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services All LOB FFS .ec.01.20.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Zia Ahmed, M.D.ec.04.20.2010.Pdf to batch_4_diff_staging/pdf_files/Zia Ahmed, M.D.ec.04.20.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barbara Taylor MD-ICMProviderAgreement_114757.Pdf to batch_4_diff_staging/pdf_files/-Barbara Taylor MD-ICMProviderAgreement_114757.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/Women's OBGYN Care At The Pavillion, P.C.ec09.25.2009.Pdf to batch_4_diff_staging/pdf_files/Women's OBGYN Care At The Pavillion, P.C.ec09.25.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anthony P Bertin, DO-ICMProviderAgreement_156021.Pdf to batch_4_diff_staging/pdf_files/-Anthony P Bertin, DO-ICMProviderAgreement_156021.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associated Pathologists, LLC-ICMProviderAgreementAmendment_41718.Pdf to batch_4_diff_staging/pdf_files/-Associated Pathologists, LLC-ICMProviderAgreementAmendment_41718.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-Alternate Solutions Home Care-ICMProviderAgreementAmendment_70954_1.Pdf to batch_4_diff_staging/pdf_files/-Alternate Solutions Home Care-ICMProviderAgreementAmendment_70954_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adult Geriatrics of Wooster-ICMProviderAgreement_154600.Pdf to batch_4_diff_staging/pdf_files/-Adult Geriatrics of Wooster-ICMProviderAgreement_154600.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Neurology & EMG, LLC.-ICMProviderAgreement_154822.Pdf to batch_4_diff_staging/pdf_files/-Advanced Neurology & EMG, LLC.-ICMProviderAgreement_154822.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Agape Podiatry-ICMProviderAgreement_154855.Pdf to batch_4_diff_staging/pdf_files/-Agape Podiatry-ICMProviderAgreement_154855.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amanda M Body-ICMProviderAgreement_198427_1.Pdf to batch_4_diff_staging/pdf_files/-Amanda M Body-ICMProviderAgreement_198427_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bay Park Center for Nursing and Rehabilitation LLC - Amendment Provider Signed 8.14.15.Pdf to batch_4_diff_staging/pdf_files/Bay Park Center for Nursing and Rehabilitation LLC - Amendment Provider Signed 8.14.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascent Counseling-ICMProviderAgreement_221771.Pdf to batch_4_diff_staging/pdf_files/-Ascent Counseling-ICMProviderAgreement_221771.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Rehabilitation and Health Specialists, Inc.-ICMProviderAgreementAmendment_69537.Pdf to batch_4_diff_staging/pdf_files/-Advanced Rehabilitation and Health Specialists, Inc.-ICMProviderAgreementAmendment_69537.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/HyperbaricandWoundCarePhysicianPC.ca.03.10.10.Pdf to batch_4_diff_staging/pdf_files/HyperbaricandWoundCarePhysicianPC.ca.03.10.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AmeriCare Home Health Services-ICMProviderAgreement_155560.Pdf to batch_4_diff_staging/pdf_files/-AmeriCare Home Health Services-ICMProviderAgreement_155560.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis TBHC Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis TBHC Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ChamplainValleyAudiology.ec.10.20.09.Pdf to batch_4_diff_staging/pdf_files/ChamplainValleyAudiology.ec.10.20.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68605.Pdf to batch_4_diff_staging/pdf_files/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68605.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Avera Health-ICMProviderAgreement_67416_1.Pdf to batch_4_diff_staging/pdf_files/-Avera Health-ICMProviderAgreement_67416_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Termed Wage Parity- Wellness home care LTD.Pdf to batch_4_diff_staging/pdf_files/1.Termed Wage Parity- Wellness home care LTD.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehab Orchard Park LLC.Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehab Orchard Park LLC.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.LockwoodPsychologicalServices.du.9.11.09.Pdf to batch_4_diff_staging/pdf_files/SBH.LockwoodPsychologicalServices.du.9.11.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Silvercrest Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis Silvercrest Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/OswegoFamilyPhysicians_km_2009.05.22.Pdf to batch_4_diff_staging/pdf_files/OswegoFamilyPhysicians_km_2009.05.22.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/BAM MEdical, P.C.ec.03.16.2009.Pdf to batch_4_diff_staging/pdf_files/BAM MEdical, P.C.ec.03.16.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/FW Montefiore Settlement Agreement (fully executed).Pdf to batch_4_diff_staging/pdf_files/FW Montefiore Settlement Agreement (fully executed).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aegis Science Corporation-ICMProviderAgreement_154108.Pdf to batch_4_diff_staging/pdf_files/-Aegis Science Corporation-ICMProviderAgreement_154108.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Pulaski Medical Urgent Care PC dba Pulaski Urgent Care - Amendment Provider Signed 5.1.19.Pdf to batch_4_diff_staging/pdf_files/Pulaski Medical Urgent Care PC dba Pulaski Urgent Care - Amendment Provider Signed 5.1.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Mayer I Rydzinski MD PC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Mayer I Rydzinski MD PC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services 1.25.10.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services 1.25.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Orthopedics-ICMProviderAgreement_155774_1.Pdf to batch_4_diff_staging/pdf_files/-American Orthopedics-ICMProviderAgreement_155774_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_99172_2.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_99172_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/BH Psychology Agreementdoc.Pdf to batch_4_diff_staging/pdf_files/BH Psychology Agreementdoc.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Home Health Care, Inc.-ICMProviderAgreement_155764.Pdf to batch_4_diff_staging/pdf_files/-American Home Health Care, Inc.-ICMProviderAgreement_155764.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Affordable Urgent Medical Care-ICMProviderAgreementAmendment_41694_1.Pdf to batch_4_diff_staging/pdf_files/-Affordable Urgent Medical Care-ICMProviderAgreementAmendment_41694_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation Contract Cover Letter.MediTrans.du.07.06.2010.Pdf to batch_4_diff_staging/pdf_files/Transportation Contract Cover Letter.MediTrans.du.07.06.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arriva Medical, LLC-ICMProviderAgreementAmendment_41716.Pdf to batch_4_diff_staging/pdf_files/-Arriva Medical, LLC-ICMProviderAgreementAmendment_41716.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Podiatry Center, Inc.-ICMProviderAgreement_154831_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Podiatry Center, Inc.-ICMProviderAgreement_154831_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hatter contract.Pdf to batch_4_diff_staging/pdf_files/Hatter contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Family Institute, Inc.-ICMProviderAgreement_155059_1.Pdf to batch_4_diff_staging/pdf_files/-Akron Family Institute, Inc.-ICMProviderAgreement_155059_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Womans Health Associates of Oneida_nn_09.24.09.Pdf to batch_4_diff_staging/pdf_files/Womans Health Associates of Oneida_nn_09.24.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TransportationContractCoverLetter - 8.2.10.Pdf to batch_4_diff_staging/pdf_files/TransportationContractCoverLetter - 8.2.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services All LOB FFS (12.2008).Pdf to batch_4_diff_staging/pdf_files/Standard Health Services All LOB FFS (12.2008).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anne Grady Day Program-ICMProviderAgreementAmendment_71929_1.Pdf to batch_4_diff_staging/pdf_files/-Anne Grady Day Program-ICMProviderAgreementAmendment_71929_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Balance Sleep Centers of Mississippi Jackson LLC-ICMProviderAgreementAmendment_41891.Pdf to batch_4_diff_staging/pdf_files/-Balance Sleep Centers of Mississippi Jackson LLC-ICMProviderAgreementAmendment_41891.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Icahn School of Medicine at Mt Sinai DBA Faculty Practice Associates II - Amendment Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Icahn School of Medicine at Mt Sinai DBA Faculty Practice Associates II - Amendment Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amanda Reid-ICMProviderAgreement_114749.Pdf to batch_4_diff_staging/pdf_files/-Amanda Reid-ICMProviderAgreement_114749.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Southern Tier Sports Medicine_km_2009.6.26.Pdf to batch_4_diff_staging/pdf_files/Southern Tier Sports Medicine_km_2009.6.26.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abigail Natvig-Heinz-ICMProviderAgreement_114743.Pdf to batch_4_diff_staging/pdf_files/-Abigail Natvig-Heinz-ICMProviderAgreement_114743.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners Tennessee-ICMProviderAgreement_305693.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners Tennessee-ICMProviderAgreement_305693.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Health Standard Serv Agreement.Pdf to batch_4_diff_staging/pdf_files/Health Standard Serv Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract 6.09.Pdf to batch_4_diff_staging/pdf_files/Contract 6.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Madhumati R. Kalavar, MD, PC - Medicare FS Notice Letter.Pdf to batch_4_diff_staging/pdf_files/Madhumati R. Kalavar, MD, PC - Medicare FS Notice Letter.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/MaimonidesRadiation,FPP.hsa.baw.02.11.2009.Pdf to batch_4_diff_staging/pdf_files/MaimonidesRadiation,FPP.hsa.baw.02.11.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-APMCO-ICMProviderAgreement_217543.Pdf to batch_4_diff_staging/pdf_files/-APMCO-ICMProviderAgreement_217543.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Corey W Hunter MD PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Corey W Hunter MD PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Accent Physical Therapy, PC_km_2009.6.24.Pdf to batch_4_diff_staging/pdf_files/Accent Physical Therapy, PC_km_2009.6.24.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Queens Cardiovascular Services, P.L.L.C.ec.05.04.2009.Pdf to batch_4_diff_staging/pdf_files/Queens Cardiovascular Services, P.L.L.C.ec.05.04.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Cortland Reg Med Ctr LTHHCP IT Config.Pdf to batch_4_diff_staging/pdf_files/Cortland Reg Med Ctr LTHHCP IT Config.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ali S Halabi MD Inc-ICMProviderAgreement_155088.Pdf to batch_4_diff_staging/pdf_files/-Ali S Halabi MD Inc-ICMProviderAgreement_155088.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/dba O’Connor Family Therapy - Agreement.Pdf to batch_4_diff_staging/pdf_files/dba O’Connor Family Therapy - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Long Island Diagnostic Imaging - Amendment 7.15.12.Pdf to batch_4_diff_staging/pdf_files/Long Island Diagnostic Imaging - Amendment 7.15.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/MRI Associates of Queens, PC - Amendment 7.20.12.Pdf to batch_4_diff_staging/pdf_files/MRI Associates of Queens, PC - Amendment 7.20.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Upstate Regional Medical Supply Inc.x.Pdf to batch_4_diff_staging/pdf_files/Upstate Regional Medical Supply Inc.x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract_Mgmt - Shortcut (2).Pdf to batch_4_diff_staging/pdf_files/Contract_Mgmt - Shortcut (2).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Altegra Health Inc.-ICMProviderAgreement_96496.Pdf to batch_4_diff_staging/pdf_files/-Altegra Health Inc.-ICMProviderAgreement_96496.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alochol and Drug Freedom Center of Knox County dba Freedom Center-ICMProviderAgreement_155322.Pdf to batch_4_diff_staging/pdf_files/-Alochol and Drug Freedom Center of Knox County dba Freedom Center-ICMProviderAgreement_155322.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aids Resource Center Ohio, Inc.-ICMProviderAgreement_220072.Pdf to batch_4_diff_staging/pdf_files/-Aids Resource Center Ohio, Inc.-ICMProviderAgreement_220072.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-B & K Home Medical Services, Inc.-ICMProviderAgreementAmendment_67625.Pdf to batch_4_diff_staging/pdf_files/-B & K Home Medical Services, Inc.-ICMProviderAgreementAmendment_67625.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alexander Federer-ICMProviderAgreement_223229.Pdf to batch_4_diff_staging/pdf_files/-Alexander Federer-ICMProviderAgreement_223229.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Autumn Keller, Dc-ICMProviderAgreementAmendment_67618.Pdf to batch_4_diff_staging/pdf_files/-Autumn Keller, Dc-ICMProviderAgreementAmendment_67618.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/North Shore Agreement.Pdf to batch_4_diff_staging/pdf_files/North Shore Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ali S Halabi MD Inc-ICMProviderAgreementAmendment_70045.Pdf to batch_4_diff_staging/pdf_files/-Ali S Halabi MD Inc-ICMProviderAgreementAmendment_70045.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NorthCountryThoracicandVascularPC.05.04.09.Pdf to batch_4_diff_staging/pdf_files/NorthCountryThoracicandVascularPC.05.04.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Achievement Centers for Children-ICMProviderAgreement_154386.Pdf to batch_4_diff_staging/pdf_files/-Achievement Centers for Children-ICMProviderAgreement_154386.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Albert C. Denault II, DPM-ICMProviderAgreementAmendment_96786.Pdf to batch_4_diff_staging/pdf_files/-Albert C. Denault II, DPM-ICMProviderAgreementAmendment_96786.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Chiropractic Care Ctr.Pdf to batch_4_diff_staging/pdf_files/Chiropractic Care Ctr.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Abraham Chachoua, MD - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Abraham Chachoua, MD - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/See Gramercy Park Digestive Disease for Agreementx.Pdf to batch_4_diff_staging/pdf_files/See Gramercy Park Digestive Disease for Agreementx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1. Termed Wage Parity - Girling Health Care Of NY Inc.Pdf to batch_4_diff_staging/pdf_files/1. Termed Wage Parity - Girling Health Care Of NY Inc.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anderson Prosthetics and Orthotics-ICMProviderAgreement_71711.Pdf to batch_4_diff_staging/pdf_files/-Anderson Prosthetics and Orthotics-ICMProviderAgreement_71711.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Chardon Chiropractic, Inc.-ICMProviderAgreementAmendment_69077.Pdf to batch_4_diff_staging/pdf_files/-Advanced Chardon Chiropractic, Inc.-ICMProviderAgreementAmendment_69077.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Active Community Health Center, Corp-ICMProviderAgreement_213813.Pdf to batch_4_diff_staging/pdf_files/-Active Community Health Center, Corp-ICMProviderAgreement_213813.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/University Medical Office, PLLC.ec.08.11.2009.Pdf to batch_4_diff_staging/pdf_files/University Medical Office, PLLC.ec.08.11.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Buffalo Niagara Plastic Surgery PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Buffalo Niagara Plastic Surgery PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amethyst Whitley-ICMProviderAgreementAmendment_41710.Pdf to batch_4_diff_staging/pdf_files/-Amethyst Whitley-ICMProviderAgreementAmendment_41710.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation.memoDT.Pdf to batch_4_diff_staging/pdf_files/Transportation.memoDT.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AudiologyConsultantsofCortlandPC_km_2009.8.6.Pdf to batch_4_diff_staging/pdf_files/AudiologyConsultantsofCortlandPC_km_2009.8.6.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amy S Keller dba The Next Right Thing-ICMProviderAgreement_155784_2.Pdf to batch_4_diff_staging/pdf_files/-Amy S Keller dba The Next Right Thing-ICMProviderAgreement_155784_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Respiratory & Rehab-ICMProviderAgreementAmendment_41689.Pdf to batch_4_diff_staging/pdf_files/-Advanced Respiratory & Rehab-ICMProviderAgreementAmendment_41689.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Afton Sumler-Beard-ICMProviderAgreement_114745.Pdf to batch_4_diff_staging/pdf_files/-Afton Sumler-Beard-ICMProviderAgreement_114745.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Lisa M Brothwell - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Lisa M Brothwell - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Badger Acquisition of Ohio, LLC-ICMProviderAgreementAmendment_67635.Pdf to batch_4_diff_staging/pdf_files/-Badger Acquisition of Ohio, LLC-ICMProviderAgreementAmendment_67635.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Downloaded processed/Quest Diagnostics Incorporated - Amendment Provider Signed(3).Pdf from s3://centene-fidelis-files\n",
|
||
"Failed to move processed/SCHEDULE 5.Pdf to batch_4_diff_staging/pdf_files/SCHEDULE 5.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Home Medical Inc-ICMProviderAgreement_154619.Pdf to batch_4_diff_staging/pdf_files/-Advanced Home Medical Inc-ICMProviderAgreement_154619.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Non-Renew Happy Days Home Healthcare Services 7.14.15.Pdf to batch_4_diff_staging/pdf_files/1.Non-Renew Happy Days Home Healthcare Services 7.14.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adams, Bradley-ICMProviderAgreement_154589_1.Pdf to batch_4_diff_staging/pdf_files/-Adams, Bradley-ICMProviderAgreement_154589_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/StdChiropractor.Pdf to batch_4_diff_staging/pdf_files/StdChiropractor.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SamaritanCounselingCenteroftheSouthernTierInc.cc.01.06.10.Pdf to batch_4_diff_staging/pdf_files/SamaritanCounselingCenteroftheSouthernTierInc.cc.01.06.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Andrew Cusher, DPM-ICMProviderAgreement_155794_1.Pdf to batch_4_diff_staging/pdf_files/-Andrew Cusher, DPM-ICMProviderAgreement_155794_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A Seenam LEE-ICMProviderAgreement_153842.Pdf to batch_4_diff_staging/pdf_files/-A Seenam LEE-ICMProviderAgreement_153842.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associates Hearing Aid Services-ICMProviderAgreement_156221_1.Pdf to batch_4_diff_staging/pdf_files/-Associates Hearing Aid Services-ICMProviderAgreement_156221_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Health Services Group (BHSG)-ICMProviderAgreementAmendment_41892_1.Pdf to batch_4_diff_staging/pdf_files/-Baptist Health Services Group (BHSG)-ICMProviderAgreementAmendment_41892_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/St Peter’s Health Partners - Non Standard 12.1.19.Pdf to batch_4_diff_staging/pdf_files/St Peter’s Health Partners - Non Standard 12.1.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Sheridan contract.Pdf to batch_4_diff_staging/pdf_files/Sheridan contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Access To Independence, Inc.-ICMProviderAgreement_154367.Pdf to batch_4_diff_staging/pdf_files/-Access To Independence, Inc.-ICMProviderAgreement_154367.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NYC Medical Neurological, P.C.ec.10.31.2008.Pdf to batch_4_diff_staging/pdf_files/NYC Medical Neurological, P.C.ec.10.31.2008.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.MaverickFamilyCounseling.du.8.6.09.Pdf to batch_4_diff_staging/pdf_files/SBH.MaverickFamilyCounseling.du.8.6.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Community Care Partners - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Community Care Partners - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Premier Healthcare (New York, NY) - Contract Enrollment Provider Grid 02 10 2022.Pdf to batch_4_diff_staging/pdf_files/Premier Healthcare (New York, NY) - Contract Enrollment Provider Grid 02 10 2022.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/David French Physical Therapy, P.C.ec.12.03.2009.Pdf to batch_4_diff_staging/pdf_files/David French Physical Therapy, P.C.ec.12.03.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Envision Therapeutic Services Inc - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Envision Therapeutic Services Inc - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashis K Rakhit, MD Inc-ICMProviderAgreement_156197_1.Pdf to batch_4_diff_staging/pdf_files/-Ashis K Rakhit, MD Inc-ICMProviderAgreement_156197_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Chardon Chiropractic, Inc.-ICMProviderAgreement_154607.Pdf to batch_4_diff_staging/pdf_files/-Advanced Chardon Chiropractic, Inc.-ICMProviderAgreement_154607.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Malta Medical Care, PC- agreement_5.13.09.Pdf to batch_4_diff_staging/pdf_files/Malta Medical Care, PC- agreement_5.13.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Kidney Care-ICMProviderAgreementAmendment_41686_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Kidney Care-ICMProviderAgreementAmendment_41686_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Alba International Trading Corp.x.Pdf to batch_4_diff_staging/pdf_files/Alba International Trading Corp.x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associates Hearing Aid Services-ICMProviderAgreement_156221.Pdf to batch_4_diff_staging/pdf_files/-Associates Hearing Aid Services-ICMProviderAgreement_156221.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.RobinSchermPsyD.du.10.8.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.RobinSchermPsyD.du.10.8.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Acceleration Physical Therapy-ICMProviderAgreement_261610.Pdf to batch_4_diff_staging/pdf_files/-Acceleration Physical Therapy-ICMProviderAgreement_261610.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_303995.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_303995.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH AgreementMarcVitalHerneMD.du.3.4.09.Pdf to batch_4_diff_staging/pdf_files/SBH AgreementMarcVitalHerneMD.du.3.4.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Michigan-ICMProviderAgreement_303990.Pdf to batch_4_diff_staging/pdf_files/-Ascension Michigan-ICMProviderAgreement_303990.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Accentcare_CDPAS SCHEDULE Replacement Page.Pdf to batch_4_diff_staging/pdf_files/Accentcare_CDPAS SCHEDULE Replacement Page.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Agee Chiropractic Clinic-ICMProviderAgreement_154856_1.Pdf to batch_4_diff_staging/pdf_files/-Agee Chiropractic Clinic-ICMProviderAgreement_154856_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Podiatry Center, Inc.-ICMProviderAgreementAmendment_69535.Pdf to batch_4_diff_staging/pdf_files/-Advanced Podiatry Center, Inc.-ICMProviderAgreementAmendment_69535.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services All LOB FFS (10.2009).Pdf to batch_4_diff_staging/pdf_files/Standard Health Services All LOB FFS (10.2009).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/OneidaAudiologyHearing&Balance_km_2009.06.18.Pdf to batch_4_diff_staging/pdf_files/OneidaAudiologyHearing&Balance_km_2009.06.18.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Gastro&HepatologyofCNYPC_km_2009.04.29.Pdf to batch_4_diff_staging/pdf_files/Gastro&HepatologyofCNYPC_km_2009.04.29.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adam Flynn-ICMProviderAgreement_114744_1.Pdf to batch_4_diff_staging/pdf_files/-Adam Flynn-ICMProviderAgreement_114744_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PZF Inc DBA Grace O & P Med Suppliesx.Pdf to batch_4_diff_staging/pdf_files/PZF Inc DBA Grace O & P Med Suppliesx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Boston Children's Health Phys LLP and Boston Children’s Health Phys of New Jersey LLC - Amendment 10.1.17.Pdf to batch_4_diff_staging/pdf_files/Boston Children's Health Phys LLP and Boston Children’s Health Phys of New Jersey LLC - Amendment 10.1.17.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Global Home Care Inc - Agreement Provider Signed (CDPAS).Pdf to batch_4_diff_staging/pdf_files/Global Home Care Inc - Agreement Provider Signed (CDPAS).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Assured Health Care-ICMProviderAgreement_156233.Pdf to batch_4_diff_staging/pdf_files/-Assured Health Care-ICMProviderAgreement_156233.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Active Infusion-ICMProviderAgreementAmendment_68618_1.Pdf to batch_4_diff_staging/pdf_files/-Active Infusion-ICMProviderAgreementAmendment_68618_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/All in One Medical Care,P.C.ec.06.10.2009.Pdf to batch_4_diff_staging/pdf_files/All in One Medical Care,P.C.ec.06.10.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/StillwaterPsychologicalandOccupationalTherapyAssoc.,PLLC.cc.09.21.09.Pdf to batch_4_diff_staging/pdf_files/StillwaterPsychologicalandOccupationalTherapyAssoc.,PLLC.cc.09.21.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Home Health Care, Inc.-ICMProviderAgreementAmendment_70994_1.Pdf to batch_4_diff_staging/pdf_files/-American Home Health Care, Inc.-ICMProviderAgreementAmendment_70994_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abdul T Razack, MD, Inc.-ICMProviderAgreementAmendment_68093.Pdf to batch_4_diff_staging/pdf_files/-Abdul T Razack, MD, Inc.-ICMProviderAgreementAmendment_68093.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement,JamesThalmanPhD.du.2.17.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement,JamesThalmanPhD.du.2.17.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/0.490972222222222.Pdf to batch_4_diff_staging/pdf_files/0.490972222222222.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amanda M Body-ICMProviderAgreement_198427.Pdf to batch_4_diff_staging/pdf_files/-Amanda M Body-ICMProviderAgreement_198427.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Charles A Chrystal - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Charles A Chrystal - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Sunnyside Medical PC- Retraction of Agreement .Pdf to batch_4_diff_staging/pdf_files/RE Sunnyside Medical PC- Retraction of Agreement .Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Chiropractic Center Inc.-ICMProviderAgreement_156198_1.Pdf to batch_4_diff_staging/pdf_files/-Ashland Chiropractic Center Inc.-ICMProviderAgreement_156198_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aquatic Rehabilitation Center, Inc.-ICMProviderAgreementAmendment_72380.Pdf to batch_4_diff_staging/pdf_files/-Aquatic Rehabilitation Center, Inc.-ICMProviderAgreementAmendment_72380.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Notice to Amendx.Pdf to batch_4_diff_staging/pdf_files/Notice to Amendx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RZakariaPhysicianPLLC.mp.2010.1.26.Pdf to batch_4_diff_staging/pdf_files/RZakariaPhysicianPLLC.mp.2010.1.26.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/County of Columbia (Pine Haven Home) - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/County of Columbia (Pine Haven Home) - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/GI Pathololgy, PLLCNotice 11.17.14x.Pdf to batch_4_diff_staging/pdf_files/GI Pathololgy, PLLCNotice 11.17.14x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A. Nasir SYED, MD-ICMProviderAgreementAmendment_142445.Pdf to batch_4_diff_staging/pdf_files/-A. Nasir SYED, MD-ICMProviderAgreementAmendment_142445.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/All Women’s Medical OBS PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/All Women’s Medical OBS PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accucare Home Medical Equipment Inc.-ICMProviderAgreement_154381.Pdf to batch_4_diff_staging/pdf_files/-Accucare Home Medical Equipment Inc.-ICMProviderAgreement_154381.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AmsterdamNursingHomeCorporation1992.cb.4.23.21x.Pdf to batch_4_diff_staging/pdf_files/AmsterdamNursingHomeCorporation1992.cb.4.23.21x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Home Towne Pharmacy, Inc.-ICMProviderAgreement_156199.Pdf to batch_4_diff_staging/pdf_files/-Ashland Home Towne Pharmacy, Inc.-ICMProviderAgreement_156199.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Batesville HMA Medical Group-ICMProviderAgreement_223023.Pdf to batch_4_diff_staging/pdf_files/-Batesville HMA Medical Group-ICMProviderAgreement_223023.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/M&LMedicalServicesPC.ca.04.16.10.Pdf to batch_4_diff_staging/pdf_files/M&LMedicalServicesPC.ca.04.16.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adams County Cancer Center-ICMProviderAgreement_154587_1.Pdf to batch_4_diff_staging/pdf_files/-Adams County Cancer Center-ICMProviderAgreement_154587_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Absolute Health, Inc.-ICMProviderAgreement_218888.Pdf to batch_4_diff_staging/pdf_files/-Absolute Health, Inc.-ICMProviderAgreement_218888.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Moved processed/Quest Diagnostics Incorporated - Amendment Provider Signed(1).Pdf to batch_4_diff_staging/pdf_files/Quest Diagnostics Incorporated - Amendment Provider Signed(1).Pdf\n",
|
||
"Failed to move processed/-Anesthesia for Children, Inc.-ICMProviderAgreement_155999_1.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia for Children, Inc.-ICMProviderAgreement_155999_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Clove Coach LLC - Amendment Provider Signed 6.25.15.Pdf to batch_4_diff_staging/pdf_files/Clove Coach LLC - Amendment Provider Signed 6.25.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Childrens Center Inc - Amendment.Pdf to batch_4_diff_staging/pdf_files/Hillside Childrens Center Inc - Amendment.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Transportation Provider Agreement.MealsonWheelsRocklandCounty.du.04.09.2010.Pdf to batch_4_diff_staging/pdf_files/Fidelis Transportation Provider Agreement.MealsonWheelsRocklandCounty.du.04.09.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CSRNC LLC dba Capstone Center for Rehabilitation & Nursing - Agreement (Revised).Pdf to batch_4_diff_staging/pdf_files/CSRNC LLC dba Capstone Center for Rehabilitation & Nursing - Agreement (Revised).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ball Medical Clinic, Inc.-ICMProviderAgreement_154175.Pdf to batch_4_diff_staging/pdf_files/-Ball Medical Clinic, Inc.-ICMProviderAgreement_154175.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/DansvilleInternalMedicine&Cardiology_km_2009.6.26.Pdf to batch_4_diff_staging/pdf_files/DansvilleInternalMedicine&Cardiology_km_2009.6.26.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula County Community Action Agency-ICMProviderAgreement_156204.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula County Community Action Agency-ICMProviderAgreement_156204.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/HepatobiliaryAssociatesofNewYork.mp.2009.06.29.Pdf to batch_4_diff_staging/pdf_files/HepatobiliaryAssociatesofNewYork.mp.2009.06.29.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Anesthesia Associates of Rochester PC..Pdf to batch_4_diff_staging/pdf_files/Anesthesia Associates of Rochester PC..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allergy, Asthma & Respiratory Center-ICMProviderAgreement_155306.Pdf to batch_4_diff_staging/pdf_files/-Allergy, Asthma & Respiratory Center-ICMProviderAgreement_155306.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amserv Healthcare of Ohio-ICMProviderAgreementAmendment_71451_1.Pdf to batch_4_diff_staging/pdf_files/-Amserv Healthcare of Ohio-ICMProviderAgreementAmendment_71451_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Albuquerque Westside, LLC., Bio-Medical Applications of New Mexico, Inc.-ICMProviderAgreement_67446_1.Pdf to batch_4_diff_staging/pdf_files/-Albuquerque Westside, LLC., Bio-Medical Applications of New Mexico, Inc.-ICMProviderAgreement_67446_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Q-CareAffordableMedicalCarePLLC.mp.2009.05.20.Pdf to batch_4_diff_staging/pdf_files/Q-CareAffordableMedicalCarePLLC.mp.2009.05.20.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Queens Consultation Center, L.L.C.ec.BH.03.03.2010.Pdf to batch_4_diff_staging/pdf_files/Queens Consultation Center, L.L.C.ec.BH.03.03.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Beachwood ObGyn, Inc.-ICMProviderAgreement_154398.Pdf to batch_4_diff_staging/pdf_files/-Beachwood ObGyn, Inc.-ICMProviderAgreement_154398.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Balance Sleep Centers of Mississippi Jackson LLC-ICMProviderAgreementAmendment_41891_1.Pdf to batch_4_diff_staging/pdf_files/-Balance Sleep Centers of Mississippi Jackson LLC-ICMProviderAgreementAmendment_41891_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Home Medical Inc-ICMProviderAgreementAmendment_69086.Pdf to batch_4_diff_staging/pdf_files/-Advanced Home Medical Inc-ICMProviderAgreementAmendment_69086.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Avon RH, LLC dba UH Avon Rehabilitation Hospital-ICMProviderAgreement_153901_1.Pdf to batch_4_diff_staging/pdf_files/-Avon RH, LLC dba UH Avon Rehabilitation Hospital-ICMProviderAgreement_153901_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/DJ Orthopedics, LLC Notice 11.17.14x.Pdf to batch_4_diff_staging/pdf_files/DJ Orthopedics, LLC Notice 11.17.14x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PeninsulaHospital_Amendment Rev ContCoverSheet.Pdf to batch_4_diff_staging/pdf_files/PeninsulaHospital_Amendment Rev ContCoverSheet.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Accentcare of NY Notes.Pdf to batch_4_diff_staging/pdf_files/Accentcare of NY Notes.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Citiview Family Medical, PLLC_ec_2009.8.21.Pdf to batch_4_diff_staging/pdf_files/Citiview Family Medical, PLLC_ec_2009.8.21.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TransportationAgreement.AccessTrans.Inc.du.09.10.2010.Pdf to batch_4_diff_staging/pdf_files/TransportationAgreement.AccessTrans.Inc.du.09.10.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/2_22_2023 and 3_2_2023 mid month new agreement.Pdf to batch_4_diff_staging/pdf_files/2_22_2023 and 3_2_2023 mid month new agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Meals on Wheels Association of America - IT Request.Pdf to batch_4_diff_staging/pdf_files/Meals on Wheels Association of America - IT Request.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NewYorkSpine&WellnessCenter_km_2009.03.27.Pdf to batch_4_diff_staging/pdf_files/NewYorkSpine&WellnessCenter_km_2009.03.27.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amara Home Care Services, Inc.-ICMProviderAgreement_155554.Pdf to batch_4_diff_staging/pdf_files/-Amara Home Care Services, Inc.-ICMProviderAgreement_155554.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arthritis & Rheumatism Center, Inc.-ICMProviderAgreementAmendment_72418.Pdf to batch_4_diff_staging/pdf_files/-Arthritis & Rheumatism Center, Inc.-ICMProviderAgreementAmendment_72418.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Health Standard Serv Agreement Template.Pdf to batch_4_diff_staging/pdf_files/Health Standard Serv Agreement Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Seton Health System Inc - Amendment Provider Signed 8.13.12.Pdf to batch_4_diff_staging/pdf_files/Seton Health System Inc - Amendment Provider Signed 8.13.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68603.Pdf to batch_4_diff_staging/pdf_files/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68603.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/Pioneer Home Care Inc -133871817 IT REQUEST 12.15.14.Pdf to batch_4_diff_staging/pdf_files/Pioneer Home Care Inc -133871817 IT REQUEST 12.15.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CMH Services inc dba Cortland regional Home Healthx.Pdf to batch_4_diff_staging/pdf_files/CMH Services inc dba Cortland regional Home Healthx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Pine Plains agreement.Pdf to batch_4_diff_staging/pdf_files/Pine Plains agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Shifa Medical PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Shifa Medical PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Ayman Z Matta MD PC - Agreement Provider Signed 2.1.15.Pdf to batch_4_diff_staging/pdf_files/Ayman Z Matta MD PC - Agreement Provider Signed 2.1.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Crescent Medical Care, P.C_ec_2009.8.21.Pdf to batch_4_diff_staging/pdf_files/Crescent Medical Care, P.C_ec_2009.8.21.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hamilton Madison House Inc - Amendment Provider Signed 9.10.15.Pdf to batch_4_diff_staging/pdf_files/Hamilton Madison House Inc - Amendment Provider Signed 9.10.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CDPAS - VIP Health Care 2.23.2015.Pdf to batch_4_diff_staging/pdf_files/CDPAS - VIP Health Care 2.23.2015.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-Acclaim Home Health Services, Inc.-ICMProviderAgreementAmendment_68594.Pdf to batch_4_diff_staging/pdf_files/-Acclaim Home Health Services, Inc.-ICMProviderAgreementAmendment_68594.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Jamaica Hospital Medical Center_Amendment Rev ContCoverSheet.Pdf to batch_4_diff_staging/pdf_files/Jamaica Hospital Medical Center_Amendment Rev ContCoverSheet.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashis K Rakhit, MD Inc-ICMProviderAgreement_156197.Pdf to batch_4_diff_staging/pdf_files/-Ashis K Rakhit, MD Inc-ICMProviderAgreement_156197.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bairanje Navak OD-ICMProviderAgreement_159078.Pdf to batch_4_diff_staging/pdf_files/-Bairanje Navak OD-ICMProviderAgreement_159078.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Susan E San Filippo - Agreement Provider Signed .Pdf to batch_4_diff_staging/pdf_files/Susan E San Filippo - Agreement Provider Signed .Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Shirley P.Webbe, D.O. - Agreement Template.Pdf to batch_4_diff_staging/pdf_files/Shirley P.Webbe, D.O. - Agreement Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Availity-ICMProviderAgreement_96493.Pdf to batch_4_diff_staging/pdf_files/-Availity-ICMProviderAgreement_96493.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anthony P Bertin, DO-ICMProviderAgreement_156021_1.Pdf to batch_4_diff_staging/pdf_files/-Anthony P Bertin, DO-ICMProviderAgreement_156021_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/R & K Med Solutions Inc - Agreement 3.2.23x.Pdf to batch_4_diff_staging/pdf_files/R & K Med Solutions Inc - Agreement 3.2.23x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/EBI, LP Notice 11.17.14x.Pdf to batch_4_diff_staging/pdf_files/EBI, LP Notice 11.17.14x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Contracts for approval - Non Cred.Pdf to batch_4_diff_staging/pdf_files/RE Contracts for approval - Non Cred.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/The Children’s Home of Jefferson County - Amendment Provider Signed.Pdf to batch_4_diff_staging/pdf_files/The Children’s Home of Jefferson County - Amendment Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/IT Req Community Health Aide Services dba Community Home Health Care.Pdf to batch_4_diff_staging/pdf_files/IT Req Community Health Aide Services dba Community Home Health Care.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Childrens Center Inc - Amendment 1.1.19.Pdf to batch_4_diff_staging/pdf_files/Hillside Childrens Center Inc - Amendment 1.1.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SurenderGorukantiMD - Contract Template.Pdf to batch_4_diff_staging/pdf_files/SurenderGorukantiMD - Contract Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/LJParsley contract.Pdf to batch_4_diff_staging/pdf_files/LJParsley contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Autumn Keller, Dc-ICMProviderAgreement_153896.Pdf to batch_4_diff_staging/pdf_files/-Autumn Keller, Dc-ICMProviderAgreement_153896.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/North Shore - Long Island Jewish Health System - Listing of all TINS.Pdf to batch_4_diff_staging/pdf_files/North Shore - Long Island Jewish Health System - Listing of all TINS.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Ridgewood Med–Peds LLP DBA Ridgewood Med–Peds - Agreement.Pdf to batch_4_diff_staging/pdf_files/Ridgewood Med–Peds LLP DBA Ridgewood Med–Peds - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AdirondackEnrichmentPLLC.CC.07.20.09.Pdf to batch_4_diff_staging/pdf_files/AdirondackEnrichmentPLLC.CC.07.20.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehab at Allegany LLC.Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehab at Allegany LLC.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Therapy in Motion_PT & Rehab Services, P.C.ec.04.15.2009.Pdf to batch_4_diff_staging/pdf_files/Therapy in Motion_PT & Rehab Services, P.C.ec.04.15.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/JunctionBlvdPediatricsAssociates.mp.2009.05.13.Pdf to batch_4_diff_staging/pdf_files/JunctionBlvdPediatricsAssociates.mp.2009.05.13.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ValleyCareInc.cc.03.26.09.Pdf to batch_4_diff_staging/pdf_files/ValleyCareInc.cc.03.26.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bellevue Professional Services, Inc.-ICMProviderAgreement_154418.Pdf to batch_4_diff_staging/pdf_files/-Bellevue Professional Services, Inc.-ICMProviderAgreement_154418.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Absolute Freedom Transport Services, LLC.-ICMProviderAgreementAmendment_68106.Pdf to batch_4_diff_staging/pdf_files/-Absolute Freedom Transport Services, LLC.-ICMProviderAgreementAmendment_68106.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Active Infusion-ICMProviderAgreement_154581.Pdf to batch_4_diff_staging/pdf_files/-Active Infusion-ICMProviderAgreement_154581.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/East Coast Orthotic & Prosthetic Companyx.Pdf to batch_4_diff_staging/pdf_files/East Coast Orthotic & Prosthetic Companyx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Agee Chiropractic Clinic-ICMProviderAgreement_154856.Pdf to batch_4_diff_staging/pdf_files/-Agee Chiropractic Clinic-ICMProviderAgreement_154856.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Long Island Magnetic Resonance Imaging PC - Amendment Provider Signed 6.15.12.Pdf to batch_4_diff_staging/pdf_files/Long Island Magnetic Resonance Imaging PC - Amendment Provider Signed 6.15.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Town & Villiage Pediatricx, LLC. jt. 04.15.2009.Pdf to batch_4_diff_staging/pdf_files/Town & Villiage Pediatricx, LLC. jt. 04.15.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Transportation Provider Agreement - Tony Taxi - Contract Template.Pdf to batch_4_diff_staging/pdf_files/Fidelis Transportation Provider Agreement - Tony Taxi - Contract Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abdul M Orra DO-ICMProviderAgreement_154345.Pdf to batch_4_diff_staging/pdf_files/-Abdul M Orra DO-ICMProviderAgreement_154345.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Kingston NH Operation, LLC dba Ten Broeck Center for Rehab and Nursing - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Kingston NH Operation, LLC dba Ten Broeck Center for Rehab and Nursing - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/County of Columbia (Pine Haven Home) - Agreement.Pdf to batch_4_diff_staging/pdf_files/County of Columbia (Pine Haven Home) - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation Contract Cover Letter.EmasAmbulette.du.08.05.2010.Pdf to batch_4_diff_staging/pdf_files/Transportation Contract Cover Letter.EmasAmbulette.du.08.05.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adventist Midwest Health-ICMProviderAgreement_117253.Pdf to batch_4_diff_staging/pdf_files/-Adventist Midwest Health-ICMProviderAgreement_117253.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract 092909.Pdf to batch_4_diff_staging/pdf_files/Contract 092909.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AS Neurology PC - Amendment Provider Signed 3.15.15.Pdf to batch_4_diff_staging/pdf_files/AS Neurology PC - Amendment Provider Signed 3.15.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Home Health Pavilion Incx.Pdf to batch_4_diff_staging/pdf_files/Home Health Pavilion Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Afsheen Siddique MD-ICMProviderAgreement_96769.Pdf to batch_4_diff_staging/pdf_files/-Afsheen Siddique MD-ICMProviderAgreement_96769.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Health Standard Serv Agreement2.Pdf to batch_4_diff_staging/pdf_files/Health Standard Serv Agreement2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CNY Asthma & Allergy Consultants.Pdf to batch_4_diff_staging/pdf_files/CNY Asthma & Allergy Consultants.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AHJung & CSLee Medical Assoc., P.C.ec.09.25.2009.Pdf to batch_4_diff_staging/pdf_files/AHJung & CSLee Medical Assoc., P.C.ec.09.25.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation.AppleHomeHealthLTD.dbaMediTrans.du.06.30.2010.Pdf to batch_4_diff_staging/pdf_files/Transportation.AppleHomeHealthLTD.dbaMediTrans.du.06.30.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-B. Ramachandron Nair, MD-ICMProviderAgreement_102240.Pdf to batch_4_diff_staging/pdf_files/-B. Ramachandron Nair, MD-ICMProviderAgreement_102240.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services All LOB FFS 2.23.10.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services All LOB FFS 2.23.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anneline Kingsley MD PA-ICMProviderAgreement_214278.Pdf to batch_4_diff_staging/pdf_files/-Anneline Kingsley MD PA-ICMProviderAgreement_214278.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Andrew Wherley, MD-ICMProviderAgreement_155801_1.Pdf to batch_4_diff_staging/pdf_files/-Andrew Wherley, MD-ICMProviderAgreement_155801_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barrett Pain Associates-ICMProviderAgreement_154190.Pdf to batch_4_diff_staging/pdf_files/-Barrett Pain Associates-ICMProviderAgreement_154190.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Advantage Physical Therapy PC - Agreement Template.Pdf to batch_4_diff_staging/pdf_files/Advantage Physical Therapy PC - Agreement Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula County Community Action Agency-ICMProviderAgreementAmendment_72870.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula County Community Action Agency-ICMProviderAgreementAmendment_72870.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AmMed Direct, LLC-ICMProviderAgreement_155548.Pdf to batch_4_diff_staging/pdf_files/-AmMed Direct, LLC-ICMProviderAgreement_155548.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/A Medical Supply Incx.Pdf to batch_4_diff_staging/pdf_files/A Medical Supply Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Little Neck Internal Medicine, P.C.ec.01.04.2010.Pdf to batch_4_diff_staging/pdf_files/Little Neck Internal Medicine, P.C.ec.01.04.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Albuquerque Westside, LLC., Bio-Medical Applications of New Mexico, Inc.-ICMProviderAgreement_67446.Pdf to batch_4_diff_staging/pdf_files/-Albuquerque Westside, LLC., Bio-Medical Applications of New Mexico, Inc.-ICMProviderAgreement_67446.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CRR - Amandeep Pal, MD - 2015x.Pdf to batch_4_diff_staging/pdf_files/CRR - Amandeep Pal, MD - 2015x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Access Community Health Network-ICMProviderAgreement_216543.Pdf to batch_4_diff_staging/pdf_files/-Access Community Health Network-ICMProviderAgreement_216543.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Russell M Scimeca - Amendment Provider Signed 8.1.14.Pdf to batch_4_diff_staging/pdf_files/Russell M Scimeca - Amendment Provider Signed 8.1.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Asaf Darr, MD-ICMProviderAgreement_156193.Pdf to batch_4_diff_staging/pdf_files/-Asaf Darr, MD-ICMProviderAgreement_156193.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashis K Rakhit, MD Inc-ICMProviderAgreementAmendment_72858.Pdf to batch_4_diff_staging/pdf_files/-Ashis K Rakhit, MD Inc-ICMProviderAgreementAmendment_72858.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adam Flynn-ICMProviderAgreement_114744.Pdf to batch_4_diff_staging/pdf_files/-Adam Flynn-ICMProviderAgreement_114744.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners Evansville, LLC-ICMProviderAgreement_303893.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners Evansville, LLC-ICMProviderAgreement_303893.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allied Chiropractic, LLC-ICMProviderAgreement_155318.Pdf to batch_4_diff_staging/pdf_files/-Allied Chiropractic, LLC-ICMProviderAgreement_155318.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alliance Healthcare Braeview, Inc.-ICMProviderAgreement_155310.Pdf to batch_4_diff_staging/pdf_files/-Alliance Healthcare Braeview, Inc.-ICMProviderAgreement_155310.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Community Health Resources Inc.-ICMProviderAgreementAmendment_70010.Pdf to batch_4_diff_staging/pdf_files/-Akron Community Health Resources Inc.-ICMProviderAgreementAmendment_70010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Shakhmurov Counseling,Inc.ec.04.29.2010.Pdf to batch_4_diff_staging/pdf_files/Shakhmurov Counseling,Inc.ec.04.29.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Boston Children’s Health Physicians LLP - Amendment Provider Signed 1.1.17.Pdf to batch_4_diff_staging/pdf_files/Boston Children’s Health Physicians LLP - Amendment Provider Signed 1.1.17.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/FingerLakesBone&JointCenterLLP_rev_2009.11.23doc.Pdf to batch_4_diff_staging/pdf_files/FingerLakesBone&JointCenterLLP_rev_2009.11.23doc.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Mulvaney new contract.Pdf to batch_4_diff_staging/pdf_files/Mulvaney new contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-BayCare Health System-ICMProviderAgreement_214685_1.Pdf to batch_4_diff_staging/pdf_files/-BayCare Health System-ICMProviderAgreement_214685_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Empire City Laboratories, Inc. Notice 11.17.14x.Pdf to batch_4_diff_staging/pdf_files/Empire City Laboratories, Inc. Notice 11.17.14x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/East Post Road Physician Services PC - Agreement Provider Signed 8.15.19.Pdf to batch_4_diff_staging/pdf_files/East Post Road Physician Services PC - Agreement Provider Signed 8.15.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Redmoon Caregivers - Letter.Pdf to batch_4_diff_staging/pdf_files/Redmoon Caregivers - Letter.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Elaine Koeppel - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Elaine Koeppel - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Abed A Jandali - Agreement.Pdf to batch_4_diff_staging/pdf_files/Abed A Jandali - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-All American Medical Supplies, LLC-ICMProviderAgreementAmendment_70484.Pdf to batch_4_diff_staging/pdf_files/-All American Medical Supplies, LLC-ICMProviderAgreementAmendment_70484.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/-Advanced Recovery Concepts LLC-ICMProviderAgreement_154834.Pdf to batch_4_diff_staging/pdf_files/-Advanced Recovery Concepts LLC-ICMProviderAgreement_154834.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Eastern Comprehensive Medical Services PC - (Revised) Amendment 2.1.15.Pdf to batch_4_diff_staging/pdf_files/Eastern Comprehensive Medical Services PC - (Revised) Amendment 2.1.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Batesville HMA Medical Group-ICMProviderAgreement_223023_3.Pdf to batch_4_diff_staging/pdf_files/-Batesville HMA Medical Group-ICMProviderAgreement_223023_3.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Termed Wage Parity- Del's Comprehensive Health Care Registry Agency.Pdf to batch_4_diff_staging/pdf_files/1.Termed Wage Parity- Del's Comprehensive Health Care Registry Agency.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Shaikh M. Ahmed MD.Pdf to batch_4_diff_staging/pdf_files/Shaikh M. Ahmed MD.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Batesville HMA Medical Group-ICMProviderAgreement_223023_1.Pdf to batch_4_diff_staging/pdf_files/-Batesville HMA Medical Group-ICMProviderAgreement_223023_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis NYPH Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis NYPH Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/Family Medicine Associates.ec.12.23.2009.Pdf to batch_4_diff_staging/pdf_files/Family Medicine Associates.ec.12.23.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Provr Non Renewal Letter- PCA Notification of non-ex 05.26.15.Pdf to batch_4_diff_staging/pdf_files/Provr Non Renewal Letter- PCA Notification of non-ex 05.26.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Wise Woman OBGYN_km_2009.11.02.Pdf to batch_4_diff_staging/pdf_files/Wise Woman OBGYN_km_2009.11.02.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Home Health Care, Inc.-ICMProviderAgreement_155764_1.Pdf to batch_4_diff_staging/pdf_files/-American Home Health Care, Inc.-ICMProviderAgreement_155764_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adie Tamboli, MD-ICMProviderAgreement_154596_1.Pdf to batch_4_diff_staging/pdf_files/-Adie Tamboli, MD-ICMProviderAgreement_154596_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Health-ICMProviderAgreement_154620.Pdf to batch_4_diff_staging/pdf_files/-Advanced Health-ICMProviderAgreement_154620.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CollegeStreetOrthopaedics_km_2010.01.14.Pdf to batch_4_diff_staging/pdf_files/CollegeStreetOrthopaedics_km_2010.01.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bayfront HMA Convenient Care LLC-ICMProviderAgreement_195418_1.Pdf to batch_4_diff_staging/pdf_files/-Bayfront HMA Convenient Care LLC-ICMProviderAgreement_195418_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_304125.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_304125.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A Seenam LEE-ICMProviderAgreementAmendment_68070.Pdf to batch_4_diff_staging/pdf_files/-A Seenam LEE-ICMProviderAgreementAmendment_68070.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Ancillary All LOB (10.2009).Pdf to batch_4_diff_staging/pdf_files/Standard Ancillary All LOB (10.2009).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Salzberg contract.Pdf to batch_4_diff_staging/pdf_files/Salzberg contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/UniversityPlazaPedicatricsLLP.ca.04.16.10.Pdf to batch_4_diff_staging/pdf_files/UniversityPlazaPedicatricsLLP.ca.04.16.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Group contract 111008.Pdf to batch_4_diff_staging/pdf_files/Group contract 111008.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Vicki Wlock Women’s Health Nurse Practitioner PC - Agreement.Pdf to batch_4_diff_staging/pdf_files/Vicki Wlock Women’s Health Nurse Practitioner PC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Ficte Endl & Elmer Eyecare jt 3.29.2010.Pdf to batch_4_diff_staging/pdf_files/Ficte Endl & Elmer Eyecare jt 3.29.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alliance Healthcare Braeview, Inc.-ICMProviderAgreementAmendment_70513.Pdf to batch_4_diff_staging/pdf_files/-Alliance Healthcare Braeview, Inc.-ICMProviderAgreementAmendment_70513.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AMIKids Baton Rouge-ICMProviderAgreement_216703_1.Pdf to batch_4_diff_staging/pdf_files/-AMIKids Baton Rouge-ICMProviderAgreement_216703_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Long Island Medical Diagnostic Imaging PC - Amendment Provider Signed 8.1.12.Pdf to batch_4_diff_staging/pdf_files/Long Island Medical Diagnostic Imaging PC - Amendment Provider Signed 8.1.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Central New York PET LLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Central New York PET LLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Amendment(Electronic)EmasAmbuletteInc.du.08.05.2010.Pdf to batch_4_diff_staging/pdf_files/Amendment(Electronic)EmasAmbuletteInc.du.08.05.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Via Christi Health, Inc.-ICMProviderAgreement_303997.Pdf to batch_4_diff_staging/pdf_files/-Ascension Via Christi Health, Inc.-ICMProviderAgreement_303997.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/dba Renaissance Home Health Care - Amendment (Increase Notice) 1.1.22 (CDPAS).Pdf to batch_4_diff_staging/pdf_files/dba Renaissance Home Health Care - Amendment (Increase Notice) 1.1.22 (CDPAS).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Moved processed/Quest Diagnostics Incorporated - Amendment Provider Signed(3).Pdf to batch_4_diff_staging/pdf_files/Quest Diagnostics Incorporated - Amendment Provider Signed(3).Pdf\n",
|
||
"Failed to move processed/Brooklyn Eye Surgery Center - Amb surge.Pdf to batch_4_diff_staging/pdf_files/Brooklyn Eye Surgery Center - Amb surge.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/dba Renaissance Home Health Care - Amendment (Increase Notice) 1.1.21 (CDPAS).Pdf to batch_4_diff_staging/pdf_files/dba Renaissance Home Health Care - Amendment (Increase Notice) 1.1.21 (CDPAS).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alta Care Group Inc-ICMProviderAgreement_155330_1.Pdf to batch_4_diff_staging/pdf_files/-Alta Care Group Inc-ICMProviderAgreement_155330_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arriva Medical, LLC-ICMProviderAgreementAmendment_41716_1.Pdf to batch_4_diff_staging/pdf_files/-Arriva Medical, LLC-ICMProviderAgreementAmendment_41716_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation.EmasAmbuletteInc.du.06.15.2010.Pdf to batch_4_diff_staging/pdf_files/Transportation.EmasAmbuletteInc.du.06.15.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/updated contract 070808.Pdf to batch_4_diff_staging/pdf_files/updated contract 070808.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_2.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A New Direction for Counseling LLC-ICMProviderAgreement_220069_1.Pdf to batch_4_diff_staging/pdf_files/-A New Direction for Counseling LLC-ICMProviderAgreement_220069_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Africentric Personal Development Shop, Inc.-ICMProviderAgreement_154851.Pdf to batch_4_diff_staging/pdf_files/-Africentric Personal Development Shop, Inc.-ICMProviderAgreement_154851.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/dba O’Connor Family Therapy - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/dba O’Connor Family Therapy - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula County Medical Center-ICMProviderAgreement_156209.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula County Medical Center-ICMProviderAgreement_156209.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Sepulveda contract.Pdf to batch_4_diff_staging/pdf_files/Sepulveda contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Managment Health Partners Tennessee-ICMProviderAgreement_114656_1.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Managment Health Partners Tennessee-ICMProviderAgreement_114656_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Beau G. Bortel, DPM-ICMProviderAgreement_154402_1.Pdf to batch_4_diff_staging/pdf_files/-Beau G. Bortel, DPM-ICMProviderAgreement_154402_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AGM Physical Therapy-ICMProviderAgreement_154110_1.Pdf to batch_4_diff_staging/pdf_files/-AGM Physical Therapy-ICMProviderAgreement_154110_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alochol and Drug Freedom Center of Knox County dba Freedom Center-ICMProviderAgreement_155322_1.Pdf to batch_4_diff_staging/pdf_files/-Alochol and Drug Freedom Center of Knox County dba Freedom Center-ICMProviderAgreement_155322_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Agate Resources-ICMProviderAgreement_96522.Pdf to batch_4_diff_staging/pdf_files/-Agate Resources-ICMProviderAgreement_96522.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alexandria Gastrointestinal Specialists LLC-ICMProviderAgreement_107428.Pdf to batch_4_diff_staging/pdf_files/-Alexandria Gastrointestinal Specialists LLC-ICMProviderAgreement_107428.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Absolute Nursing Care-ICMProviderAgreementAmendment_68103.Pdf to batch_4_diff_staging/pdf_files/-Absolute Nursing Care-ICMProviderAgreementAmendment_68103.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/LasikProvisionPC_km_2009.06.05.Pdf to batch_4_diff_staging/pdf_files/LasikProvisionPC_km_2009.06.05.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/The Brooklyn Hospital Center - Rate change 3.15.13 - 12.31.13.Pdf to batch_4_diff_staging/pdf_files/The Brooklyn Hospital Center - Rate change 3.15.13 - 12.31.13.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-American Medical Equipment-ICMProviderAgreement_114751.Pdf to batch_4_diff_staging/pdf_files/-American Medical Equipment-ICMProviderAgreement_114751.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Andrea Lamphiear-ICMProviderAgreement_114755.Pdf to batch_4_diff_staging/pdf_files/-Andrea Lamphiear-ICMProviderAgreement_114755.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement- Upstate.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement- Upstate.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adventist Midwest Health-ICMProviderAgreement_117253_2.Pdf to batch_4_diff_staging/pdf_files/-Adventist Midwest Health-ICMProviderAgreement_117253_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/BainbridgeFamilyMedicalCarePC.ca.04.16.10.Pdf to batch_4_diff_staging/pdf_files/BainbridgeFamilyMedicalCarePC.ca.04.16.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associates in Orthopaedics Inc-ICMProviderAgreement_156227.Pdf to batch_4_diff_staging/pdf_files/-Associates in Orthopaedics Inc-ICMProviderAgreement_156227.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Avera Health-ICMProviderAgreement_67416_3.Pdf to batch_4_diff_staging/pdf_files/-Avera Health-ICMProviderAgreement_67416_3.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Churchville Chili Family Medicine - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Churchville Chili Family Medicine - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adventist Midwest Health-ICMProviderAgreement_103308_3.Pdf to batch_4_diff_staging/pdf_files/-Adventist Midwest Health-ICMProviderAgreement_103308_3.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Atlas Rehab & Wellness Center, LLC.-ICMProviderAgreementAmendment_67594.Pdf to batch_4_diff_staging/pdf_files/-Atlas Rehab & Wellness Center, LLC.-ICMProviderAgreementAmendment_67594.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Preferred Home Care of NY - Amendment Provider Signed 5.9.12.Pdf to batch_4_diff_staging/pdf_files/Preferred Home Care of NY - Amendment Provider Signed 5.9.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bambini contract.Pdf to batch_4_diff_staging/pdf_files/Bambini contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/DeMayo Chiropractic - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/DeMayo Chiropractic - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Auglaize County Health Department-ICMProviderAgreement_153876.Pdf to batch_4_diff_staging/pdf_files/-Auglaize County Health Department-ICMProviderAgreement_153876.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Re Fidelis Care Agreement O'Connor Medical PLLC.Pdf to batch_4_diff_staging/pdf_files/Re Fidelis Care Agreement O'Connor Medical PLLC.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abilikids LLC-ICMProviderAgreement_154349.Pdf to batch_4_diff_staging/pdf_files/-Abilikids LLC-ICMProviderAgreement_154349.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arlington Family Practice-ICMProviderAgreementAmendment_72412.Pdf to batch_4_diff_staging/pdf_files/-Arlington Family Practice-ICMProviderAgreementAmendment_72412.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Behavioral Connections of Wood County, Inc.-ICMProviderAgreement_220751.Pdf to batch_4_diff_staging/pdf_files/-Behavioral Connections of Wood County, Inc.-ICMProviderAgreement_220751.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Allegheny Regional Bone and Joint Surgery PC - Amendment Provider Signed 11.13.14.Pdf to batch_4_diff_staging/pdf_files/Allegheny Regional Bone and Joint Surgery PC - Amendment Provider Signed 11.13.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Agreement - Jill Connors Letizia Mental Health Counseling - 872673799.Pdf to batch_4_diff_staging/pdf_files/RE Agreement - Jill Connors Letizia Mental Health Counseling - 872673799.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Carmel Richmond Healthcare and Rehabilitation Center - Amendment Provider Signed 6.27.14.Pdf to batch_4_diff_staging/pdf_files/Carmel Richmond Healthcare and Rehabilitation Center - Amendment Provider Signed 6.27.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amserv Healthcare of Ohio-ICMProviderAgreement_155783.Pdf to batch_4_diff_staging/pdf_files/-Amserv Healthcare of Ohio-ICMProviderAgreement_155783.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract_Mgmt - Shortcut.Pdf to batch_4_diff_staging/pdf_files/Contract_Mgmt - Shortcut.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Charles Cole Memorial Hospital dba Champion Orthopedics - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Charles Cole Memorial Hospital dba Champion Orthopedics - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ability Rehab-ICMProviderAgreement_154352.Pdf to batch_4_diff_staging/pdf_files/-Ability Rehab-ICMProviderAgreement_154352.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Atul Goswami MD-ICMProviderAgreementAmendment_67602.Pdf to batch_4_diff_staging/pdf_files/-Atul Goswami MD-ICMProviderAgreementAmendment_67602.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Batts Family Practitioners, LLC-ICMProviderAgreement_108207.Pdf to batch_4_diff_staging/pdf_files/-Batts Family Practitioners, LLC-ICMProviderAgreement_108207.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/Aliz Therapy SLP PC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Aliz Therapy SLP PC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Medi-Fair Incx.Pdf to batch_4_diff_staging/pdf_files/Medi-Fair Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CIPA AMD Repl Page 4.01.24.11.Pdf to batch_4_diff_staging/pdf_files/CIPA AMD Repl Page 4.01.24.11.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arthur L Hughes MD LLC-ICMProviderAgreement_156187_1.Pdf to batch_4_diff_staging/pdf_files/-Arthur L Hughes MD LLC-ICMProviderAgreement_156187_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/East Tremont Medical, P.C.ec.07.27.2009.Pdf to batch_4_diff_staging/pdf_files/East Tremont Medical, P.C.ec.07.27.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anne Grady Day Program-ICMProviderAgreement_156012.Pdf to batch_4_diff_staging/pdf_files/-Anne Grady Day Program-ICMProviderAgreement_156012.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Lake Shore Behavioral Health Inc - Business Associate Agreement Provider Signed (Health Home) 1.1.15.Pdf to batch_4_diff_staging/pdf_files/Lake Shore Behavioral Health Inc - Business Associate Agreement Provider Signed (Health Home) 1.1.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/OKSA Medical,P.C.ec.04.27.2009.Pdf to batch_4_diff_staging/pdf_files/OKSA Medical,P.C.ec.04.27.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Premier Medical Healthcare, P.C_ec_2009.8.21.Pdf to batch_4_diff_staging/pdf_files/Premier Medical Healthcare, P.C_ec_2009.8.21.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/StandGlendale Pediatrics,P.C.ec.04.02.2009.Pdf to batch_4_diff_staging/pdf_files/StandGlendale Pediatrics,P.C.ec.04.02.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Drug World of Amenia, LLC_W-9.Pdf to batch_4_diff_staging/pdf_files/Drug World of Amenia, LLC_W-9.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_114649.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners Indianapolis, LLC-ICMProviderAgreement_114649.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Volunteer Transportation Center Inc - Amendment- Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Volunteer Transportation Center Inc - Amendment- Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Active Infusion-ICMProviderAgreementAmendment_68618.Pdf to batch_4_diff_staging/pdf_files/-Active Infusion-ICMProviderAgreementAmendment_68618.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/All Women’s Medical OBS PLLC - Agreement.Pdf to batch_4_diff_staging/pdf_files/All Women’s Medical OBS PLLC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Behavior Basics Inc-ICMProviderAgreement_214693.Pdf to batch_4_diff_staging/pdf_files/-Behavior Basics Inc-ICMProviderAgreement_214693.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners JACKSONVILLE, LLC-ICMProviderAgreement_303994.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners JACKSONVILLE, LLC-ICMProviderAgreement_303994.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anderson Hills Eye, Inc.-ICMProviderAgreement_155792_1.Pdf to batch_4_diff_staging/pdf_files/-Anderson Hills Eye, Inc.-ICMProviderAgreement_155792_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Jamaica Physical Therapy,P.C.ec.04.15.2009.Pdf to batch_4_diff_staging/pdf_files/Jamaica Physical Therapy,P.C.ec.04.15.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Chardon Chiropractic, Inc.-ICMProviderAgreement_154607_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Chardon Chiropractic, Inc.-ICMProviderAgreement_154607_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Complete Medical Care Services of NY PC dba Complete Care - Amendment Provider Signed 12.23.13.Pdf to batch_4_diff_staging/pdf_files/Complete Medical Care Services of NY PC dba Complete Care - Amendment Provider Signed 12.23.13.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AustinPhysicalTherapy.ca.3.10.10.Pdf to batch_4_diff_staging/pdf_files/AustinPhysicalTherapy.ca.3.10.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.CALevettPhD.du.6.23.09.Pdf to batch_4_diff_staging/pdf_files/SBH.CALevettPhD.du.6.23.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adrianus J. De Ruijter-ICMProviderAgreement_213812.Pdf to batch_4_diff_staging/pdf_files/-Adrianus J. De Ruijter-ICMProviderAgreement_213812.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/2010092709502.Pdf to batch_4_diff_staging/pdf_files/2010092709502.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ablecare Medical Inc.-ICMProviderAgreement_154353.Pdf to batch_4_diff_staging/pdf_files/-Ablecare Medical Inc.-ICMProviderAgreement_154353.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/MorganPhysicalTherapy_km_2009.05.29.Pdf to batch_4_diff_staging/pdf_files/MorganPhysicalTherapy_km_2009.05.29.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Borbas Surgical Supply Incx.Pdf to batch_4_diff_staging/pdf_files/Borbas Surgical Supply Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Children's Center Inc - Amendment Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Hillside Children's Center Inc - Amendment Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Family Aides Inc - Amendment Provider Signed 10.1.13.Pdf to batch_4_diff_staging/pdf_files/Family Aides Inc - Amendment Provider Signed 10.1.13.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barbara Ann Morgan-ICMProviderAgreement_261950.Pdf to batch_4_diff_staging/pdf_files/-Barbara Ann Morgan-ICMProviderAgreement_261950.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TierOrthopedicAssociatesPC_km_2010.03.15.Pdf to batch_4_diff_staging/pdf_files/TierOrthopedicAssociatesPC_km_2010.03.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Welcare Drug Store Incx.Pdf to batch_4_diff_staging/pdf_files/Welcare Drug Store Incx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associcates in Orthopedics, Inc-ICMProviderAgreement_156232_1.Pdf to batch_4_diff_staging/pdf_files/-Associcates in Orthopedics, Inc-ICMProviderAgreement_156232_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Radiology CONSULTANTS, Inc.-ICMProviderAgreementAmendment_72864.Pdf to batch_4_diff_staging/pdf_files/-Ashland Radiology CONSULTANTS, Inc.-ICMProviderAgreementAmendment_72864.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ablecare Medical Inc.-ICMProviderAgreementAmendment_68097.Pdf to batch_4_diff_staging/pdf_files/-Ablecare Medical Inc.-ICMProviderAgreementAmendment_68097.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_3.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreement_198049_3.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services 3.9.10.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services 3.9.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Dermatology & Surgery Associates, LLP - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Dermatology & Surgery Associates, LLP - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Regional Pet Scan-ICMProviderAgreement_155070.Pdf to batch_4_diff_staging/pdf_files/-Akron Regional Pet Scan-ICMProviderAgreement_155070.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Vicki Wlock Women’s Health Nurse Practitioner PC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Vicki Wlock Women’s Health Nurse Practitioner PC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Drug World of Amenia, LLC_Coversheet.Pdf to batch_4_diff_staging/pdf_files/Drug World of Amenia, LLC_Coversheet.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RiversideMedicalPC.mp.2009.05.28.Pdf to batch_4_diff_staging/pdf_files/RiversideMedicalPC.mp.2009.05.28.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Chiropractic Center Inc.-ICMProviderAgreement_156198.Pdf to batch_4_diff_staging/pdf_files/-Ashland Chiropractic Center Inc.-ICMProviderAgreement_156198.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Gay Men's Health Crisis Inc - Agreement (REVISED).Pdf to batch_4_diff_staging/pdf_files/Gay Men's Health Crisis Inc - Agreement (REVISED).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/St. Joseph’s Rehabilitation Center Inc. dba St. Joseph’s Addiction Treatment & Recovery Centers 4.11.2024.Pdf to batch_4_diff_staging/pdf_files/St. Joseph’s Rehabilitation Center Inc. dba St. Joseph’s Addiction Treatment & Recovery Centers 4.11.2024.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Ancillary All LOB (Rev 12.2009).Pdf to batch_4_diff_staging/pdf_files/Standard Ancillary All LOB (Rev 12.2009).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia Associates of Wooster-ICMProviderAgreement_155803_1.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia Associates of Wooster-ICMProviderAgreement_155803_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_99172_1.Pdf to batch_4_diff_staging/pdf_files/-Baptist Hospital of Miami, Inc.-ICMProviderAgreementAmendment_99172_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Amandeep Pal Provider Contract Report 120720.Pdf to batch_4_diff_staging/pdf_files/Amandeep Pal Provider Contract Report 120720.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Health-ICMProviderAgreementAmendment_69080.Pdf to batch_4_diff_staging/pdf_files/-Advanced Health-ICMProviderAgreementAmendment_69080.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Malta Medical Care, PC- agreement_5.13.093.09.Pdf to batch_4_diff_staging/pdf_files/Malta Medical Care, PC- agreement_5.13.093.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anacortes Family Medicine-ICMProviderAgreementAmendment_133828.Pdf to batch_4_diff_staging/pdf_files/-Anacortes Family Medicine-ICMProviderAgreementAmendment_133828.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A New Beginning Counseling Services-ICMProviderAgreement_153837.Pdf to batch_4_diff_staging/pdf_files/-A New Beginning Counseling Services-ICMProviderAgreement_153837.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alway Balazs & Associates, Inc.-ICMProviderAgreement_155546.Pdf to batch_4_diff_staging/pdf_files/-Alway Balazs & Associates, Inc.-ICMProviderAgreement_155546.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Samaritan Village Inc - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Samaritan Village Inc - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation - Contract Template.Pdf to batch_4_diff_staging/pdf_files/Transportation - Contract Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Health Department-ICMProviderAgreementAmendment_70024.Pdf to batch_4_diff_staging/pdf_files/-Akron Health Department-ICMProviderAgreementAmendment_70024.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Cayuga Area Plan Inc permission for direct contracting.Pdf to batch_4_diff_staging/pdf_files/Cayuga Area Plan Inc permission for direct contracting.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/FW {EXT}Fidelis Care Amendment.Pdf to batch_4_diff_staging/pdf_files/FW {EXT}Fidelis Care Amendment.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/D.Sevi,MD.hsa.baw.04.14.2009 - Contract Template.Pdf to batch_4_diff_staging/pdf_files/D.Sevi,MD.hsa.baw.04.14.2009 - Contract Template.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accurate Medical Supply, Inc.-ICMProviderAgreement_154379_1.Pdf to batch_4_diff_staging/pdf_files/-Accurate Medical Supply, Inc.-ICMProviderAgreement_154379_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Technologies, Inc.-ICMProviderAgreement_154838_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Technologies, Inc.-ICMProviderAgreement_154838_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Access Information Management-ICMProviderAgreement_96508.Pdf to batch_4_diff_staging/pdf_files/-Access Information Management-ICMProviderAgreement_96508.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A Plus Home Health Care LLC-ICMProviderAgreement_78452.Pdf to batch_4_diff_staging/pdf_files/-A Plus Home Health Care LLC-ICMProviderAgreement_78452.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/UpperDelawareValleyInfectiousDiseasesPC.ca.03.24.10.Pdf to batch_4_diff_staging/pdf_files/UpperDelawareValleyInfectiousDiseasesPC.ca.03.24.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A Safe Place To Land-ICMProviderAgreement_105877.Pdf to batch_4_diff_staging/pdf_files/-A Safe Place To Land-ICMProviderAgreement_105877.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A. Nasir SYED, MD-ICMProviderAgreementAmendment_142448.Pdf to batch_4_diff_staging/pdf_files/-A. Nasir SYED, MD-ICMProviderAgreementAmendment_142448.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Community Health Resources Inc.-ICMProviderAgreement_155058.Pdf to batch_4_diff_staging/pdf_files/-Akron Community Health Resources Inc.-ICMProviderAgreement_155058.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/New contract.Pdf to batch_4_diff_staging/pdf_files/New contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula County Medical Center-ICMProviderAgreement_220454.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula County Medical Center-ICMProviderAgreement_220454.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Precious Minds Psych Svcs_nn_04.22.10.Pdf to batch_4_diff_staging/pdf_files/Precious Minds Psych Svcs_nn_04.22.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anderson Hospital-ICMProviderAgreement_140572.Pdf to batch_4_diff_staging/pdf_files/-Anderson Hospital-ICMProviderAgreement_140572.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Olean Radiology Notice_June 2016x.Pdf to batch_4_diff_staging/pdf_files/Olean Radiology Notice_June 2016x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bayshore Couseling Services, Inc.-ICMProviderAgreement_154396.Pdf to batch_4_diff_staging/pdf_files/-Bayshore Couseling Services, Inc.-ICMProviderAgreement_154396.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NYEpilepsyandNeurologyCenter.mp.2010.03.09.Pdf to batch_4_diff_staging/pdf_files/NYEpilepsyandNeurologyCenter.mp.2010.03.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alta Care Group Inc-ICMProviderAgreement_155330.Pdf to batch_4_diff_staging/pdf_files/-Alta Care Group Inc-ICMProviderAgreement_155330.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ChinatownKidneyCare,PLLC.nonCAIPA.baw.03.01.2010.Pdf to batch_4_diff_staging/pdf_files/ChinatownKidneyCare,PLLC.nonCAIPA.baw.03.01.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Medical Supply-ICMProviderAgreementAmendment_69094_1.Pdf to batch_4_diff_staging/pdf_files/-Advanced Medical Supply-ICMProviderAgreementAmendment_69094_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AdirondackTriCounty Nursing and Rehabilitation Center Inc.cc.05.06.09.Pdf to batch_4_diff_staging/pdf_files/AdirondackTriCounty Nursing and Rehabilitation Center Inc.cc.05.06.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ablecare Medical Inc.-ICMProviderAgreement_154353_1.Pdf to batch_4_diff_staging/pdf_files/-Ablecare Medical Inc.-ICMProviderAgreement_154353_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Audio Hearing Aid Service-ICMProviderAgreement_153874_1.Pdf to batch_4_diff_staging/pdf_files/-Audio Hearing Aid Service-ICMProviderAgreement_153874_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/updated Codex.Pdf to batch_4_diff_staging/pdf_files/updated Codex.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation.RicksTaxi.du.01.26.2010.Pdf to batch_4_diff_staging/pdf_files/Transportation.RicksTaxi.du.01.26.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Provider Contracts M - R - Shortcut.Pdf to batch_4_diff_staging/pdf_files/Provider Contracts M - R - Shortcut.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baer & Wilson, LLCRonald Wilson-ICMProviderAgreement_216618.Pdf to batch_4_diff_staging/pdf_files/-Baer & Wilson, LLCRonald Wilson-ICMProviderAgreement_216618.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AHMO LLC-ICMProviderAgreementAmendment_11531.Pdf to batch_4_diff_staging/pdf_files/-AHMO LLC-ICMProviderAgreementAmendment_11531.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/MGZ Health Suppliesx.Pdf to batch_4_diff_staging/pdf_files/MGZ Health Suppliesx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Ulster Radiology Notice_June 2016x.Pdf to batch_4_diff_staging/pdf_files/Ulster Radiology Notice_June 2016x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services All LOB FFS (Rev 12.2009).Pdf to batch_4_diff_staging/pdf_files/Standard Health Services All LOB FFS (Rev 12.2009).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Absolut Center for Nursing and Rehabilitation at Aurora Park LLC..Pdf to batch_4_diff_staging/pdf_files/Absolut Center for Nursing and Rehabilitation at Aurora Park LLC..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arunkumar F Patel, MD-ICMProviderAgreement_220444.Pdf to batch_4_diff_staging/pdf_files/-Arunkumar F Patel, MD-ICMProviderAgreement_220444.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Kidney Care-ICMProviderAgreementAmendment_41686.Pdf to batch_4_diff_staging/pdf_files/-Advanced Kidney Care-ICMProviderAgreementAmendment_41686.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Patrick John McFalls - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Patrick John McFalls - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Children's Center Inc - Amendment.Pdf to batch_4_diff_staging/pdf_files/Hillside Children's Center Inc - Amendment.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Flower City Anesthesia Associates LLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Flower City Anesthesia Associates LLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anderson Physician Alliance-ICMProviderAgreementAmendment_41709_1.Pdf to batch_4_diff_staging/pdf_files/-Anderson Physician Alliance-ICMProviderAgreementAmendment_41709_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.PaigeBlazakLMHC.CASAC.du.9.28.09.Pdf to batch_4_diff_staging/pdf_files/SBH.PaigeBlazakLMHC.CASAC.du.9.28.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arthur H BLOCH, MD-ICMProviderAgreement_216540.Pdf to batch_4_diff_staging/pdf_files/-Arthur H BLOCH, MD-ICMProviderAgreement_216540.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/MedicalServicePractice,PC.hsa.baw.06.24.2009.Pdf to batch_4_diff_staging/pdf_files/MedicalServicePractice,PC.hsa.baw.06.24.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashley Peintner PT-ICMProviderAgreement_114756.Pdf to batch_4_diff_staging/pdf_files/-Ashley Peintner PT-ICMProviderAgreement_114756.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Turek agreement.Pdf to batch_4_diff_staging/pdf_files/Turek agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Avon RH, LLC dba UH Avon Rehabilitation Hospital-ICMProviderAgreement_153901.Pdf to batch_4_diff_staging/pdf_files/-Avon RH, LLC dba UH Avon Rehabilitation Hospital-ICMProviderAgreement_153901.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Nyack Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis Nyack Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Absolute Health, Inc.-ICMProviderAgreement_218888_1.Pdf to batch_4_diff_staging/pdf_files/-Absolute Health, Inc.-ICMProviderAgreement_218888_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.Failed to move processed/-Ashland Mansfield Foot & Ankle Specialists-ICMProviderAgreement_156200.Pdf to batch_4_diff_staging/pdf_files/-Ashland Mansfield Foot & Ankle Specialists-ICMProviderAgreement_156200.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract 042310.Pdf to batch_4_diff_staging/pdf_files/Contract 042310.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barry A. Lampl D.O. Inc.-ICMProviderAgreement_154387.Pdf to batch_4_diff_staging/pdf_files/-Barry A. Lampl D.O. Inc.-ICMProviderAgreement_154387.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/José Balseca dba Attune Chiropractic PLLC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/José Balseca dba Attune Chiropractic PLLC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alway Balazs & Associates, Inc.-ICMProviderAgreementAmendment_70963.Pdf to batch_4_diff_staging/pdf_files/-Alway Balazs & Associates, Inc.-ICMProviderAgreementAmendment_70963.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"\n",
|
||
"Failed to move processed/-Allergy & Asthma Center-ICMProviderAgreement_107447.Pdf to batch_4_diff_staging/pdf_files/-Allergy & Asthma Center-ICMProviderAgreement_107447.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Bernadette Richards dba Sophie’s Health Care Services Inc - Agreement 11.1.12 (CDPAS).Pdf to batch_4_diff_staging/pdf_files/Bernadette Richards dba Sophie’s Health Care Services Inc - Agreement 11.1.12 (CDPAS).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Flushing Pediatrics Medicine, P.C.ec.04.02.2009.Pdf to batch_4_diff_staging/pdf_files/Flushing Pediatrics Medicine, P.C.ec.04.02.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia and Pain CONSULTANTS, PC-ICMProviderAgreement_140201.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia and Pain CONSULTANTS, PC-ICMProviderAgreement_140201.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula Home Health-ICMProviderAgreement_156210.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula Home Health-ICMProviderAgreement_156210.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ansel L. Woldt, Ed.D-ICMProviderAgreement_220436.Pdf to batch_4_diff_staging/pdf_files/-Ansel L. Woldt, Ed.D-ICMProviderAgreement_220436.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Pediatric Neurology, Inc.-ICMProviderAgreement_155065.Pdf to batch_4_diff_staging/pdf_files/-Akron Pediatric Neurology, Inc.-ICMProviderAgreement_155065.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associates in Foot & Ankle Care-ICMProviderAgreementAmendment_72884.Pdf to batch_4_diff_staging/pdf_files/-Associates in Foot & Ankle Care-ICMProviderAgreementAmendment_72884.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fonte Surgical Supply Inc. 4.20.09.Pdf to batch_4_diff_staging/pdf_files/Fonte Surgical Supply Inc. 4.20.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Faruque Ahmed D.O..Pdf to batch_4_diff_staging/pdf_files/Faruque Ahmed D.O..Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abigail Natvig-Heinz-ICMProviderAgreement_114743_1.Pdf to batch_4_diff_staging/pdf_files/-Abigail Natvig-Heinz-ICMProviderAgreement_114743_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hearing & Speech Center of WNY jt 04.13.10.Pdf to batch_4_diff_staging/pdf_files/Hearing & Speech Center of WNY jt 04.13.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.Sr.HopeCounseling.du.1.13.09.Pdf to batch_4_diff_staging/pdf_files/SBH.Sr.HopeCounseling.du.1.13.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/EPP Amendment-Gevans Medical Practice PC.gam.01.27.2021x.Pdf to batch_4_diff_staging/pdf_files/EPP Amendment-Gevans Medical Practice PC.gam.01.27.2021x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Behavioral Healthcare Providers of Central Ohio, Inc.-ICMProviderAgreement_220753.Pdf to batch_4_diff_staging/pdf_files/-Behavioral Healthcare Providers of Central Ohio, Inc.-ICMProviderAgreement_220753.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Methodist Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis Methodist Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Audiology Distribution, LLC dba Hear USA-ICMProviderAgreementAmendment_67605.Pdf to batch_4_diff_staging/pdf_files/-Audiology Distribution, LLC dba Hear USA-ICMProviderAgreementAmendment_67605.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abilikids LLC-ICMProviderAgreement_154349_1.Pdf to batch_4_diff_staging/pdf_files/-Abilikids LLC-ICMProviderAgreement_154349_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE EP QHP Amendment .Pdf to batch_4_diff_staging/pdf_files/RE EP QHP Amendment .Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ability Rehab-ICMProviderAgreement_154352_1.Pdf to batch_4_diff_staging/pdf_files/-Ability Rehab-ICMProviderAgreement_154352_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia Associates of MS, PLLC-ICMProviderAgreementAmendment_41711.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia Associates of MS, PLLC-ICMProviderAgreementAmendment_41711.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Barrett Pain Associates-ICMProviderAgreement_154188_1.Pdf to batch_4_diff_staging/pdf_files/-Barrett Pain Associates-ICMProviderAgreement_154188_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AVENTURA Hospital and Medical Center-ICMProviderAgreement_213797.Pdf to batch_4_diff_staging/pdf_files/-AVENTURA Hospital and Medical Center-ICMProviderAgreement_213797.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Mohan V. Mahadkar, M.D. - Agreement_5.14.09.Pdf to batch_4_diff_staging/pdf_files/Mohan V. Mahadkar, M.D. - Agreement_5.14.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Termed CDPAS - Long Island Center for Independent Living Inc 2.23.2015.Pdf to batch_4_diff_staging/pdf_files/1.Termed CDPAS - Long Island Center for Independent Living Inc 2.23.2015.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Gail Wooding - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Gail Wooding - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Arthritis of Cornwall, PLLC - Agreement.Pdf to batch_4_diff_staging/pdf_files/Arthritis of Cornwall, PLLC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashtabula County Community Action Agency-ICMProviderAgreement_156204_1.Pdf to batch_4_diff_staging/pdf_files/-Ashtabula County Community Action Agency-ICMProviderAgreement_156204_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Associcates in Orthopedics, Inc-ICMProviderAgreementAmendment_72891.Pdf to batch_4_diff_staging/pdf_files/-Associcates in Orthopedics, Inc-ICMProviderAgreementAmendment_72891.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aye M Win MD-ICMProviderAgreement_114758.Pdf to batch_4_diff_staging/pdf_files/-Aye M Win MD-ICMProviderAgreement_114758.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Radiology CONSULTANTS, Inc.-ICMProviderAgreement_156201_1.Pdf to batch_4_diff_staging/pdf_files/-Ashland Radiology CONSULTANTS, Inc.-ICMProviderAgreement_156201_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis Gracie Sq. Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis Gracie Sq. Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Wyoming OBGYN L.L.C.Pdf to batch_4_diff_staging/pdf_files/Wyoming OBGYN L.L.C.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Harlem Valley agreement.Pdf to batch_4_diff_staging/pdf_files/Harlem Valley agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Audiology Distribution, LLC dba Hear USA-ICMProviderAgreement_156368.Pdf to batch_4_diff_staging/pdf_files/-Audiology Distribution, LLC dba Hear USA-ICMProviderAgreement_156368.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Redmoon Caregivers- Amendment(1).Pdf to batch_4_diff_staging/pdf_files/Redmoon Caregivers- Amendment(1).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accident and Injury Pain Center-ICMProviderAgreement_154374.Pdf to batch_4_diff_staging/pdf_files/-Accident and Injury Pain Center-ICMProviderAgreement_154374.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anacortes Family Medicine-ICMProviderAgreementAmendment_133827.Pdf to batch_4_diff_staging/pdf_files/-Anacortes Family Medicine-ICMProviderAgreementAmendment_133827.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Avera Health-ICMProviderAgreement_67416.Pdf to batch_4_diff_staging/pdf_files/-Avera Health-ICMProviderAgreement_67416.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.dbaAuburnPsychiatry.BH.du.4.30.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.dbaAuburnPsychiatry.BH.du.4.30.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Family Institute, Inc.-ICMProviderAgreement_155059.Pdf to batch_4_diff_staging/pdf_files/-Akron Family Institute, Inc.-ICMProviderAgreement_155059.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adult Geriatrics of Wooster-ICMProviderAgreementAmendment_69069.Pdf to batch_4_diff_staging/pdf_files/-Adult Geriatrics of Wooster-ICMProviderAgreementAmendment_69069.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/L. Kan Child Neurology, P.C.ec.04.16.2009.Pdf to batch_4_diff_staging/pdf_files/L. Kan Child Neurology, P.C.ec.04.16.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abilikids LLC-ICMProviderAgreementAmendment_68094.Pdf to batch_4_diff_staging/pdf_files/-Abilikids LLC-ICMProviderAgreementAmendment_68094.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Colonial Transportation of LI Inc - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/Colonial Transportation of LI Inc - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-A Seenam LEE-ICMProviderAgreement_153842_1.Pdf to batch_4_diff_staging/pdf_files/-A Seenam LEE-ICMProviderAgreement_153842_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Craig A Kaiser DPM - Amendment Provider Signed 4.16.15.Pdf to batch_4_diff_staging/pdf_files/Craig A Kaiser DPM - Amendment Provider Signed 4.16.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.CouncilA&SA.LivingstonCnty.du.1.2.09.Pdf to batch_4_diff_staging/pdf_files/SBH.CouncilA&SA.LivingstonCnty.du.1.2.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-B One Counseling Services, Inc-ICMProviderAgreement_216591.Pdf to batch_4_diff_staging/pdf_files/-B One Counseling Services, Inc-ICMProviderAgreement_216591.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Non-Renew- PCA Notification of non-ex 05.26.15.Pdf to batch_4_diff_staging/pdf_files/1.Non-Renew- PCA Notification of non-ex 05.26.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/HSS Ancillary Services, PC_nn_10.30.09.Pdf to batch_4_diff_staging/pdf_files/HSS Ancillary Services, PC_nn_10.30.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia Associates of Northern Ohio-ICMProviderAgreement_155802.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia Associates of Northern Ohio-ICMProviderAgreement_155802.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Batesville HMA Medical Group-ICMProviderAgreement_223023_4.Pdf to batch_4_diff_staging/pdf_files/-Batesville HMA Medical Group-ICMProviderAgreement_223023_4.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Radiology CONSULTANTS, Inc.-ICMProviderAgreement_156201.Pdf to batch_4_diff_staging/pdf_files/-Ashland Radiology CONSULTANTS, Inc.-ICMProviderAgreement_156201.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/DansvilleAnesthesia&PainTreatment_km_FINAL_7.16.09.Pdf to batch_4_diff_staging/pdf_files/DansvilleAnesthesia&PainTreatment_km_FINAL_7.16.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services final 12.16.09.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services final 12.16.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Acclaim Home Health Services, Inc.-ICMProviderAgreement_154376_1.Pdf to batch_4_diff_staging/pdf_files/-Acclaim Home Health Services, Inc.-ICMProviderAgreement_154376_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Transportation Cover Sheet - Amendment 5-2A - Greenwood Lake Taxi and Towncars.Pdf to batch_4_diff_staging/pdf_files/Transportation Cover Sheet - Amendment 5-2A - Greenwood Lake Taxi and Towncars.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/123 Medical Group PC - Agreement Provider Signed.Pdf to batch_4_diff_staging/pdf_files/123 Medical Group PC - Agreement Provider Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Tri-County Family Medicine, Inc. 5.1.09.Pdf to batch_4_diff_staging/pdf_files/Tri-County Family Medicine, Inc. 5.1.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ambrose S Perduk Jr, Dc-ICMProviderAgreement_155556.Pdf to batch_4_diff_staging/pdf_files/-Ambrose S Perduk Jr, Dc-ICMProviderAgreement_155556.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Colonie Senior Service Centers Inc - Site Assessment (Guilderland).Pdf to batch_4_diff_staging/pdf_files/Colonie Senior Service Centers Inc - Site Assessment (Guilderland).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Global Medical Care Associates, PLLC - Agreement_5.14.09.Pdf to batch_4_diff_staging/pdf_files/Global Medical Care Associates, PLLC - Agreement_5.14.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis NYHQMC Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis NYHQMC Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fidelis CHOB Rate Sheets.Pdf to batch_4_diff_staging/pdf_files/Fidelis CHOB Rate Sheets.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.CatherineAGrastaNPPsychPLLC.du.10.13.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.CatherineAGrastaNPPsychPLLC.du.10.13.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Chelsea Pediatrics Nurse Practitioner, P.L.L.C.ec.01.20.2010.Pdf to batch_4_diff_staging/pdf_files/Chelsea Pediatrics Nurse Practitioner, P.L.L.C.ec.01.20.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Hillside Childrens Center Inc - Amendment Proivder Signed 1.1.19.Pdf to batch_4_diff_staging/pdf_files/Hillside Childrens Center Inc - Amendment Proivder Signed 1.1.19.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NorthCountryEmergencyMedicalConsultantsPC_km_2009.11.04.Pdf to batch_4_diff_staging/pdf_files/NorthCountryEmergencyMedicalConsultantsPC_km_2009.11.04.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Contracts for approval - 3 18 2020 Cred required.Pdf to batch_4_diff_staging/pdf_files/RE Contracts for approval - 3 18 2020 Cred required.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anderson Hills Eye, Inc.-ICMProviderAgreementAmendment_71466.Pdf to batch_4_diff_staging/pdf_files/-Anderson Hills Eye, Inc.-ICMProviderAgreementAmendment_71466.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alliance Foot & Ankle Clinic-ICMProviderAgreement_155307_1.Pdf to batch_4_diff_staging/pdf_files/-Alliance Foot & Ankle Clinic-ICMProviderAgreement_155307_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Back in Motion Chiropractic-ICMProviderAgreementAmendment_41887.Pdf to batch_4_diff_staging/pdf_files/-Back in Motion Chiropractic-ICMProviderAgreementAmendment_41887.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/WestsideAudiologyServicesLLC_km_2009.07.02.Pdf to batch_4_diff_staging/pdf_files/WestsideAudiologyServicesLLC_km_2009.07.02.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Medical Care for Womens Health PC - Agreement 02.13.23x.Pdf to batch_4_diff_staging/pdf_files/Medical Care for Womens Health PC - Agreement 02.13.23x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anthony P Bertin, DO-ICMProviderAgreementAmendment_71936.Pdf to batch_4_diff_staging/pdf_files/-Anthony P Bertin, DO-ICMProviderAgreementAmendment_71936.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/ICMProviderAgreement_ICMProviderAgreement_162120_8x.Pdf to batch_4_diff_staging/pdf_files/ICMProviderAgreement_ICMProviderAgreement_162120_8x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arbor Care Centers - Valhaven, LLC-ICMProviderAgreement_67418.Pdf to batch_4_diff_staging/pdf_files/-Arbor Care Centers - Valhaven, LLC-ICMProviderAgreement_67418.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Aeratech Home Medical-ICMProviderAgreement_154846.Pdf to batch_4_diff_staging/pdf_files/-Aeratech Home Medical-ICMProviderAgreement_154846.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Bairanje Navak OD-ICMProviderAgreement_159078_1.Pdf to batch_4_diff_staging/pdf_files/-Bairanje Navak OD-ICMProviderAgreement_159078_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advantage Home Care Inc dba OnPointe AT Home-ICMProviderAgreementAmendment_10295.Pdf to batch_4_diff_staging/pdf_files/-Advantage Home Care Inc dba OnPointe AT Home-ICMProviderAgreementAmendment_10295.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Priority Medical Group.ec.03.16.2009.Pdf to batch_4_diff_staging/pdf_files/Priority Medical Group.ec.03.16.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Behavioral Connections of Wood County, Inc.-ICMProviderAgreement_220751_1.Pdf to batch_4_diff_staging/pdf_files/-Behavioral Connections of Wood County, Inc.-ICMProviderAgreement_220751_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Absolute Nursing Care-ICMProviderAgreement_154362.Pdf to batch_4_diff_staging/pdf_files/-Absolute Nursing Care-ICMProviderAgreement_154362.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH.BabylonCounseling.WellnessServicesPC.du.12.16.09.Pdf to batch_4_diff_staging/pdf_files/SBH.BabylonCounseling.WellnessServicesPC.du.12.16.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Andrew Wherley, MD-ICMProviderAgreement_155801.Pdf to batch_4_diff_staging/pdf_files/-Andrew Wherley, MD-ICMProviderAgreement_155801.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Sequenom Contract Termination and adding as Lab Corporation affilifate_06132019x.Pdf to batch_4_diff_staging/pdf_files/Sequenom Contract Termination and adding as Lab Corporation affilifate_06132019x.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreementAmendment_68108.Pdf to batch_4_diff_staging/pdf_files/-AC HomeNursing dba Primary Nursing Care-ICMProviderAgreementAmendment_68108.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.malka.harris.susswein.lcsw.du.11.7.08.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.malka.harris.susswein.lcsw.du.11.7.08.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Canandaigua Medical Group_jt_rev. 11.30.09.Pdf to batch_4_diff_staging/pdf_files/Canandaigua Medical Group_jt_rev. 11.30.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Faxton-St. Luke’s Healthcare - Amendment Provider Signed 1.1.17 (HBX Ext).Pdf to batch_4_diff_staging/pdf_files/Faxton-St. Luke’s Healthcare - Amendment Provider Signed 1.1.17 (HBX Ext).Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SpecialistsOneDaySurgeryLLC_km_2009.04.30.Pdf to batch_4_diff_staging/pdf_files/SpecialistsOneDaySurgeryLLC_km_2009.04.30.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Amara Home Care Services, Inc.-ICMProviderAgreement_155554_1.Pdf to batch_4_diff_staging/pdf_files/-Amara Home Care Services, Inc.-ICMProviderAgreement_155554_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PediatricPavilion.mp.2009.04.29.Pdf to batch_4_diff_staging/pdf_files/PediatricPavilion.mp.2009.04.29.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Andrew E. Schmutz, D.C. dba The Chiropractic & Sports Therapy Center L.L.C.-ICMProviderAgreement_155796.Pdf to batch_4_diff_staging/pdf_files/-Andrew E. Schmutz, D.C. dba The Chiropractic & Sports Therapy Center L.L.C.-ICMProviderAgreement_155796.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/FoundationForReligionandMentalHealth.ca.04.07.10.Pdf to batch_4_diff_staging/pdf_files/FoundationForReligionandMentalHealth.ca.04.07.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Union Square Gastroenterology PC - Amendment Provider Signed 9.7.15.Pdf to batch_4_diff_staging/pdf_files/Union Square Gastroenterology PC - Amendment Provider Signed 9.7.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Centene_DVA_NationalAgmt_Eff 12.1.2021_No Alabamax.Pdf to batch_4_diff_staging/pdf_files/Centene_DVA_NationalAgmt_Eff 12.1.2021_No Alabamax.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Thomas Qualtere dba Schenectady Mental Health Associates - Amendmentx.Pdf to batch_4_diff_staging/pdf_files/Thomas Qualtere dba Schenectady Mental Health Associates - Amendmentx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/92-0904887-Sciometrix Inc-.Pdf to batch_4_diff_staging/pdf_files/92-0904887-Sciometrix Inc-.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accupath Laboratory Services, Inc-ICMProviderAgreement_154382.Pdf to batch_4_diff_staging/pdf_files/-Accupath Laboratory Services, Inc-ICMProviderAgreement_154382.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-All Better Pediatric Group Inc-ICMProviderAgreement_265093.Pdf to batch_4_diff_staging/pdf_files/-All Better Pediatric Group Inc-ICMProviderAgreement_265093.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Centene_DVA_NationalAgmt_Final 13-Sept_2021_CLEANx.Pdf to batch_4_diff_staging/pdf_files/Centene_DVA_NationalAgmt_Final 13-Sept_2021_CLEANx.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68601.Pdf to batch_4_diff_staging/pdf_files/-Accucare Home Medical Equipment Inc.-ICMProviderAgreementAmendment_68601.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners JACKSONVILLE, LLC-ICMProviderAgreement_114643.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners JACKSONVILLE, LLC-ICMProviderAgreement_114643.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Boston Children’s Health Physicians LLP - Provider Signed Amendment 6.1.22.Pdf to batch_4_diff_staging/pdf_files/Boston Children’s Health Physicians LLP - Provider Signed Amendment 6.1.22.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.RobertRixLCSW.du.12.23.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.RobertRixLCSW.du.12.23.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alliance City Health Department-ICMProviderAgreement_155305_1.Pdf to batch_4_diff_staging/pdf_files/-Alliance City Health Department-ICMProviderAgreement_155305_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Shift Your Journey Mental Health Counseling PLLC - Agreement.Pdf to batch_4_diff_staging/pdf_files/Shift Your Journey Mental Health Counseling PLLC - Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Advanced Technologies, Inc.-ICMProviderAgreement_154838.Pdf to batch_4_diff_staging/pdf_files/-Advanced Technologies, Inc.-ICMProviderAgreement_154838.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Austintown Podiatry Associates, Inc.-ICMProviderAgreement_153885.Pdf to batch_4_diff_staging/pdf_files/-Austintown Podiatry Associates, Inc.-ICMProviderAgreement_153885.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Mohawk Valley Cardiology PC - Amendment 7.1.12.Pdf to batch_4_diff_staging/pdf_files/Mohawk Valley Cardiology PC - Amendment 7.1.12.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/TIN change ltr 2013.Pdf to batch_4_diff_staging/pdf_files/TIN change ltr 2013.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alway Balazs & Associates, Inc.-ICMProviderAgreementAmendment_70964.Pdf to batch_4_diff_staging/pdf_files/-Alway Balazs & Associates, Inc.-ICMProviderAgreementAmendment_70964.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Akron Regional Pet Scan-ICMProviderAgreementAmendment_70038.Pdf to batch_4_diff_staging/pdf_files/-Akron Regional Pet Scan-ICMProviderAgreementAmendment_70038.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ahmad Mirza, MD-ICMProviderAgreementAmendment_70004.Pdf to batch_4_diff_staging/pdf_files/-Ahmad Mirza, MD-ICMProviderAgreementAmendment_70004.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Elm Manor Nursing Home Inc - Amendment Provider Signed 4.1.14.Pdf to batch_4_diff_staging/pdf_files/Elm Manor Nursing Home Inc - Amendment Provider Signed 4.1.14.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Badger Acquisition of Ohio, LLC-ICMProviderAgreement_154174_2.Pdf to batch_4_diff_staging/pdf_files/-Badger Acquisition of Ohio, LLC-ICMProviderAgreement_154174_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Arlington Family Practice-ICMProviderAgreement_156040.Pdf to batch_4_diff_staging/pdf_files/-Arlington Family Practice-ICMProviderAgreement_156040.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Standard Health Services 12.17.09.Pdf to batch_4_diff_staging/pdf_files/Standard Health Services 12.17.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alfredo Fernandez, MD PA-ICMProviderAgreementAmendment_97318.Pdf to batch_4_diff_staging/pdf_files/-Alfredo Fernandez, MD PA-ICMProviderAgreementAmendment_97318.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SCHEDULE 5.2.Pdf to batch_4_diff_staging/pdf_files/SCHEDULE 5.2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PullanoPhysicalTherapy_km_2010.01.22.Pdf to batch_4_diff_staging/pdf_files/PullanoPhysicalTherapy_km_2010.01.22.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/LlobetMedicalGroupPLLC.mp.2009.04.07.Pdf to batch_4_diff_staging/pdf_files/LlobetMedicalGroupPLLC.mp.2009.04.07.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Sanchez contract.Pdf to batch_4_diff_staging/pdf_files/Sanchez contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Assent Healthcare Services LLC-ICMProviderAgreement_67505.Pdf to batch_4_diff_staging/pdf_files/-Assent Healthcare Services LLC-ICMProviderAgreement_67505.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Auglaize Audiology, Inc.-ICMProviderAgreement_153878_1.Pdf to batch_4_diff_staging/pdf_files/-Auglaize Audiology, Inc.-ICMProviderAgreement_153878_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Boston Children's Health Phys LLP and Boston Children’s Health Phys of New Jersey LLC - Nonstandard 10.1.17.Pdf to batch_4_diff_staging/pdf_files/Boston Children's Health Phys LLP and Boston Children’s Health Phys of New Jersey LLC - Nonstandard 10.1.17.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Reimbursement Contract Management Touch Base.Pdf to batch_4_diff_staging/pdf_files/RE Reimbursement Contract Management Touch Base.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/CCS Oncology Center jt 03.06.2009.Pdf to batch_4_diff_staging/pdf_files/CCS Oncology Center jt 03.06.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashley Peintner PT-ICMProviderAgreement_114756_1.Pdf to batch_4_diff_staging/pdf_files/-Ashley Peintner PT-ICMProviderAgreement_114756_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/RE Amandeep Pal.Pdf to batch_4_diff_staging/pdf_files/RE Amandeep Pal.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abigail Labovitz, LISW-ICMProviderAgreement_154348.Pdf to batch_4_diff_staging/pdf_files/-Abigail Labovitz, LISW-ICMProviderAgreement_154348.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alexian Brothers Medical Group-ICMProviderAgreementAmendment_65575.Pdf to batch_4_diff_staging/pdf_files/-Alexian Brothers Medical Group-ICMProviderAgreementAmendment_65575.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baze Pharmacy-ICMProviderAgreementAmendment_41896.Pdf to batch_4_diff_staging/pdf_files/-Baze Pharmacy-ICMProviderAgreementAmendment_41896.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Autism and BEYOND, LLC-ICMProviderAgreement_223219.Pdf to batch_4_diff_staging/pdf_files/-Autism and BEYOND, LLC-ICMProviderAgreement_223219.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/2. Caring LHCSA LLC dba Caring Home Care - IT Request Rescind for Term letter.Pdf to batch_4_diff_staging/pdf_files/2. Caring LHCSA LLC dba Caring Home Care - IT Request Rescind for Term letter.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Beachwood ObGyn, Inc.-ICMProviderAgreementAmendment_68131.Pdf to batch_4_diff_staging/pdf_files/-Beachwood ObGyn, Inc.-ICMProviderAgreementAmendment_68131.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Adebowale A. Adedipe, MD, Inc.-ICMProviderAgreementAmendment_69059.Pdf to batch_4_diff_staging/pdf_files/-Adebowale A. Adedipe, MD, Inc.-ICMProviderAgreementAmendment_69059.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ashland Mansfield Foot & Ankle Specialists-ICMProviderAgreement_156200_1.Pdf to batch_4_diff_staging/pdf_files/-Ashland Mansfield Foot & Ankle Specialists-ICMProviderAgreement_156200_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Acclaim Home Health Services, Inc.-ICMProviderAgreement_154376.Pdf to batch_4_diff_staging/pdf_files/-Acclaim Home Health Services, Inc.-ICMProviderAgreement_154376.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Access Community Health Network-ICMProviderAgreement_216543_1.Pdf to batch_4_diff_staging/pdf_files/-Access Community Health Network-ICMProviderAgreement_216543_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia Associates of Northern Ohio-ICMProviderAgreement_155802_1.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia Associates of Northern Ohio-ICMProviderAgreement_155802_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/GHI Recruit contract 121709.Pdf to batch_4_diff_staging/pdf_files/GHI Recruit contract 121709.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/EnglewoodMedAssoc.baw.04.23.2010.Pdf to batch_4_diff_staging/pdf_files/EnglewoodMedAssoc.baw.04.23.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ascension Care Management Health Partners JACKSONVILLE, LLC-ICMProviderAgreement_304130.Pdf to batch_4_diff_staging/pdf_files/-Ascension Care Management Health Partners JACKSONVILLE, LLC-ICMProviderAgreement_304130.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/AlssaroCounselingServicesPLLC.ca.04.05.10.Pdf to batch_4_diff_staging/pdf_files/AlssaroCounselingServicesPLLC.ca.04.05.10.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PeakPerformancePT_km_2010.01.08.Pdf to batch_4_diff_staging/pdf_files/PeakPerformancePT_km_2010.01.08.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Drug World of Amenia, LLC_Credentialing.Pdf to batch_4_diff_staging/pdf_files/Drug World of Amenia, LLC_Credentialing.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Baptist Health Services Group (BHSG)-ICMProviderAgreementAmendment_41892.Pdf to batch_4_diff_staging/pdf_files/-Baptist Health Services Group (BHSG)-ICMProviderAgreementAmendment_41892.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/UCVA Medical LLC. Taylor, Thomas.5.18.09.Pdf to batch_4_diff_staging/pdf_files/UCVA Medical LLC. Taylor, Thomas.5.18.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Anesthesia for Children, Inc.-ICMProviderAgreementAmendment_71912.Pdf to batch_4_diff_staging/pdf_files/-Anesthesia for Children, Inc.-ICMProviderAgreementAmendment_71912.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Jennifer K Wilcox NP in Family Health PC - Agmt Prov Signed.Pdf to batch_4_diff_staging/pdf_files/Jennifer K Wilcox NP in Family Health PC - Agmt Prov Signed.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abdul M Orra DO-ICMProviderAgreementAmendment_68091.Pdf to batch_4_diff_staging/pdf_files/-Abdul M Orra DO-ICMProviderAgreementAmendment_68091.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AGM Physical Therapy-ICMProviderAgreement_154110.Pdf to batch_4_diff_staging/pdf_files/-AGM Physical Therapy-ICMProviderAgreement_154110.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Ancillary contract.Pdf to batch_4_diff_staging/pdf_files/Ancillary contract.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/1.Termed CDPAS - Hamaspik of Rockland County Inc.12.15.2015.Pdf to batch_4_diff_staging/pdf_files/1.Termed CDPAS - Hamaspik of Rockland County Inc.12.15.2015.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/NewYorkPainManagement,PLLC.cc.05.27.09.Pdf to batch_4_diff_staging/pdf_files/NewYorkPainManagement,PLLC.cc.05.27.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Top Care Physical Therapy, P.C.ec.12.16.2009.Pdf to batch_4_diff_staging/pdf_files/Top Care Physical Therapy, P.C.ec.12.16.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alonzo J. Bentley MD-ICMProviderAgreement_96309.Pdf to batch_4_diff_staging/pdf_files/-Alonzo J. Bentley MD-ICMProviderAgreement_96309.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Pulmonary Associates of Queens, P.C.ec.2009.Pdf to batch_4_diff_staging/pdf_files/Pulmonary Associates of Queens, P.C.ec.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/PrestigeServicesInc.cc.05.20.09.Pdf to batch_4_diff_staging/pdf_files/PrestigeServicesInc.cc.05.20.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Fort Hudson Home Care Inc - Amendment Provider Signed 5.1.15.Pdf to batch_4_diff_staging/pdf_files/Fort Hudson Home Care Inc - Amendment Provider Signed 5.1.15.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Jean Chen Medical, L.L.P.ec.10.14.2009.Pdf to batch_4_diff_staging/pdf_files/Jean Chen Medical, L.L.P.ec.10.14.2009.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Ahmad Mirza, MD-ICMProviderAgreement_155051_1.Pdf to batch_4_diff_staging/pdf_files/-Ahmad Mirza, MD-ICMProviderAgreement_155051_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Memo DT.Signature.GlobalAdministrativeServ.du.06.23.2010.Pdf to batch_4_diff_staging/pdf_files/Memo DT.Signature.GlobalAdministrativeServ.du.06.23.2010.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AmMed Direct, LLC-ICMProviderAgreementAmendment_71450.Pdf to batch_4_diff_staging/pdf_files/-AmMed Direct, LLC-ICMProviderAgreementAmendment_71450.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Abner Cordero-ICMProviderAgreementAmendment_68099.Pdf to batch_4_diff_staging/pdf_files/-Abner Cordero-ICMProviderAgreementAmendment_68099.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.ViaBHNdbaRochesterMHCenter.du.1.14.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.ViaBHNdbaRochesterMHCenter.du.1.14.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-AMIKids Baton Rouge-ICMProviderAgreement_216703_2.Pdf to batch_4_diff_staging/pdf_files/-AMIKids Baton Rouge-ICMProviderAgreement_216703_2.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Alliance Healthcare Braeview, Inc.-ICMProviderAgreement_155310_1.Pdf to batch_4_diff_staging/pdf_files/-Alliance Healthcare Braeview, Inc.-ICMProviderAgreement_155310_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/Contract 041409.Pdf to batch_4_diff_staging/pdf_files/Contract 041409.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/SBH Agreement.a.grunblattMD.du.3.24.09.Pdf to batch_4_diff_staging/pdf_files/SBH Agreement.a.grunblattMD.du.3.24.09.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-Allegheny Health Network-ICMProviderAgreement_102296_1.Pdf to batch_4_diff_staging/pdf_files/-Allegheny Health Network-ICMProviderAgreement_102296_1.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Failed to move processed/-B. Rafael Elejalde, MD-ICMProviderAgreement_102263.Pdf to batch_4_diff_staging/pdf_files/-B. Rafael Elejalde, MD-ICMProviderAgreement_102263.Pdf: An error occurred (NoSuchKey) when calling the GetObject operation: The specified key does not exist.\n",
|
||
"Updated CSV saved to batch4/batch4_file_movement_4.csv\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"import boto3\n",
|
||
"import pandas as pd\n",
|
||
"from concurrent.futures import ThreadPoolExecutor, as_completed\n",
|
||
"\n",
|
||
"s3_client = boto3.Session(profile_name='temp_cred').client('s3')\n",
|
||
"\n",
|
||
"def move_s3_file(source_bucket, source_key, destination_bucket, destination_key):\n",
|
||
" try:\n",
|
||
" response = s3_client.get_object(Bucket=source_bucket, Key=source_key)\n",
|
||
" file_content = response['Body'].read()\n",
|
||
" print(f\"Downloaded {source_key} from s3://{source_bucket}\")\n",
|
||
" s3_client.put_object(Bucket=destination_bucket, Key=destination_key, Body=file_content)\n",
|
||
" # s3_client.copy_object(\n",
|
||
" # CopySource={'Bucket': source_bucket, 'Key': source_key},\n",
|
||
" # Bucket=destination_bucket,\n",
|
||
" # Key=destination_key\n",
|
||
" # )\n",
|
||
" print(f\"Moved {source_key} to {destination_key}\")\n",
|
||
" return True\n",
|
||
" except Exception as e:\n",
|
||
" print(f\"Failed to move {source_key} to {destination_key}: {e}\")\n",
|
||
" return False\n",
|
||
"\n",
|
||
"def file_exists_s3(bucket, key):\n",
|
||
" try:\n",
|
||
" s3_client.head_object(Bucket=bucket, Key=key)\n",
|
||
" return True\n",
|
||
" except Exception:\n",
|
||
" return False\n",
|
||
"\n",
|
||
"def process_files(max_workers=50):\n",
|
||
" df = pd.read_csv(csv_path)\n",
|
||
" # df = df[df['File Path'] != \"NOT FOUND\"]\n",
|
||
" # df['New File Name'] = df['New File Name'].str.replace('.Pdf', new_extension)\n",
|
||
" df['Only in batch4_unique_filenames'] = df['Only in batch4_unique_filenames'].str.replace('.pdf', new_extension)\n",
|
||
" df[moved_column] = 'No'\n",
|
||
" # df['New File Name'] += \".pdf\"\n",
|
||
" # df.to_csv('batch1\\\\temp_moved_duplicates_in_priority.csv', index=False)\n",
|
||
"\n",
|
||
" def move_file(row):\n",
|
||
" file_name = row[file_name_column]\n",
|
||
" source_key = f\"{source_folder}{file_name}\"\n",
|
||
" destination_key = f\"{destination_folder}{row['Only in batch4_unique_filenames']}\"\n",
|
||
" # destination_key = destination_key.replace('.Pdf', new_extension)\n",
|
||
" # print(source_key)\n",
|
||
"\n",
|
||
" # if file_exists_s3(source_bucket, source_key):\n",
|
||
" if move_s3_file(source_bucket, source_key, destination_bucket, destination_key):\n",
|
||
" return (file_name, 'Yes')\n",
|
||
" return (file_name, 'No')\n",
|
||
"\n",
|
||
" with ThreadPoolExecutor(max_workers=max_workers) as executor:\n",
|
||
" futures = {executor.submit(move_file, row): row for _, row in df.iterrows()}\n",
|
||
" for future in as_completed(futures):\n",
|
||
" file_name, status = future.result()\n",
|
||
" df.loc[df[file_name_column] == file_name, moved_column] = status\n",
|
||
"\n",
|
||
" df.to_csv(updated_csv_path, index=False)\n",
|
||
" print(f\"Updated CSV saved to {updated_csv_path}\")\n",
|
||
"\n",
|
||
"new_extension = '.Pdf'\n",
|
||
"csv_path = 'batch4/batch_4_diff_tracker.csv'\n",
|
||
"# csv_path = 'batch2_comparison_output.csv'\n",
|
||
"updated_csv_path = 'batch4/batch4_file_movement_4.csv'\n",
|
||
"file_name_column = 'Only in batch4_unique_filenames'\n",
|
||
"moved_column = 'moved'\n",
|
||
"source_bucket = 'centene-fidelis-files'\n",
|
||
"destination_bucket = 'centene-fidelis-files'\n",
|
||
"source_folder = 'processed/'\n",
|
||
"destination_folder = 'batch_4_diff_staging/pdf_files/'\n",
|
||
"\n",
|
||
"process_files()"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": 8,
|
||
"metadata": {},
|
||
"outputs": [
|
||
{
|
||
"name": "stdout",
|
||
"output_type": "stream",
|
||
"text": [
|
||
"Found 2284607 files.\n",
|
||
"Check for filename = File Name.Pdf in all_keys\n",
|
||
"Check for filename = 01-0758652-HCA Physician Services, Inc. as disclosed agent for HealthONE Clinic Services, LLC-ICMProviderAgreement_37627.Pdf in all_keys\n",
|
||
"Check for filename = 26-0618472-Interventional Spine and Pain PC-ICMProviderAgreement_90715.Pdf in all_keys\n",
|
||
"Check for filename = -Coral Desert SURGERY Center, LLC-ICMProviderAgreement_229631.Pdf in all_keys\n",
|
||
"Check for filename = -Cardiology CONSULTANTS of Philadelphia PC-ICMProviderAgreementAmendment_40118.Pdf in all_keys\n",
|
||
"Check for filename = Alexander G. Perez, MD-ICMProviderAgreement_213829.Pdf in all_keys\n",
|
||
"Check for filename = Brian Bennett Friis-ICMProviderAgreement_102309.Pdf in all_keys\n",
|
||
"Check for filename = Bruce Family Medical-ICMProviderAgreementAmendment_41914_1.Pdf in all_keys\n",
|
||
"Check for filename = -Carla Renae Arlien PHD dba Apex Psychological Care & Memory Center-ICMProviderAgreement_155578_1.Pdf in all_keys\n",
|
||
"Check for filename = -Centers for Medicare and Medicaid Services-ICMProviderAgreement_96519.Pdf in all_keys\n",
|
||
"Check for filename = -Community Support Services of La, Inc.-ICMProviderAgreement_217111_1.Pdf in all_keys\n",
|
||
"Check for filename = Dr. Kamal Khalafi, MD LLC-ICMProviderAgreement_155639.Pdf in all_keys\n",
|
||
"Check for filename = Erie Coast Chest Physicians, Inc.-ICMProviderAgreementAmendment_67712.Pdf in all_keys\n",
|
||
"Check for filename = Eric Paul, DPM-ICMProviderAgreement_153963_1.Pdf in all_keys\n",
|
||
"Check for filename = 85-2052433-Joyce’s Caring Touch Home Health LLC-.Pdf in all_keys\n",
|
||
"Check for filename = -CT AT Midtown, LLC-ICMProviderAgreementAmendment_69175.Pdf in all_keys\n",
|
||
"Check for filename = -Canton Endovascular & Cardiothoracic SURGERY-ICMProviderAgreementAmendment_70068.Pdf in all_keys\n",
|
||
"Check for filename = -CLARKE Community Services LLC-ICMProviderAgreement_219016.Pdf in all_keys\n",
|
||
"Check for filename = Bio Medical Applications of Ohio, Inc-ICMProviderAgreementAmendment_68639_1.Pdf in all_keys\n",
|
||
"Check for filename = Camille D. Perez, PLLC-ICMProviderAgreement_215544.Pdf in all_keys\n",
|
||
"Check for filename = -DCA of Cincinnati LLC-ICMProviderAgreement_155146_1.Pdf in all_keys\n",
|
||
"Check for filename = -Clinical Oxygen Providers of Dayton-ICMProviderAgreement_156280.Pdf in all_keys\n",
|
||
"Check for filename = -Cadence Ambulatory SURGERY Center-ICMProviderAgreementAmendment_65630.Pdf in all_keys\n",
|
||
"Check for filename = -Evergreen AT CARSON City, L.L.C. dba ORMSBY POST ACUTE Rehab-ICMProviderAgreement_67553.Pdf in all_keys\n",
|
||
"Check for filename = -Dr CONCEPCION & Associates THERAPEUTIC Center-ICMProviderAgreement_217600_1.Pdf in all_keysCheck for filename = Erie Coast Chest Physicians, Inc.-ICMProviderAgreement_153964.Pdf in all_keys\n",
|
||
"Check for filename = Advanced Medical Strategies-ICMProviderAgreement_96499.Pdf in all_keys\n",
|
||
"Check for filename = -Carl E Feltz Dc-ICMProviderAgreement_155573.Pdf in all_keys\n",
|
||
"\n",
|
||
"Check for filename = -Cincinnati Medical CONSULTANTS, Inc.-ICMProviderAgreement_156090_1.Pdf in all_keysCheck for filename = -Douglas A Schwan Dc-ICMProviderAgreementAmendment_71066.Pdf in all_keys\n",
|
||
"\n",
|
||
"Check for filename = 43-1295159-Kimberley D. Hemmer-ICMProviderAgreement_39134.Pdf in all_keys\n",
|
||
"Check for filename = Columbus Area Integrated Health Services Inc-ICMProviderAgreement_153928_1.Pdf in all_keys\n",
|
||
"Check for filename = -Complete Physicians Services-ICMProviderAgreementAmendment_41468.Pdf in all_keys\n",
|
||
"Check for filename = -Canton General SURGERY Associates-ICMProviderAgreementAmendment_70069.Pdf in all_keys\n",
|
||
"Check for filename = -Edwin D. Porter, Dc-ICMProviderAgreementAmendment_72517.Pdf in all_keys\n",
|
||
"Check for filename = -Canton General SURGERY Associates-ICMProviderAgreement_155145.Pdf in all_keys\n",
|
||
"Check for filename = -Consolidated Pathology CONSULTANTS, SC-ICMProviderAgreement_102624.Pdf in all_keys\n",
|
||
"Check for filename = 91-1611980-Chehalis Children’s Clinic, P.S.-ICMProviderAgreement_263198.Pdf in all_keys\n",
|
||
"Check for filename = -Dublin Diagnostic Imaging, LLC dba Proscan Imaging of Dublin-ICMProviderAgreement_155872.Pdf in all_keys\n",
|
||
"Check for filename = -BES of Ohio LLC dba Medgroup-ICMProviderAgreement_154147_1.Pdf in all_keys\n",
|
||
"Check for filename = 71-0876911-St. Bernard’s PET Center, LLC-ICMProviderAgreement_129205_1.Pdf in all_keys\n",
|
||
"Check for filename = Eric Richman DPM-ICMProviderAgreement_153965.Pdf in all_keys\n",
|
||
"Check for filename = Endoscopy Center North-ICMProviderAgreement_153958.Pdf in all_keys\n",
|
||
"Check for filename = -Central Louisiana Cenla Neurology LLC-ICMProviderAgreement_109016.Pdf in all_keys\n",
|
||
"Check for filename = -Cornerstone ObGyn, Inc.-ICMProviderAgreement_154677.Pdf in all_keys\n",
|
||
"Check for filename = -CATHERINE LaRuffa MD Inc-ICMProviderAgreementAmendment_71020.Pdf in all_keys\n",
|
||
"Check for filename = Eric Rondeau-ICMProviderAgreement_114815.Pdf in all_keysCheck for filename = -Better Living Home Health & Medical Supplies-ICMProviderAgreementAmendment_68632_1.Pdf in all_keys\n",
|
||
"\n",
|
||
"Check for filename = -BES of Ohio LLC dba Medgroup-ICMProviderAgreementAmendment_68156_1.Pdf in all_keysCheck for filename = Connie L. Wallce-ICMProviderAgreement_221488.Pdf in all_keys\n",
|
||
"Check for filename = -Dr Robert B WEBER LTD-ICMProviderAgreementAmendment_40393_1.Pdf in all_keys\n",
|
||
"Check for filename = 80-0468571-Riverside Ambulance Services-ICMProviderAgreement_68355_1.Pdf in all_keysCheck for filename = -Carla Renae Arlien PHD dba Apex Psychological Care & Memory Center-ICMProviderAgreement_155578.Pdf in all_keys\n",
|
||
"\n",
|
||
"Check for filename = Eric Richman DPM-ICMProviderAgreement_153965_1.Pdf in all_keys\n",
|
||
"Check for filename = -Blue MOUNTAIN Neuropsychological Associates-ICMProviderAgreement_218584.Pdf in all_keys\n",
|
||
"\n",
|
||
"Check for filename = 84-4727244-Unity Youth & Family Services-ICMProviderAgreement_74216.Pdf in all_keys\n",
|
||
"Check for filename = Eric Paul, DPM-ICMProviderAgreement_153963.Pdf in all_keys\n",
|
||
"Check for filename = -BES of Ohio LLC dba Medgroup-ICMProviderAgreementAmendment_68156.Pdf in all_keys\n",
|
||
"Check for filename = 46-4118725-Pacific Kidney & Hypertension Clinic, LLC dba Snohomish Kidney Institute -ICMProviderAgreement_262399.Pdf in all_keys\n",
|
||
"Check for filename = -BES of Ohio LLC dba Medgroup-ICMProviderAgreement_154147.Pdf in all_keys\n",
|
||
"Check for filename = Alegent Health Creighton Saint Joseph Managed Care, Inc. dba CHI Health Partners (formerly UniNet Healthcare Network)-ICMProviderAgreement_67420.Pdf in all_keys\n",
|
||
"Check for filename = 27-0921604-Crystal’s Behavior Solutions, LLC dba Collaborative Behavior Solutions-ICMProviderAgreement_264632.Pdf in all_keys\n",
|
||
"Check for filename = -Dr. Pinocchio OTD Inc., A Professional Corporation-ICMProviderAgreement_67539_1.Pdf in all_keys\n",
|
||
"Check for filename = -Center for Autism & Behavioral Analysis, LLC-ICMProviderAgreement_67528.Pdf in all_keys\n",
|
||
"Check for filename = -Cincinnati Medical CONSULTANTS, Inc.-ICMProviderAgreementAmendment_72444.Pdf in all_keys\n",
|
||
"Check for filename = -Digestive Endoscopy Center, Ltd.-ICMProviderAgreementAmendment_70601.Pdf in all_keys\n",
|
||
"Check for filename = Board of Regents of the Univ of WI System on behalf of the Univ of WI-Milwaukee College of Nursing-ICMProviderAgreement_102234.Pdf in all_keys\n",
|
||
"Check for filename = -Cadence Ambulatory SURGERY Center-ICMProviderAgreementAmendment_65630_1.Pdf in all_keys\n",
|
||
"Check for filename = -Dublin Diagnostic Imaging, LLC dba Proscan Imaging of Dublin-ICMProviderAgreementAmendment_72012.Pdf in all_keys\n",
|
||
"Check for filename = 35-2128405-CENTER FOR PAIN MANAGEMENT LLC-ICMProviderAgreement_88152.Pdf in all_keys\n",
|
||
"Check for filename = Africentric Personal Development Shop, Inc.-ICMProviderAgreement_154851_1.Pdf in all_keys\n",
|
||
"Check for filename = -Dignity Select Nevada LLC dba Select Physical Therapy dba Select KIDS-ICMProviderAgreement_67561.Pdf in all_keys\n",
|
||
"Check for filename = Dodson Home Care, Inc.-ICMProviderAgreementAmendment_42333.Pdf in all_keys\n",
|
||
"Check for filename = 68-0489414-Advanced Care for Women, SC-.Pdf in all_keys\n",
|
||
"Check for filename = Duraline Medical Products, Inc.-ICMProviderAgreementAmendment_72022_1.Pdf in all_keys\n",
|
||
"Check for filename = -Better Living Home Health & Medical Supplies-ICMProviderAgreement_154629_1.Pdf in all_keys\n",
|
||
"Check for filename = -Cleveland Eye and Laser SURGERY Center, LLC.-ICMProviderAgreement_156264.Pdf in all_keys\n",
|
||
"Check for filename = -Dr. Pinocchio OTD Inc., A Professional Corporation-ICMProviderAgreement_67539.Pdf in all_keys\n",
|
||
"Check for filename = 82-1624707-Pecos Valley Eye Surgery Center, LLC-ICMProviderAgreement_42323.Pdf in all_keys\n",
|
||
"Check for filename = Dodge County Hospital Authority-ICMProviderAgreement_5435.Pdf in all_keys\n",
|
||
"Check for filename = -Carl E Feltz Dc-ICMProviderAgreement_155573_1.Pdf in all_keys\n",
|
||
"Check for filename = Eric Richman DPM-ICMProviderAgreementAmendment_67713.Pdf in all_keys\n",
|
||
"Check for filename = -Debra Skrzynecki, Dc-ICMProviderAgreement_155157.Pdf in all_keys\n",
|
||
"Check for filename = Community Drug Board, Inc. dba Community Health Center-ICMProviderAgreement_154193.Pdf in all_keys\n",
|
||
"Check for filename = 82-1624707-Pecos Valley Eye Surgery Center, LLC-ICMProviderAgreement_42323_2.Pdf in all_keys\n",
|
||
"Check for filename = 82-1624707-Pecos Valley Eye Surgery Center, LLC-ICMProviderAgreementAmendment_10007.Pdf in all_keys\n",
|
||
"Check for filename = -Center for Plastic and Cosmetic SURGERY-ICMProviderAgreementAmendment_71046.Pdf in all_keys\n",
|
||
"Check for filename = Ability Rehab-ICMProviderAgreementAmendment_68098.Pdf in all_keys\n",
|
||
"Check for filename = -David K Kim MD LLC-ICMProviderAgreement_154917_1.Pdf in all_keys\n",
|
||
"Check for filename = Abdul T Razack, MD, Inc.-ICMProviderAgreement_154346_1.Pdf in all_keys\n",
|
||
"Check for filename = -Cincinnati Medical CONSULTANTS, Inc.-ICMProviderAgreement_156090.Pdf in all_keys\n",
|
||
"Check for filename = 46-0940115-Zoë Ministries, Inc.-ICMProviderAgreementAmendment_122378.Pdf in all_keys\n",
|
||
"Check for filename = -Consolidated Pathology CONSULTANTS, SC-ICMProviderAgreement_102624_1.Pdf in all_keys\n",
|
||
"Check for filename = 46-4135014-Strasburger Orthopaedics PC-ICMProviderAgreement_39032.Pdf in all_keys\n",
|
||
"Check for filename = 71-0876911-St. Bernard’s PET Center, LLC-ICMProviderAgreementAmendment_45338.Pdf in all_keys\n",
|
||
"Check for filename = -Dr CONCEPCION & Associates THERAPEUTIC Center-ICMProviderAgreement_217600_2.Pdf in all_keys\n",
|
||
"Check for filename = -David K Kim MD LLC-ICMProviderAgreement_154917.Pdf in all_keys\n",
|
||
"Check for filename = Carl Woofter-ICMProviderAgreement_114770.Pdf in all_keys\n",
|
||
"Check for filename = 47-6006305-City of O’Neill DBA City of O’Neill – Ambs Svc.-ICMProviderAgreement_38941_2.Pdf in all_keys\n",
|
||
"Check for filename = -DCA of Cincinnati LLC-ICMProviderAgreement_155146.Pdf in all_keys\n",
|
||
"Check for filename = -Dublin Diagnostic Imaging, LLC dba Proscan Imaging of Dublin-ICMProviderAgreement_155872_1.Pdf in all_keys\n",
|
||
"Check for filename = Adams County Cancer Center-ICMProviderAgreementAmendment_68623.Pdf in all_keys\n",
|
||
"Check for filename = -Community Mental Health Center of Crawford County-ICMProviderAgreement_213687.Pdf in all_keys\n",
|
||
"Check for filename = Cardiac Diagnostic Services, Inc.-ICMProviderAgreementAmendment_70080.Pdf in all_keys\n",
|
||
"Check for filename = -Better Living Home Health & Medical Supplies-ICMProviderAgreementAmendment_68632.Pdf in all_keys\n",
|
||
"Check for filename = -Cornerstone ObGyn, Inc.-ICMProviderAgreement_154677_1.Pdf in all_keys\n",
|
||
"Check for filename = 47-6000999-Rock County Community Hospital-ICMProviderAgreement_37737.Pdf in all_keys\n",
|
||
"Check for filename = City of Warren Auditor dba Warren City Health Department-ICMProviderAgreement_146441.Pdf in all_keys\n",
|
||
"Check for filename = ELITE Pain Management, LLC-ICMProviderAgreementAmendment_11595.Pdf in all_keys\n",
|
||
"Check for filename = -Evergreen AT MOUNTAIN View, L.L.C. dba MOUNTAIN View Health and Rehabilitation Center-ICMProviderAgreement_67567.Pdf in all_keys\n",
|
||
"Check for filename = -Evergreen AT PAHRUMP, L.L.C. dba PAHRUMP Health and Rehabilitation Center-ICMProviderAgreement_67563.Pdf in all_keys\n",
|
||
"Check for filename = 27-5500409-Mountain Medical Services, PLLC-ICMProviderAgreement_65907.Pdf in all_keys\n",
|
||
"Check for filename = -Cardiology CONSULTANTS of Philadelphia PC-ICMProviderAgreementAmendment_40118_1.Pdf in all_keys\n",
|
||
"Check for filename = Abner Cordero-ICMProviderAgreement_154355.Pdf in all_keys\n",
|
||
"Check for filename = -Dr CONCEPCION & Associates THERAPEUTIC Center-ICMProviderAgreement_217600.Pdf in all_keys\n",
|
||
"Check for filename = -Better Living Home Health & Medical Supplies-ICMProviderAgreement_154629.Pdf in all_keys\n",
|
||
"Check for filename = -Dr Raymond Stricker Dc LLC dba Harrison Associates-ICMProviderAgreement_155621.Pdf in all_keys\n",
|
||
"Check for filename = -Cherie White dba Cherie A White, Inc-ICMProviderAgreement_221131.Pdf in all_keys\n",
|
||
"Check for filename = Central Washington Hospital Facility & Physician Services-ICMProviderAgreementAmendment_134160.Pdf in all_keys\n",
|
||
"Check for filename = -Cohen Curtis Farzin Meoz and Schwartz PLLC dba Las Vegas Cyberknife AT Summerlin, LLC-ICMProviderAgreement_67566.Pdf in all_keys\n",
|
||
"Check for filename = -DeBry Medical Services, P.C. dba NV Eye SURGERY-ICMProviderAgreement_67532.Pdf in all_keys\n",
|
||
"Check for filename = -Cadence Ambulatory SURGERY Center-ICMProviderAgreement_140582_1.Pdf in all_keys\n",
|
||
"Check for filename = 47-6000999-Rock County Community Hospital-ICMProviderAgreementAmendment_11374.Pdf in all_keys\n",
|
||
"Check for filename = 71-0876911-St. Bernard’s PET Center, LLC-ICMProviderAgreement_129205.Pdf in all_keys\n",
|
||
"Check for filename = Central Arkansas Group Counseling, PLLC-ICMProviderAgreement_124496.Pdf in all_keys\n",
|
||
"Check for filename = Encompass Home Health of the West, LLC dba Encompass Health Home Health-ICMProviderAgreement_67558.Pdf in all_keys\n",
|
||
"Check for filename = -Cleveland Eye and Laser SURGERY Center, LLC.-ICMProviderAgreement_156264_1.Pdf in all_keys\n",
|
||
"Check for filename = -EASTERN Woods Radiation Oncology SNP-ICMProviderAgreementAmendment_72493.Pdf in all_keys\n",
|
||
"Check for filename = Endo Center of Bainbridge-ICMProviderAgreementAmendment_67693.Pdf in all_keys\n",
|
||
"Check for filename = Daniel L Wohl MD PA-ICMProviderAgreement_191420_2.Pdf in all_keys\n",
|
||
"Check for filename = 47-6006305-City of O’Neill DBA City of O’Neill – Ambs Svc.-ICMProviderAgreement_38941.Pdf in all_keys\n",
|
||
"Check for filename = 47-6006305-City of O’Neill DBA City of O’Neill – Ambs Svc.-ICMProviderAgreement_38941_1.Pdf in all_keys\n",
|
||
"Check for filename = -Central Louisiana Cenla Neurology LLC-ICMProviderAgreement_160768.Pdf in all_keys\n",
|
||
"Check for filename = -Caring for KIDS, Inc.-ICMProviderAgreement_155380.Pdf in all_keys\n",
|
||
"Check for filename = -Community Mental Health Center of Crawford County-ICMProviderAgreement_213687_1.Pdf in all_keys\n",
|
||
"Check for filename = -Chih Hao LIN MD-ICMProviderAgreement_109920.Pdf in all_keys\n",
|
||
"Check for filename = Caring Solution Inc-ICMProviderAgreementAmendment_70557.Pdf in all_keys\n",
|
||
"Check for filename = -Dr Raymond Stricker Dc LLC dba Harrison Associates-ICMProviderAgreement_155621_1.Pdf in all_keys\n",
|
||
"Check for filename = -Columbia Hospital-ICMProviderAgreement_215542.Pdf in all_keys\n",
|
||
"Check for filename = -DCA of Cincinnati LLC-ICMProviderAgreementAmendment_70122_1.Pdf in all_keys\n",
|
||
"Check for filename = -David K Kim MD LLC-ICMProviderAgreementAmendment_69652.Pdf in all_keys\n",
|
||
"Check for filename = 46-0940115-Zoë Ministries, Inc.-ICMProviderAgreement_228552.Pdf in all_keysCheck for filename = -CRANIAL Technologies Inc-ICMProviderAgreement_95862.Pdf in all_keys\n",
|
||
"Check for filename = -Canton Endovascular & Cardiothoracic SURGERY-ICMProviderAgreement_155144_1.Pdf in all_keys\n",
|
||
"\n",
|
||
"Check for filename = Duraline Medical Products, Inc.-ICMProviderAgreement_155880_1.Pdf in all_keys\n",
|
||
"Check for filename = Christopher Reeder, DO-ICMProviderAgreement_156072.Pdf in all_keys\n",
|
||
"Check for filename = Cornerstone Rehabilitation, Ltd-ICMProviderAgreement_154678.Pdf in all_keys\n",
|
||
"Check for filename = -Betty Hopkins dba Doorway To Success Counseling-ICMProviderAgreement_217494.Pdf in all_keys\n",
|
||
"Check for filename = -Brendan McMahon Dc-ICMProviderAgreement_156435_2.Pdf in all_keys\n",
|
||
"Check for filename = -Encompass Health Corporation doing business on behalf of its subsidiaries and affiliates as listed on Schedule D-.Pdf in all_keys\n",
|
||
"Check for filename = Clinical Oxygen providers of Dayton-ICMProviderAgreement_156280_1.Pdf in all_keys\n",
|
||
"Check for filename = -Canton General SURGERY Associates-ICMProviderAgreement_155145_1.Pdf in all_keys\n",
|
||
"Check for filename = 83-4152862-Scottsbluff Operations LLC-ICMProviderAgreement_38819.Pdf in all_keys\n",
|
||
"Check for filename = -Cornerstone ObGyn, Inc.-ICMProviderAgreementAmendment_68716.Pdf in all_keys\n",
|
||
"Check for filename = 71-0236857-Arkansas Children’s Care Network-ICMProviderAgreementAmendment_166979.Pdf in all_keys\n",
|
||
"Check for filename = 27-3361236-Family Counseling Center of St. Paul’s Inc dba Amanecer Counseling & Resource Center-ICMProviderAgreement_227755.Pdf in all_keys\n",
|
||
"Check for filename = -Evergreen AT GARDNERVILLE, L.L.C. dba GARDNERVILLE Health and Rehabilitation Center-ICMProviderAgreement_67564.Pdf in all_keys\n",
|
||
"Check for filename = -CATHERINE George Parisi Dc-ICMProviderAgreementAmendment_71022.Pdf in all_keys\n",
|
||
"Check for filename = Cambridge Counseling Center-ICMProviderAgreement_155135_1.Pdf in all_keys\n",
|
||
"Check for filename = Canton City Health Department-ICMProviderAgreement_155143_1.Pdf in all_keys\n",
|
||
"Check for filename = 82-1624707-Pecos Valley Eye Surgery Center, LLC-ICMProviderAgreement_42323_1.Pdf in all_keys\n",
|
||
"Check for filename = Abbeville Anesthesia-ICMProviderAgreement_109859.Pdf in all_keys\n",
|
||
"Check for filename = Erin Mead-ICMProviderAgreement_199438_1.Pdf in all_keys\n",
|
||
"Check for filename = -Community Support Services of La, Inc.-ICMProviderAgreement_217111.Pdf in all_keys\n",
|
||
"Check for filename = Abdul T Razack, MD, Inc.-ICMProviderAgreement_154346.Pdf in all_keys\n",
|
||
"Check for filename = Digestive Disease Institute Inc-ICMProviderAgreementAmendment_40145.Pdf in all_keys\n",
|
||
"Check for filename = -Davita, Inc.-ICMProviderAgreement_85092.Pdf in all_keys\n",
|
||
"Check for filename = Bi-County Foot Care, Ltd-ICMProviderAgreementAmendment_68638.Pdf in all_keys\n",
|
||
"Check for filename = -BES of Ohio LLC dba Medgroup-ICMProviderAgreement_154148.Pdf in all_keys\n",
|
||
"Check for filename = -Children's Hospital of Chicago Faculty Practice Plan-ICMProviderAgreement_140562_1.Pdf in all_keys\n",
|
||
"Check for filename = Biloxi HMA Physicians Management, LLC-ICMProviderAgreement_223027.Pdf in all_keys\n",
|
||
"Check for filename = -Caring for KIDS, Inc.-ICMProviderAgreement_155380_1.Pdf in all_keys\n",
|
||
"Check for filename = -EL-Hallak Rheumatology and Specialty Infusion Center dba CarePoint Rheumatology and Specialty Infusi-ICMProviderAgreement_146002.Pdf in all_keys\n",
|
||
"Check for filename = Daniel L Wohl MD PA-ICMProviderAgreement_191420_1.Pdf in all_keys\n",
|
||
"Check for filename = 71-0412085-Crowley’s Ridge Development Council, Inc.Dba NEARRC Outpatient-ICMProviderAgreement_161635.Pdf in all_keys\n",
|
||
"Check for filename = -Denise Adkins, Dc-ICMProviderAgreementAmendment_70580.Pdf in all_keys\n",
|
||
"Check for filename = Domestic Violence & Child Advocacy Center-ICMProviderAgreement_155402_1.Pdf in all_keys\n",
|
||
"Check for filename = Catholic Charities of the Archdiocese of Chicago-ICMProviderAgreement_216971.Pdf in all_keys\n",
|
||
"Check for filename = -Endo Center of Bainbridge-ICMProviderAgreementAmendment_67693_1.Pdf in all_keys\n",
|
||
"Check for filename = -CLARKE Community Services LLC-ICMProviderAgreement_219016_1.Pdf in all_keys\n",
|
||
"Check for filename = Cantilever Shoe Store-ICMProviderAgreement_108753.Pdf in all_keys\n",
|
||
"Check for filename = Blanchard Valley Surgical Spc-ICMProviderAgreementAmendment_68669.Pdf in all_keys\n",
|
||
"Check for filename = Dana Judice dba Judice Counseling Services-ICMProviderAgreement_217604.Pdf in all_keys\n",
|
||
"Check for filename = -Debra Skrzynecki, Dc-ICMProviderAgreement_155157_1.Pdf in all_keys\n",
|
||
"Check for filename = 47-5415230-United Wound Healing, PS-ICMProviderAgreement_64871.Pdf in all_keys\n",
|
||
"Check for filename = Everett Linn Jones, MD-ICMProviderAgreement_153984_1.Pdf in all_keys\n",
|
||
"Check for filename = Catholic Charities of Salina Inc-ICMProviderAgreement_212789.Pdf in all_keys\n",
|
||
"Check for filename = DCH Regional Medical Center-ICMProviderAgreementAmendment_42321.Pdf in all_keys\n",
|
||
"Check for filename = Adie Tamboli, MD-ICMProviderAgreement_154596.Pdf in all_keys\n",
|
||
"Check for filename = -Cleveland Eye and Laser SURGERY Center, LLC.-ICMProviderAgreementAmendment_72908_1.Pdf in all_keys\n",
|
||
"Check for filename = -Centers for Medicare and Medicaid Services-ICMProviderAgreement_96528.Pdf in all_keys\n",
|
||
"Check for filename = 82-2537940-Real Life Health-ICMProviderAgreement_38432.Pdf in all_keys\n",
|
||
"Check for filename = a & a Medical Supply, LLC-ICMProviderAgreementAmendment_67593_1.Pdf in all_keys\n",
|
||
"Check for filename = -Cleveland Eye and Laser SURGERY Center, LLC.-ICMProviderAgreementAmendment_72908.Pdf in all_keys\n",
|
||
"Check for filename = -Debra Skrzynecki, Dc-ICMProviderAgreementAmendment_70139.Pdf in all_keys\n",
|
||
"Check for filename = Concorde Therapy-ICMProviderAgreement_154468.Pdf in all_keys\n",
|
||
"Check for filename = Cristinette a Likiardopoulos-ICMProviderAgreement_213703.Pdf in all_keys\n",
|
||
"Check for filename = Concorde Therapy-ICMProviderAgreement_154468_1.Pdf in all_keys\n",
|
||
"Check for filename = -Christian Community Health Center-ICMProviderAgreement_216961.Pdf in all_keys\n",
|
||
"Check for filename = -DCA of Cincinnati LLC-ICMProviderAgreementAmendment_70122.Pdf in all_keys\n",
|
||
"Check for filename = 92-1131137-SEARK Children’s Clinic, PLLC-ICMProviderAgreement_273229.Pdf in all_keys\n",
|
||
"Check for filename = -Dr Robert B WEBER LTD-ICMProviderAgreementAmendment_40393.Pdf in all_keys\n",
|
||
"Check for filename = -CRANIAL Technologies Inc-ICMProviderAgreement_95862_1.Pdf in all_keys\n",
|
||
"CSV processing completed.\n"
|
||
]
|
||
}
|
||
],
|
||
"source": [
|
||
"import csv\n",
|
||
"import boto3\n",
|
||
"from concurrent.futures import ThreadPoolExecutor\n",
|
||
"from botocore.exceptions import ClientError\n",
|
||
"\n",
|
||
"s3 = boto3.Session(profile_name='temp_cred').client('s3')\n",
|
||
"\n",
|
||
"def list_all_files(bucket_name):\n",
|
||
" all_keys = []\n",
|
||
" try:\n",
|
||
" paginator = s3.get_paginator('list_objects_v2')\n",
|
||
" for page in paginator.paginate(Bucket=bucket_name, ):\n",
|
||
" if 'Contents' in page:\n",
|
||
" all_keys.extend([item['Key'] for item in page['Contents']])\n",
|
||
" except ClientError as e:\n",
|
||
" print(f\"Error listing files in bucket {bucket_name}: {e}\")\n",
|
||
" return all_keys\n",
|
||
"\n",
|
||
"def check_file_in_bucket(filename, all_keys):\n",
|
||
" print(f\"Check for filename = {filename} in all_keys\")\n",
|
||
" locations = [key for key in all_keys if (key.endswith(filename))]\n",
|
||
" for l in locations:\n",
|
||
" s3.copy_object(\n",
|
||
" CopySource={'Bucket': bucket_name, 'Key': l},\n",
|
||
" Bucket=bucket_name,\n",
|
||
" Key=destination_prefix + \"/\" + filename\n",
|
||
" )\n",
|
||
" exists = bool(locations)\n",
|
||
" return filename, exists, locations\n",
|
||
"\n",
|
||
"def process_csv(input_csv, output_csv, bucket_name):\n",
|
||
" \n",
|
||
" with open(input_csv, mode='r', newline='', encoding='utf8') as infile, open(output_csv, mode='w', newline='', encoding='utf8') as outfile:\n",
|
||
" reader = csv.reader(infile)\n",
|
||
" writer = csv.writer(outfile)\n",
|
||
" writer.writerow(['File Name', 'exists', 'locations']) # Write header\n",
|
||
"\n",
|
||
" with ThreadPoolExecutor(max_workers=20) as executor:\n",
|
||
" futures = [executor.submit(check_file_in_bucket, row[0] + '.Pdf', all_keys) for row in reader]\n",
|
||
" \n",
|
||
" for future in futures:\n",
|
||
" filename, exists, locations = future.result()\n",
|
||
" writer.writerow([filename, exists, locations])\n",
|
||
"\n",
|
||
"input_csv = 'batch11/batch11_missing_files.csv'\n",
|
||
"output_csv = 'batch11/batch11_missing_files_movement_confirmation_4.csv'\n",
|
||
"bucket_name = 'centene-national-contracting-files'\n",
|
||
"destination_prefix = 'batch_11_priority_files/diff_files_v3'\n",
|
||
"\n",
|
||
"# all_keys = list_all_files(bucket_name)\n",
|
||
"print(f\"Found {len(all_keys)} files.\")\n",
|
||
"process_csv(input_csv, output_csv, bucket_name)\n",
|
||
"print(\"CSV processing completed.\")"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"kernelspec": {
|
||
"display_name": ".venv",
|
||
"language": "python",
|
||
"name": "python3"
|
||
},
|
||
"language_info": {
|
||
"codemirror_mode": {
|
||
"name": "ipython",
|
||
"version": 3
|
||
},
|
||
"file_extension": ".py",
|
||
"mimetype": "text/x-python",
|
||
"name": "python",
|
||
"nbconvert_exporter": "python",
|
||
"pygments_lexer": "ipython3",
|
||
"version": "3.12.3"
|
||
}
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 2
|
||
}
|